/* =====================================================
   PAGES.CSS - Styling for subpages
   Iris Optiek - Professional Optician Website
   ===================================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 140px 0 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.page-header.lens {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
}

.page-header.brillease {
    background: linear-gradient(135deg, var(--secondary) 0%, #c9a227 100%);
}

.page-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: var(--white);
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Content */
.page-content {
    padding: 80px 0;
}

/* News Page Styles */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.news-image {
    position: relative;
    min-height: 200px;
}

.news-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.news-placeholder.blue {
    background: linear-gradient(135deg, #2d5a87 0%, #1a365d 100%);
}

.news-placeholder.green {
    background: linear-gradient(135deg, #2d7a4f 0%, #1a5a3d 100%);
}

.news-placeholder.gold {
    background: linear-gradient(135deg, var(--secondary) 0%, #c9a227 100%);
}

.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--white);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.news-meta i {
    margin-right: 0.25rem;
}

.news-content h2,
.news-content h3 {
    color: var(--text);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.news-content h2 {
    font-size: 1.75rem;
}

.news-content h3 {
    font-size: 1.25rem;
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.news-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--secondary);
    gap: 0.75rem;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.newsletter-content i {
    font-size: 3rem;
    color: var(--primary);
}

.newsletter-content h3 {
    margin-bottom: 0.25rem;
}

.newsletter-content p {
    color: var(--text-light);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    padding: 12px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    min-width: 280px;
}

.newsletter-form input:focus {
    border-color: var(--primary);
    outline: none;
}

/* Vacatures Page Styles */
.intro-section {
    margin-bottom: 4rem;
}

.intro-text {
    max-width: 700px;
    margin-bottom: 3rem;
}

.intro-text h2 {
    font-family: var(--font-heading);
    color: var(--text);
    margin-bottom: 1rem;
}

.intro-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.vacancies-section {
    margin-bottom: 4rem;
}

.vacancies-section h2 {
    font-family: var(--font-heading);
    margin-bottom: 2rem;
}

.vacancy-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.vacancy-card:hover {
    box-shadow: var(--shadow-md);
}

.vacancy-card.highlight {
    border-color: var(--primary);
    border-width: 2px;
}

.vacancy-header {
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.vacancy-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    background: var(--primary);
    color: var(--white);
}

.vacancy-tag.urgent {
    background: #dc3545;
}

.vacancy-header h3 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.vacancy-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.vacancy-meta i {
    margin-right: 0.25rem;
    color: var(--primary);
}

.vacancy-content {
    padding: 2rem;
}

.vacancy-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.vacancy-content h4 {
    color: var(--text);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.vacancy-content h4:first-of-type {
    margin-top: 0;
}

.vacancy-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vacancy-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.vacancy-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.vacancy-footer {
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.open-application {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-bottom: 4rem;
}

.application-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.application-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.application-icon i {
    font-size: 2rem;
    color: var(--white);
}

.application-text {
    flex: 1;
    min-width: 250px;
}

.application-text h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.application-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.vacancy-contact {
    text-align: center;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.vacancy-contact h3 {
    margin-bottom: 0.5rem;
}

.vacancy-contact > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-option:hover {
    color: var(--primary);
}

.contact-option i {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contactlenzen Page Styles */
.service-intro {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.intro-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.intro-content .lead {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.intro-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.intro-visual .visual-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 5rem;
}

.lens-types {
    margin-bottom: 5rem;
}

.lens-types h2 {
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.lens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.lens-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.lens-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.lens-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.lens-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.lens-card h3 {
    color: var(--text);
    margin-bottom: 0.75rem;
}

.lens-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.lens-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lens-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    padding: 0.4rem 0;
    font-size: 0.9rem;
}

.lens-features i {
    color: var(--primary);
}

.specialist-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: start;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.specialist-content h2 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.specialist-content > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.check-list {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

.info-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
}

.info-card h4 {
    color: var(--text);
    margin-bottom: 1rem;
}

.info-card > p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.info-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.info-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.process-section {
    margin-bottom: 5rem;
}

.process-section h2 {
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -1rem;
    width: calc(100% - 60px);
    height: 2px;
    background: var(--border);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
}

.process-step h4 {
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 4rem;
    text-align: center;
}

.cta-section.brillease-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, #c9a227 100%);
}

.cta-content h2 {
    color: var(--white);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-buttons {
    justify-content: center;
}

/* Brillease Page Styles */
.brillease-hero {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: start;
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.hero-content .lead {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-feature i {
    color: var(--primary);
    font-size: 1.25rem;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--secondary);
}

.pricing-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #c9a227 100%);
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.pricing-header span:first-child {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price .from {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-right: 0.5rem;
}

.price .currency {
    font-size: 1.5rem;
}

.price .amount {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.price .period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-body {
    padding: 2rem;
}

.pricing-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-body li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.pricing-body li:last-child {
    border-bottom: none;
}

.pricing-body i {
    color: var(--secondary);
}

.pricing-footer {
    padding: 1.5rem 2rem 2rem;
}

.how-it-works {
    margin-bottom: 5rem;
}

.how-it-works h2 {
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.step-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, #c9a227 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon span {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.step-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text);
}

.step-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.benefits-section {
    margin-bottom: 5rem;
}

.benefits-section h2 {
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-large {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.benefit-large:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.benefit-large .benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, #c9a227 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-large .benefit-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.benefit-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.benefit-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-section h2 {
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.faq-item h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.terms-summary {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 4rem;
}

.terms-summary h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.term-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.term-item i {
    color: var(--primary);
}

.terms-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.terms-note a {
    color: var(--primary);
}

/* Button Variations */
.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-secondary {
    background: var(--secondary);
    color: var(--text);
}

.btn-secondary:hover {
    background: #c9a227;
}

/* Responsive */
@media (max-width: 992px) {
    .news-card.featured {
        grid-template-columns: 1fr;
    }
    
    .service-intro,
    .specialist-section,
    .brillease-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-steps,
    .steps-grid,
    .terms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .benefits-grid-large,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-content {
        padding: 60px 0;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-section {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-content {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
    
    .process-steps,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .terms-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .vacancy-footer {
        flex-direction: column;
    }
    
    .vacancy-footer .btn {
        width: 100%;
        justify-content: center;
    }
    
    .application-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-section {
        padding: 3rem 2rem;
    }
    
    .lens-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-large {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-large .benefit-icon {
        margin: 0 auto;
    }
}
