@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #C5A059;
    --primary-dark: #a08545;
    --secondary-color: #2E41A8;
    --secondary-light: #4c5fc7;
    --accent-color: #D4AF37;
    --bg-light: #FDFCFB;
    --bg-grey: #F8F5F2;
    --bg-white: #FFFFFF;
    --text-main: #2E41A8;
    --text-muted: #555555;
    --nude-light: #F4EDE8;
    --container-width: 1200px;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 50px rgba(23, 34, 77, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: initial;
    /* Lenis handles smoothing */
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: var(--text-muted);
    background-color: var(--bg-light);
    overflow-x: hidden;
    font-size: 16px;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.1;
}

.section-subtitle {
    display: block;
    color: var(--primary-color);
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-style: italic;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Organic Shapes Background */
.blob-container {
    position: absolute;
    width: 600px;
    max-width: 100vw;
    /* Prevent overflow */
    height: 600px;
    z-index: 0;
    opacity: 0.3;
    filter: blur(80px);
    pointer-events: none;
    overflow: hidden;
    /* Safety */
}

.blob-primary {
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, var(--nude-light) 0%, rgba(255, 255, 255, 0) 70%);
}

.blob-secondary {
    bottom: 5%;
    left: -15%;
    background: radial-gradient(circle, rgba(23, 34, 77, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}

@media (max-width: 768px) {
    .blob-container {
        width: 300px;
        /* Smaller blobs on mobile */
        height: 300px;
    }
}

/* Header */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Center all items vertically regardless of height */
    position: relative;
    z-index: 10;
    width: 100%;
}

.header {
    background-color: rgba(255, 254, 254, 0.95);
    /* Exact match from image */
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    border-bottom: none;
    display: flex;
    align-items: center;
    /* Center container vertically */
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.6rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.logo-text span {
    color: var(--secondary-color);
    font-weight: 400;
}

.logo-image {
    height: 70px;
    width: auto;
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-list i,
.sidebar-footer,
.sidebar-header-mobile,
.submenu {
    display: none;
    /* Hide mobile-specific elements on desktop */
}

.nav-list a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    transition: var(--transition);
}

.nav-list a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.8rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(46, 65, 168, 0.25);
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 65, 168, 0.35);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-3px);
}

.btn-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: white;
    font-size: 0.95rem;
    padding: 0.95rem 2.2rem;
    box-shadow: 0 8px 20px rgba(46, 65, 168, 0.25);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-header:hover {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(46, 65, 168, 0.35);
}

.header-cta {
    display: none;
}

.hero {
    padding: 15rem 0 10rem;
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Base overlay for dark contrast if needed */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    /* Reduced opacity as requested to clarify video */
    z-index: 1;
}

/* Bottom white gradient fade */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    background: none !important;
    display: none !important;
    z-index: -1;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right bottom;
    /* Fixed lower to align with content base */
    z-index: 0;
    filter: brightness(0.85) contrast(1.1) saturate(1.05);
    /* Added filters */
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 10;
    padding-top: 50px;
    margin-left: -80px;
    margin-top: 0;
}

.hero-content {
    max-width: 800px;
    z-index: 3;
    order: 2;
    margin-top: -80px;
    /* Reset desktop shift */
}

.hero-image-container {
    order: 1;
    display: flex;
    justify-content: center;
    margin-top: -50px;
    /* Reset desktop shift */
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    /* Further reduced for balance */
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    margin-bottom: 3.5rem;
    max-width: 600px;
}

.hero-btns {
    margin-top: 6rem;
    /* Pushes buttons down to the reference line level */
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    width: 65%;
    /* Reduced to fit better */
    max-width: 400px;
    /* Reduced to fit better */
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    border: 12px solid white;
}

/* Services */
.services {
    padding: 5rem 0;
    background-color: var(--bg-grey);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    /* Reduced from 4rem */
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-premium);
    text-decoration: none;
    /* Remove underline from link */
    display: block;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-15px);
}

.service-card-image {
    width: 100%;
    height: 200px;
    /* Reduced from 250px */
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 2rem 1.5rem;
    /* Reduced from 3rem 2.5rem */
    text-align: center;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 1.2rem;
    color: var(--text-main);
}

/* About */
.about {
    padding: 5rem 0;
    /* Reduced from 12rem 0 */
    background-color: var(--bg-white);
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 4rem;
    /* Reduced from 8rem */
}

