:root {
        --teal: #6d0736;
        --teal-light: #be8f9f;
        --teal-dark: #4a0323;
        --gold: #c5a059;
        --gold-light: #e3cba8;
        --cream: #fdfcfc;
        --white: #ffffff;
        --dark: #2d101a;
        --dark2: #42202c;
        --gray: #6b5c61;
        --light-gray: #f2edf0;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        overflow-x: clip;
        width: 100%;
    }

    body {
        font-family: 'DM Sans', sans-serif;
        background: var(--cream);
        color: var(--dark);
        overflow-x: clip;
        width: 100%;
    }



/* ── TOPBAR ── */
    .topbar {
        background: var(--teal-dark);
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.78rem;
        padding: 8px 0;
        animation: slideDown 0.6s ease;
    }

    .topbar-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 32px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .topbar a {
        color: var(--gold-light);
        text-decoration: none;
        transition: color 0.2s;
    }

    .topbar a:hover {
        color: #fff;
    }

    .topbar-left,
    .topbar-right {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .topbar-right a {
        width: 28px;
        height: 28px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        transition: background 0.2s;
    }

    .topbar-right a:hover {
        background: var(--gold);
        color: #fff;
    }

/* ── HEADER ── */
    header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        border-bottom: 2px solid var(--teal);
        box-shadow: 0 4px 24px color-mix(in srgb, var(--teal) 10%, transparent);
        animation: slideDown 0.7s ease;
    }

    .header-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 10px 42px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 74px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 14px;
        text-decoration: none;
    }

    .logo-icon {
        width: 80px;
        height: 80px;
    }

    @keyframes pulse-glow {

        0%,
        100% {
            box-shadow: 0 4px 16px color-mix(in srgb, var(--teal) 30%, transparent);
        }

        50% {
            box-shadow: 0 4px 28px color-mix(in srgb, var(--teal) 55%, transparent);
        }
    }

    .logo-text {
        line-height: 1.1;
    }

    .logo-name {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--teal-dark);
    }

    .logo-sub {
        font-size: 0.6rem;
        color: var(--gray);
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin-top: 6px;
    }

    nav {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    nav a {
        font-size: 1.0rem;
        font-weight: 500;
        color: var(--dark2);
        text-decoration: none;
        padding: 8px 10px;
        border-radius: 8px;
        letter-spacing: 0.03em;
        transition: all 0.22s;
        position: relative;
    }

    nav a::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 50%;
        right: 50%;
        height: 2px;
        background: var(--teal);
        border-radius: 2px;
        transition: all 0.25s;
    }

    nav a:hover {
        color: var(--teal);
    }

    nav a:hover::after {
        left: 15px;
        right: 15px;
    }

    .nav-dropdown:hover .desktop-chevron,
    .nav-dropdown.open .desktop-chevron {
        transform: rotate(180deg);
    }

    .nav-dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background: #fff;
        min-width: 200px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        padding: 10px 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.3s;
        z-index: 100;
        border: 1px solid var(--light-gray);
    }

    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 0;
        width: 100%;
        height: 10px;
        background: transparent;
    }

    .dropdown-menu a {
        display: block;
        padding: 10px 20px;
        font-size: 0.9rem;
        border-radius: 8px;
        margin: 0 8px;
    }

    .dropdown-menu a::after {
        display: none;
    }

    .dropdown-menu a:hover {
        background: color-mix(in srgb, var(--teal) 6%, transparent);
        padding-left: 20px;
        color: var(--teal);
    }

    .btn-appt {
        background: var(--teal);
        color: #fff !important;
        padding: 10px 15px;
        border-radius: 30px;
        font-weight: 600;
        text-transform: uppercase;
        margin-left: 12px;
        transition: all 0.3s;
        font-size: .75rem !important;
    }

    .btn-appt::after {
        display: none;
    }

    .btn-appt:hover {
        background: var(--teal-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px color-mix(in srgb, var(--teal) 30%, transparent);
    }

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--teal);
    }

    .mobile-menu-btn svg {
        width: 28px;
        height: 28px;
    }

