/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #061b10;
    color: #f6d551;
    line-height: 1.6;
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Updated section backgrounds - all sections from services onward now use light background */
.section-dark-green-1 {
    background-color: #ffffff;
}

.section-dark-green-2 {
    background-color: #ebf3ed;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Enhanced glass effect for header with better mobile support */
.header {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1000px;
    background: rgba(10, 39, 24, 0.84);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(246, 181, 81, 0.2);
    border-radius: 50px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(14, 48, 23, 0.3);
}

.header:hover {
    border-color: rgba(246, 181, 81, 0.35);
    box-shadow: 0 12px 40px rgba(14, 48, 23, 0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    max-width: none;
    margin: 0;
}

.logo-img {
    height: 100px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: rgba(246, 181, 81, 0.9);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #8a6830;
}

.btn-cta {
    background-color: rgba(246, 181, 81, 0.1);
    color: #f6b551;
    text-decoration: none;
    border: 1px solid rgba(246, 181, 81, 0.3);
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.btn-cta:hover {
    background-color: #f6b551;
    color: #0e3017;
    border-color: #f6b551;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(246, 181, 81, 0.1);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #f6b551;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Improved hamburger animation for mobile menu */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background-color: #fff;
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background-color: #fff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 48, 23, 0.9) 0%, rgba(14, 48, 23, 0.7) 50%, rgba(246, 181, 81, 0.1) 100%);
    z-index: 2;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: center;
}

/* Elegant decorative hero title with Cormorant Garamond font */
.hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 6rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-align: center;
}

.hero-title-line {
    display: block;
    color: rgba(246, 181, 81, 0.9);
}

.hero-title-accent {
    display: block;
    font-weight: 600;
    color: #f6b551;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(246, 181, 81, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 500px;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(246, 181, 81, 0.8);
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: rgba(246, 181, 81, 0.1);
    color: #f6b551;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 54px;
    border: 1px solid rgba(246, 181, 81, 0.3);
    backdrop-filter: blur(10px);
    text-transform: none;
    letter-spacing: 0;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(246, 181, 81, 0.3);
    border-color: #f6b551;
    background-color: rgba(246, 181, 81, 0.2);
}

/* Sections */
section {
    padding: 6rem 0;
}

/* Updated section title for light background */
.section-title {
    text-align: center;
    color: #0e3017;
    position: relative;
    font-weight: 600;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #228118;
}

.eyecompany-main-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.eyecompany-left-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.eyecompany-certification-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.eyecompany-badge-icon {
    width: 60px;
    height: 60px;
    background: #228118;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #2d3748;
    font-weight: bold;
}

.eyecompany-badge-text {
    font-size: 18px;
    color: #4a5568;
    font-weight: 500;
}

.eyecompany-main-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #303030;
    margin: 0;
    letter-spacing: -0.02em;
}

.eyecompany-cta-button {
    background: #144c0f;
    color: white;
    padding: 18px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
}

.eyecompany-cta-button:hover {
    background: #143911;
    transform: translateY(-2px);
}

.eyecompany-cta-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.eyecompany-cta-button:hover .eyecompany-cta-arrow {
    transform: translateX(5px);
}

.eyecompany-expert-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.eyecompany-expert-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.eyecompany-expert-text {
    font-size: 18px;
    color: #4a5568;
    font-weight: 500;
}

.eyecompany-expert-highlight {
    text-decoration: underline;
    text-decoration-color: #228118;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.eyecompany-right-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.eyecompany-service-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(39, 126, 40, 0.2);
}

.eyecompany-service-title {
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 15px 0;
    position: relative;
}

.eyecompany-service-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #228118;
    border-radius: 2px;
}

.eyecompany-service-description {
    font-size: 16px;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .eyecompany-services-container {
        padding: 40px 20px;
    }

    .eyecompany-main-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .eyecompany-cta-desktop {
        display: none !important;
    }

    .eyecompany-cta-mobile {
        display: inline-flex !important;
    }

    .eyecompany-main-heading {
        font-size: 36px;
    }

    .eyecompany-right-section {
        gap: 30px;
    }

    .eyecompany-service-item {
        padding: 25px;
    }
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    transition: all 0.6s ease;
}