.about-content h2 {
    margin-bottom: 2.5rem;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.about-list {
    list-style: none;
    margin-top: 3rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.rounded-image {
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1.02);
    /* Slight zoom to hide screenshot edges if any remain */
}

/* Testimonials - HIGH CONTRAST */
.testimonials {
    padding: 5rem 0;
    background-color: var(--secondary-color);
    color: white;
}

.testimonials .section-subtitle {
    color: var(--primary-color);
}

.testimonials .section-title {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3.5rem;
    border-radius: 30px;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.verified-badge {
    font-size: 0.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
}

/* Contact */
.contact {
    padding: 6rem 0;
    background-color: var(--bg-grey);
}

.contact-header {
    text-align: center;
    margin-bottom: 6rem;
}

.contact-content-wrapper {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-premium {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item-premium {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.contact-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-form-card {
    background: white;
    padding: 4rem;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
    width: 100%;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group-premium label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group-premium input,
.form-group-premium select,
.form-group-premium textarea {
    width: 100%;
    padding: 1.3rem;
    background: var(--bg-light);
    border: 1px solid #EEE;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-group-premium input:focus {
    border-color: var(--primary-color);
    outline: none;
    background: white;
}

.btn-premium-submit {
    padding: 1.5rem;
    font-size: 1.1rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-weight: 700;
    margin-top: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-premium-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Footer Premium */
.footer {
    padding: 5rem 0 3rem;
    background-color: var(--bg-white);
    border-top: 1px solid #EEE;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-logo p {
    color: var(--text-muted);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid #EEE;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* GSAP Animations Fallback */
.gsap-reveal {
    opacity: 1;
    /* Visible by default */
    transform: none;
}

/* We will handle the initial state from JS instead to avoid layout shift and invisible content if JS fails */

/* Mobile Adjustments */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-left: 0;
        /* Reset negative margin */
        padding-top: 20px;
        text-align: center;
    }

    .hero-content {
        order: 1;
        /* Text first on mobile usually looks better, or keep 2 if image first desired */
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-image-container {
        order: 2;
        margin-top: -60px;
        /* Lifted higher on mobile */
        justify-content: center;
    }

    .hero-image {
        width: 80%;
        max-width: 350px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-video {
        object-position: 60% center;
        /* Shifted slightly right to center the subject */
    }

    .hero::after {
        height: 70%;
        /* Increased gradient height for better text readability on mobile */
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

/* Video Visibility Control */
.hero-video-mobile {
    display: none;
}

.hero-video-desktop {
    display: block;
}

@media (max-width: 768px) {
    .hero-video-desktop {
        display: none;
    }

    .hero-video-mobile {
        display: block;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

/* --- Treatment Subpages --- */
.treatment-hero {
    padding: 8rem 0 3rem;
    /* Adjusted to clear fixed header while keeping text high */
    background-color: var(--secondary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.treatment-hero .section-subtitle {
    color: var(--primary-color);
}

.treatment-hero .section-title {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.treatment-hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    opacity: 0.9;
}

.treatment-section {
    padding: 3.5rem 0;
    /* Further reduced from 5rem 0 */
}

.treatment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    /* Reduced from 6rem */
    align-items: center;
}

.treatment-about-content h2 {
    margin-bottom: 2rem;
}

.treatment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-box {
    background: white;
    padding: 1.5rem;
    /* Reduced from 2.5rem */
    border-radius: 20px;
    /* Sightly smaller radius */
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-box h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.treatment-faq {
    background-color: var(--bg-grey);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.faq-item h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1rem;
    /* Reduced from 2rem */
    transition: var(--transition);
}

.back-link:hover {
    gap: 0.8rem;
}

/* --- Lens Models Section --- */
.lens-models-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.lens-models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.lens-model-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lens-model-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.lens-model-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.lens-model-content {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.lens-model-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.lens-model-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Ultra Realista Highlight */
.lens-model-card.highlight {
    border-color: var(--primary-color);
    position: relative;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.15);
}

.lens-model-card.highlight:hover {
    transform: scale(1.08);
}

.highlight-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive for Lens Grid */
@media (max-width: 992px) {
    .lens-models-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 cols on tablet */
        gap: 1.5rem;
    }

    .lens-model-card.highlight {
        transform: none;
        /* Disable scale on mobile to avoid layout issues */
        border-width: 2px;
    }

    .lens-model-card.highlight:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 600px) {
    .lens-models-grid {
        grid-template-columns: 1fr;
        /* 1 col on mobile */
    }
}

/* Mobile Menu Button - Default Hidden on Desktop */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 2100;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Active State for Hamburger */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu-btn.active span {
    background-color: var(--primary-color);
}

/* =========================================
   MOBILE & TABLET RESPONSIVENESS
   ========================================= */

@media (max-width: 992px) {

    /* Hide desktop nav and standard CTA */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        /* Lighter background */
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        padding: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        display: flex;
        flex-direction: column;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .nav.active {
        right: 0;
    }

    .nav-list i,
    .sidebar-footer,
    .submenu {
        display: block;
        /* Show mobile elements in mobile menu */
    }

    .nav-list i {
        display: inline-block;
    }



    .nav-list {
        padding: 1rem 0;
        flex-direction: column;
        gap: 0;
        width: 100%;
        overflow-y: auto;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    }

    .nav-list a {
        font-family: 'Montserrat', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: var(--secondary-color);
        /* Darker text for white bg */
        display: flex;
        align-items: center;
        gap: 1.2rem;
        padding: 1.2rem 1.5rem;
        text-align: left;
        width: 100%;
        transition: all 0.3s ease;
        border: none;
    }

    .nav-list a i:first-child {
        width: 20px;
        text-align: center;
        font-size: 1.1rem;
    }

    .nav-list a:hover,
    .nav-list li.active>a {
        color: var(--primary-color);
        background: rgba(0, 0, 0, 0.03);
    }

    /* Submenu styling */
    .has-submenu .arrow {
        margin-left: auto;
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

    .has-submenu.open .arrow {
        transform: rotate(180deg);
    }

    .submenu {
        list-style: none;
        background: rgba(0, 0, 0, 0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }

    .has-submenu.open .submenu {
        max-height: 300px;
    }

    .submenu a {
        padding-left: 4.5rem;
        font-size: 0.9rem;
        color: var(--text-muted);
    }

    .sidebar-footer {
        margin-top: auto;
        padding: 2rem 1.5rem;
        color: var(--text-muted);
        font-size: 0.8rem;
        text-align: center;
    }

    /* Overlay when menu is active */
    .menu-overlay {
        display: none !important;
        /* Removed darkness as requested */
    }

    .header-cta {
        display: none;
        /* Consider moving this into the mobile menu if needed, but hiding for now or keeping visible only if space permits */
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 2100;
        /* Above nav */
    }

    .mobile-menu-btn.active span {
        background-color: var(--primary-color);
        /* Golden color when active */
    }

    /* Hero Adjustments */
    .hero {
        padding: 10rem 0 3rem;
        /* Adjusted to show head clearly */
        min-height: 85vh;
        text-align: center;
        background-color: var(--bg-light);
    }

    /* Restore the bottom white fade on mobile, hide the dark overlay */
    .hero::before {
        display: none;
    }

    .hero::after {
        display: block !important;
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70%;
        /* Even taller */
        /* Combined Linear and Radial for aggressive corner fade */
        background:
            radial-gradient(circle at bottom right, rgba(253, 252, 251, 1) 0%, rgba(253, 252, 251, 0.9) 30%, transparent 70%),
            linear-gradient(to top, rgba(253, 252, 251, 1) 0%, transparent 40%) !important;
        z-index: 5;
        pointer-events: none;
    }

    .hero-video {
        display: block;
        /* Restore video */
        opacity: 1;
        /* Full visibility as requested */
        object-position: center top;
        /* Align to top to show face */
    }

    .blob-container {
        display: none;
        /* Hide blobs on mobile to preventing animation overflow */
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-left: 0 !important;
        width: 100% !important;
        max-width: 100%;
        margin-top: 0;
        /* Removed negative margin to show full head */
        text-align: center;
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-content {
        order: 2;
        /* Text AFTER image */
        margin-top: 0;
        margin-bottom: 2rem;
        width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        margin: 0 auto 2rem;
        color: var(--text-muted);
        /* Dark text on white gradient */
        text-shadow: none;
    }

    .hero-btns {
        justify-content: center;
        /* Center buttons */
        margin-top: 2rem;
        flex-wrap: wrap;
    }

    .hero-image-container {
        order: 1;
        /* Image BEFORE text */
        display: flex;
        justify-content: center;
        margin-left: 0;
        margin-bottom: 2rem;
    }

    .hero-image {
        width: 50%;
        max-width: 200px;
        /* Reduced size */
        margin: 0 auto;
        border-width: 6px;
    }

    /* Section Stacking - Images First */
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-image {
        order: -1;
        /* Image first */
    }

    .about-list li {
        justify-content: center;
        /* Center list items */
    }

    .treatment-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .treatment-image {
        order: -1;
        /* Image first */
    }

    .treatment-features {
        justify-content: center;
    }

    /* Footer Stacking */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 columns on tablet */
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Further adjustments for phones */

    .section-title {
        font-size: 2.2rem;
        /* Smaller titles */
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        /* Full width buttons on mobile */
        max-width: 300px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .contact-content-wrapper {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form-card {
        padding: 2rem;
    }

    /* Footer Single Column */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links a:hover {
        padding-left: 0;
        /* Removing hover shift which might feel weird on touch */
    }

    .footer-contact p {
        justify-content: center;
    }
}