/* ── FOOTER ── */
    footer {
        background: #060f0e;
        color: rgba(255, 255, 255, 0.6);
        padding: 0;
    }

    .footer-top {
        max-width: 1280px;
        margin: 0 auto;
        padding: 72px 32px 48px;
        display: grid;
        grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
        gap: 48px;
    }

    .footer-brand .footer-logo-name {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        color: #fff;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .footer-brand .footer-logo-sub {
        font-size: 0.7rem;
        color: var(--teal-light);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        margin-bottom: 18px;
    }

    .footer-brand p {
        font-size: 0.82rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.55);
        margin-bottom: 24px;
    }

    .footer-social {
        display: flex;
        gap: 10px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        font-size: 0.85rem;
        transition: all 0.25s;
    }

    .footer-social a:hover {
        background: var(--teal);
        border-color: var(--teal);
        color: #fff;
        transform: translateY(-3px);
    }

    .footer-col h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1rem;
        color: #fff;
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 12px;
    }

    .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 32px;
        height: 2px;
        background: var(--teal);
        border-radius: 2px;
    }

    .footer-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-col ul li a {
        color: rgba(255, 255, 255, 0.55);
        text-decoration: none;
        font-size: 0.83rem;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .footer-col ul li a::before {
        content: '›';
        color: var(--teal-light);
        font-size: 1rem;
    }

    .footer-col ul li a:hover {
        color: var(--teal-light);
        padding-left: 4px;
    }

    .footer-contact-col h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1rem;
        color: #fff;
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 12px;
    }

    .footer-contact-col h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 32px;
        height: 2px;
        background: var(--teal);
        border-radius: 2px;
    }

    .footer-contact-item {
        display: flex;
        gap: 12px;
        margin-bottom: 16px;
        align-items: flex-start;
    }

    .fc-icon {
        width: 34px;
        height: 34px;
        flex-shrink: 0;
        background: color-mix(in srgb, var(--teal) 25%, transparent);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
    }

    .footer-contact-item p,
    .footer-contact-item a {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.6;
        text-decoration: none;
    }

    .footer-contact-item a:hover {
        color: var(--teal-light);
    }

    .opd-badge {
        display: inline-block;
        background: color-mix(in srgb, var(--teal) 30%, transparent);
        border: 1px solid rgba(10, 168, 152, 0.3);
        color: var(--teal-light);
        font-size: 0.75rem;
        padding: 5px 14px;
        border-radius: 50px;
        margin-top: 6px;
        font-weight: 600;
    }

    .footer-divider {
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        margin: 0;
    }

    .footer-bottom {
        max-width: 1280px;
        margin: 0 auto;
        padding: 20px 32px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer-bottom p {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.35);
    }

    .footer-bottom span {
        color: var(--teal-light);
    }

    .footer-bottom a {
        text-decoration: none;
    }

    .footer-bottom-links {
        display: flex;
        gap: 20px;
    }

    .footer-bottom-links a {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.35);
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-bottom-links a:hover {
        color: var(--teal-light);
    }