.service-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(246, 181, 81, 0.1) 0%, transparent 50%, rgba(14, 48, 23, 0.1) 100%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-image:hover::before {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.6s ease;
    border-radius: 24px;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-item.animate .service-image {
    animation: slideInImage 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

@keyframes slideInImage {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Enhanced pricing section with updated colors for light background */
.pricing {
    padding: 8rem 0;
    position: relative;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(34, 129, 24, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #228118 0%, rgba(34, 129, 24, 0.3) 100%);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(34, 129, 24, 0.15);
    border-color: rgba(34, 129, 24, 0.3);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(34, 129, 24, 0.2);
}

.pricing-card-title {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0e3017;
    margin-bottom: 1rem;
}

.pricing-card-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #185e11;
    text-shadow: 0 2px 10px rgba(34, 129, 24, 0.13);
    margin-bottom: 0.5rem;
}

.plannerplus {
    color: #f6b551b3;
}

.pricing-card-duration {
    color: rgba(14, 48, 23, 0.7);
    font-size: 0.9rem;
}

.pricing-card-content {
    text-align: left;
}

.pricing-card-description {
    color: rgba(14, 48, 23, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pricing-card-features {
    list-style: none;
}

.pricing-card-features li {
    color: rgba(14, 48, 23, 0.7);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #228118;
    font-weight: bold;
}

.pricing-note {
    margin-top: 3rem;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(34, 129, 24, 0.2);
}

.pricing-note p {
    color: rgba(14, 48, 23, 0.8);
    margin-bottom: 0.5rem;
    font-style: italic;
}

/* Updated FAQ section styles for light background */
.faq {
    padding: 8rem 0;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 4rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(34, 129, 24, 0.2);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: rgba(34, 129, 24, 0.3);
    box-shadow: 0 4px 20px rgba(34, 129, 24, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: #0e3017;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #228118;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #228118;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: rgba(14, 48, 23, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 350px;
}

/* Updated About Section for light background */
.about {
    padding: 8rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.about-intro {
    font-size: 1.3rem;
    color: #228118;
    font-weight: 500;
}

.about-text p {
    color: rgba(14, 48, 23, 0.8);
}

/* Updated contact section for light background */
/* Updated contact section for horizontal layout */
.contact {
    padding: 8rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
}

.contact-info h3 {
    color: #0e3017;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-info p {
    color: rgba(14, 48, 23, 0.8);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* New contact row layout for horizontal arrangement */
.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(34, 129, 24, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.contact-item:hover {
    background: rgba(34, 129, 24, 0.1);
    border-color: rgba(34, 129, 24, 0.2);
    box-shadow: 0 4px 20px rgba(34, 129, 24, 0.1);
    transform: translateY(-2px);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(34, 129, 24, 0.1);
    border: 1px solid rgba(34, 129, 24, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #228118;
    flex-shrink: 0;
}

.contact-content-item {
    flex: 1;
}

.contact-content-item strong {
    color: #0e3017;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.contact-content-item a {
    color: #228118;
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-content-item a:hover {
    color: #0e3017;
}

.contact-content-item span {
    color: rgba(14, 48, 23, 0.8);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Mobile responsive updates for contact section */
@media (max-width: 768px) {
    .contact-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-item {
        padding: 1.2rem;
    }

    .contact-details {
        gap: 1.5rem;
    }
}

/* Enhanced footer with better layout */
.footer {
    background-color: rgba(14, 48, 23, 0.9);
    border-top: 1px solid rgba(246, 181, 81, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #f6b551;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(246, 181, 81, 0.7);
    font-style: italic;
    margin-bottom: 0;
}

.footer-contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact-info a {
    color: rgba(246, 181, 81, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #f6b551;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(246, 181, 81, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #f6b551;
}

.footer-bottom {
    border-top: 1px solid rgba(246, 181, 81, 0.1);
    padding-top: 2rem;
}

.footer-legal {
    text-align: center;
    color: rgba(246, 181, 81, 0.6);
}

.footer-legal p {
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 1002;
        position: relative;
    }

    .nav-menu {
        position: fixed;
        top: -17px;
        left: -17px;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: #0e3017;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        padding: 2rem;
        box-sizing: border-box;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        text-align: center;
        width: 100%;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }
    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.2s;
    }
    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.3s;
    }
    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.4s;
    }
    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-link {
        font-size: 22px;
        color: #f6b551;
        font-weight: 400;
        text-shadow: 0 2px 10px rgba(246, 181, 81, 0.3);
        display: block;
        padding: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-link:hover {
        color: #fff;
        text-shadow: 0 2px 20px rgba(246, 181, 81, 0.5);
    }

    .btn-cta {
        font-size: 22px;
        border-radius: 30px;
        background: rgba(246, 181, 81, 0.2);
        border: 2px solid #f6b551;
        color: #f6b551;
        text-decoration: none;
        font-weight: 500;
        box-shadow: 0 8px 30px rgba(246, 181, 81, 0.2);
        transition: all 0.3s ease;
        margin-top: 1rem;
        display: inline-block;
    }

    .btn-cta:hover {
        background: #f6b551;
        color: #0e3017;
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(246, 181, 81, 0.4);
    }

    .nav-toggle.active {
        position: fixed;
        top: 1.5rem;
        right: 1.5rem;
        z-index: 1003;
    }

    .nav-toggle.active span {
        background-color: #f6b551;
    }

    .hero-title {
        font-size: 4rem;
        line-height: 1.1;
    }

    .hero-title-accent {
        font-size: 4rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 400px;
    }

    .hero-content {
        text-align: center;
        padding: 0 1rem;
        max-width: 100%;
    }

    .hero {
        padding: 0 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 4rem 0;
    }

    .header {
        top: 1rem;
        width: calc(100% - 2rem);
        border-radius: 25px;
    }

    .nav-container {
        padding: 0.6rem 1.5rem;
    }

    .logo-img {
        height: 70px;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .service-item:nth-child(even) {
        direction: ltr;
    }

    .service-content {
        padding: 2.5rem 2rem;
    }

    .service-image {
        order: -1;
    }

    .service-image img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-title-accent {
        font-size: 3.2rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .service-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        border-radius: 16px;
        margin: 0 auto 1.5rem;
    }

    .service-title {
        font-size: 1.6rem;
    }

    .service-description {
        font-size: 1rem;
    }

    .service-image {
        border-radius: 20px;
    }

    .service-image img {
        height: 250px;
        border-radius: 20px;
    }
}

.eyeco-hero-section {
    padding: 80px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyeco-container {
    max-width: 1200px;
    margin: 0 auto;
}

.eyeco-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 80px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.eyeco-stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.eyeco-stat-item {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.eyeco-stat-number {
    font-size: 5rem;
    font-weight: 800;
    color: #165510;
    margin-bottom: 20px;
    line-height: 1;
}

.eyeco-stat-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.eyeco-stat-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}


.eyeco-references {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.eyeco-reference-text {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .eyeco-main-title {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }

    .eyeco-stats-grid {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .eyeco-stat-item {
        min-width: auto;
        width: 100%;
        max-width: 350px;
    }

    .eyeco-stat-number {
        font-size: 4rem;
    }

    .eyeco-hero-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .eyeco-main-title {
        font-size: 2rem;
    }

    .eyeco-stat-number {
        font-size: 3.5rem;
    }
}

/* Added unique prefix "tec-" to all CSS classes and updated green color to #228118 */
.tec-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.tec-content-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tec-badge {
    background: linear-gradient(135deg, #184713, #165a0d);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.tec-main-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.1;
    margin-bottom: 20px;
}

.tec-highlight {
    color: #165510;
    position: relative;
}

.tec-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #228118, #1a6b12);
    border-radius: 2px;
}

.tec-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    max-width: 500px;
}

.tec-awards-section {
    margin-top: 40px;
}

.tec-awards-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.tec-awards-subtitle {
    color: #6b7280;
    font-size: 1rem;
}

.tec-visual-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    height: fit-content;
}

.tec-image-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tec-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tec-sketch-image {
    grid-row: 1 / 2;
    height: 200px;
}

.tec-experience-card {
    background: linear-gradient(135deg, #184713, #165a0d);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(34, 129, 24, 0.3);
    grid-row: 2 / 3;
}

.tec-experience-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.tec-experience-text {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
}

.tec-main-image {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    height: 400px;
    position: relative;
}

.tec-rating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    min-width: 120px;
}

.tec-rating-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 5px;
}

.tec-stars {
    color: #228118;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.tec-rating-text {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

@media (max-width: 768px) {
    .tec-container {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 40px;
    }

    .tec-main-heading {
        font-size: 2.5rem;
    }

    .tec-visual-section {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .tec-image-card2 {
        object-position: 50% 30%;
    }

    .tec-main-image {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        height: 400px;
    }
}

/*header gone*/

/* Header scroll behavior - gecorrigeerde versie */
.header-hidden {
    transform: translateX(-50%) translateY(-100%);
    opacity: 0;
}

.header-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Smooth transitions for header */
.header {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* New Footer Styles */
.new-footer {
    background: #0e3017e6;
    color: #d4af37;
    padding: 60px 0 30px;
    position: relative;
}

.new-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Updated logo styles to work with img element */
.footer-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
}


.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a,
.footer-section p {
    color: #d4af37;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f4d03f;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
    margin: 40px 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.social-text {
    font-size: 18px;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.social-icon:hover {
    background: #d4af37;
    color: #1a4d3a;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-left span,
.footer-bottom-left a {
    color: #d4af37;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom-left a:hover {
    opacity: 1;
}

.footer-bottom-right {
    color: #d4af37;
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom-right a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom-right a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-social {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-left {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-logo-section {
        display: block;
        flex-direction: column;
    }

    .footer-logo {
        width: 100px;
        align-items: center;
        height: 100px;
    }

    .footer-section h3 {
        font-size: 16px;
    }
}