/* Mega Menu Styles */
    .nav-dropdown.mega-dropdown {
        position: static;
    }

    .mega-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        width: 90vw;
        max-width: 1000px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate(-50%, 15px);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000;
        border-top: 3px solid var(--teal);
    }

    .mega-drop-btn::before {
        content: '';
        position: absolute;
        top: 100%;
        left: -10px;
        right: -10px;
        height: 30px;
        background: transparent;
    }

    .nav-dropdown.mega-dropdown:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }

    .mega-menu-inner {
        display: flex;
        width: 100%;
        margin: 0 auto;
        padding: 25px;
        min-height: 380px;
    }

    .mega-left {
        flex: 0 0 280px;
        border-right: 1px solid #eaeaea;
        padding-right: 20px;
    }

    .mega-specialty-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mega-specialty-list>li {
        padding: 6px 12px;
        cursor: pointer;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-weight: 500;
        color: #333;
        margin-bottom: 2px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .mega-specialty-list>li:hover,
    .mega-specialty-list>li.active {
        background: #f4fafa;
        color: var(--teal);
    }

    .mega-title-wrap {
        display: inline-block;
    }

    .mega-specialty-list>li::after {
        content: '+';
        opacity: 0.4;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        font-weight: bold;
    }

    .mega-specialty-list>li:hover::after {
        opacity: 1;
        color: var(--teal);
    }

    .mega-specialty-list>li.active::after {
        content: '−';
        opacity: 1;
        color: var(--teal);
        font-size: 1.3rem;
    }

    .mega-middle {
        flex: 1;
        padding: 15px 30px;
        position: relative;
    }

    .mega-right {
        flex: 0 0 280px;
        padding: 15px;
        position: relative;
    }

    .mega-content-panel,
    .mega-img-panel {
        position: absolute;
        top: 15px;
        left: 30px;
        right: 30px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        transform: translateY(15px);
    }

    .mega-img-panel {
        left: 15px;
        right: 15px;
        top: 15px;
        height: calc(100% - 30px);
    }

    .mega-content-panel.active,
    .mega-img-panel.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition-delay: 0.1s;
    }

    .mega-content-panel h3 {
        font-size: 24px;
        color: var(--teal);
        margin-bottom: 12px;
        font-family: 'Playfair Display', serif;
    }

    .mega-content-panel p {
        color: #555;
        line-height: 1.6;
        margin-bottom: 20px;
        font-size: 14px;
    }

    .mega-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        background: var(--teal);
        color: #fff !important;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .mega-link:hover {
        background: var(--teal-dark);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px color-mix(in srgb, var(--teal) 30%, transparent);
    }

    .mega-img-panel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .mega-mobile-content {
        display: none;
    }

    @media (max-width: 768px) {
        .nav-dropdown.mega-dropdown {
            width: 100%;
        }

        .mega-menu {
            position: static !important;
            width: 100%;
            max-width: 100%;
            box-shadow: none;
            border-top: none;
            background: #f4fafa;
            border-radius: 8px;
            margin-top: 5px;
            opacity: 0;
            visibility: hidden;
            display: grid;
            grid-template-rows: 0fr;
            transform: none !important;
            transition: grid-template-rows 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
            padding: 0;
        }

        .nav-dropdown.mega-dropdown.open .mega-menu {
            opacity: 1;
            visibility: visible;
            grid-template-rows: 1fr;
            padding-top: 10px;
            transform: none !important;
            pointer-events: auto !important;
        }

        .mega-menu-inner {
            overflow: hidden;
            display: block;
            padding: 0;
            min-height: auto;
        }

        .mega-middle,
        .mega-right {
            display: none;
        }

        .mega-left {
            border-right: none;
            padding-right: 0;
        }

        .mega-specialty-list>li {
            flex-direction: column;
            align-items: stretch;
            padding: 0;
            border-radius: 0;
            margin-bottom: 0;
            border-bottom: 1px solid #eee;
        }

        .mega-specialty-list>li:last-child {
            border-bottom: none;
        }

        .mega-specialty-list>li::after {
            display: none;
        }

        .mega-specialty-list>li:hover {
            background: transparent;
        }

        .mega-title-wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 15px;
            width: 100%;
            font-weight: 600;
            color: #444;
        }

        .mega-specialty-list>li.active .mega-title-wrap {
            color: var(--teal);
        }

        .mega-title-wrap::after {
            content: '+';
            font-size: 22px;
            transition: transform 0.3s ease;
            line-height: 1;
        }

        .mega-specialty-list>li.active .mega-title-wrap::after {
            transform: rotate(45deg);
        }

        .mega-mobile-content {
            display: block;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            opacity: 0;
            background: #f9f9f9;
            text-align: left;
        }

        .mega-specialty-list>li.active .mega-mobile-content {
            max-height: 800px;
            opacity: 1;
            padding: 15px;
        }

        .mega-mobile-content img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .mega-mobile-content p {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .mega-mobile-content .mega-link {
            padding: 10px 20px;
            font-size: 14px;
            width: 100%;
            justify-content: center;
        }
    }


/* Responsive Header & Footer */
@media(max-width:1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {
    .topbar {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        padding: 0;
        z-index: 1002;
        position: relative;
    }

    .mobile-menu-btn.active svg line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
        transform-origin: center;
    }

    .mobile-menu-btn.active svg line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active svg line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
        transform-origin: center;
    }

    .mobile-menu-btn svg line {
        transition: all 0.3s ease;
    }

    .menu-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 95%;
        max-width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        padding: 80px 20px 30px 20px;
        gap: 10px;
        display: flex !important;
        align-items: flex-start;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        overflow-y: auto;
    }

    nav.active {
        right: 0;
    }

    nav a {
        width: 100%;
        text-align: left;
        padding: 12px 15px;
        font-size: 1.1rem;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    nav a::after {
        display: none;
    }

    .btn-appt {
        margin-left: 0;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}






    /* ── FLOATING BTN ── */
    .whatsapp-btn {
        position: fixed;
        bottom: 100px;
        right: 28px;
        width: 56px;
        height: 56px;
        background: #25D366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        color: #fff;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
        z-index: 999;
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-8px);
        }
    }
