/* ==========================================================================
   Dr. Manali Dermatology - Unified Design System & Global Styles
   ========================================================================== */

:root {
    /* Color Palette */
    --primary-blue: hsla(186, 68%, 32%, 1);
    --primary-dark: hsla(186, 75%, 22%, 1);
    /* Darker shade for hover states */
    /* Teal derived from logo */
    --primary-light: hsla(186, 45%, 45%, 1);
    --accent-gold: hsla(38, 90%, 55%, 1);
    /* Soft gold accent */
    --accent-coral: hsla(15, 80%, 65%, 1);
    /* Warm coral */

    --bg-light: #fef8f5;
    --bg-white: #ffffff;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #a0aec0;

    --border-light: rgba(26, 32, 44, 0.08);

    /* Typography */
    --font-main: 'Inter', sans-serif;

    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.1);

    /* Layout Spacing */
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 0;
    /* Default */
}

/* Global Responsive Table Wrapper */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

table {
    min-width: unset; /* Remove hardcoded 600px which breaks mobile */
    width: 100%;
}

/* Ensure images never overflow their containers */
img {
    max-width: 100%;
    height: auto;
}

.table-wrapper,
.treatment-comparison-table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem 0;
    display: block;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary-blue);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.highlight {
    background: linear-gradient(120deg, var(--primary-light), var(--accent-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Utility Classes & Layout
   ========================================================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Internal Page Header Spacer - Only first element gets margin */
.breadcrumb-nav {
    margin-top: var(--header-height);
}

.inner-hero-section:first-child {
    margin-top: var(--header-height);
}

/* Ensure main content is separated from fixed header on internal pages IF no breadcrumbs */
body:not(.home-page) main > *:first-child:not(.hero-section):not(.inner-hero-section) {
    margin-top: var(--header-height);
}

section {
    padding: 5rem 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    line-height: 1.2;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 8px 20px rgba(43, 108, 176, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(43, 108, 176, 0.35);
}

.btn-secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
/* ==========================================================================
   Hero Section - Premium Animated Flow
   ========================================================================== */
@keyframes premiumGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-section {
    position: relative;
    padding-top: 10rem;
    /* Space for large header */
    padding-bottom: 7rem;
    /* Soft, luxurious warm skin-tone gradient flow */
    background: linear-gradient(-45deg, #ffffff, #faede5, #fff5f0, #ffffff);
    background-size: 400% 400%;
    animation: premiumGradient 15s ease infinite;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(43, 108, 176, 0.1);
    color: var(--primary-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    text-shadow: 0 4px 15px rgba(255, 255, 255, 0.6);
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--primary-dark);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 95%;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.6);
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 30px;
    padding: 2rem;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    /* Smooth follow cursor */
}

.doc-portrait {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
    object-fit: cover;
    transform: translateZ(20px);
    /* Pop out in 3D space */
    transition: transform 0.1s ease-out;
}

/* Floating Glass Badges */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Premium glass shadow */
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateZ(40px);
    /* Pop out heavily */
    transition: transform 0.1s ease-out;
}

.badge-exp {
    bottom: 10%;
    left: -5%;
    animation-delay: 0s;
}

.badge-cases {
    top: 20%;
    right: -5%;
    animation-delay: -3s;
}

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.2;
}

/* Decorative Orbs & Premium Animations */
@keyframes floatOrb1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes floatOrb2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-30px, 30px) scale(1.2);
    }

    66% {
        transform: translate(20px, -20px) scale(0.8);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.glass-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    opacity: 0.65;
    /* slightly more visible for premium glow */
    transform: translateZ(-20px);
    /* Sit behind the portrait */
    transition: transform 0.1s ease-out;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-gold);
    top: -50px;
    right: -50px;
    animation: floatOrb1 12s ease-in-out infinite;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: var(--primary-light);
    bottom: -20px;
    left: -20px;
    animation: floatOrb2 15s ease-in-out infinite reverse;
}

/* ==========================================================================
   Trust Banner - Premium
   ========================================================================== */
.trust-banner {
    background: linear-gradient(135deg, #ffffff 0%, #fdf8f5 100%);
    padding: 5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 10;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.trust-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 1);
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(43, 108, 176, 0.08);
    border-color: rgba(43, 108, 176, 0.2);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
    transition: transform 0.3s ease;
}

.trust-item:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
}

.site-icon-chip,
.trust-icon,
.card-icon,
.expertise-item .item-icon,
.advice-icon,
.info-block .i-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(42, 132, 146, 0.14), rgba(202, 177, 72, 0.18));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 10px 24px rgba(15, 74, 92, 0.12);
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
    overflow: hidden;
}

/* Larger Icon version for Service Cards with real images */
.service-card .card-icon {
    width: 120px;
    height: 120px;
    border-radius: 26px;
    margin-bottom: 2rem;
}

/* Remove background gradient for real photo icons to keep it clean */
.card-icon:has(.real-img-icon) {
    background: #f8fafc;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* Larger Icon version for Service Cards with real images */
.service-card .card-icon {
    width: 120px;
    height: 120px;
    border-radius: 26px;
    margin-bottom: 2rem;
}

/* Remove background gradient for real photo icons to keep it clean */
.card-icon:has(.real-img-icon) {
    background: #f8fafc;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* Icon Utility Styles for SVGs */
.card-icon svg,
.trust-icon svg,
.i-icon svg,
.item-icon svg,
.site-icon-chip svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    display: block;
}

.card-icon svg {
    width: 34px;
    height: 34px;
    color: var(--primary-blue);
}

.trust-icon svg {
    width: 38px;
    height: 38px;
    color: var(--primary-blue);
}

.i-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
}

.item-icon svg {
    width: 42px;
    height: 42px;
    color: var(--primary-blue);
}

.site-icon-chip::before,
.trust-icon::before,
.card-icon::before,
.expertise-item .item-icon::before,
.advice-icon::before,
.info-block .i-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.65) 50%, transparent 80%);
    transform: translateX(-140%);
    transition: transform 0.5s ease;
}

.trust-item:hover .trust-icon,
.service-card:hover .card-icon,
.expertise-item:hover .item-icon,
.advice-card:hover .advice-icon,
.sidebar-links li:hover .advice-icon,
.info-block:hover .i-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.92), 0 14px 28px rgba(15, 74, 92, 0.18);
    filter: saturate(1.08);
}

/* Medical Illustration Icons */
.med-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
    display: block;
}

/* Real Photographic Icons */
.real-img-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.service-card:hover .real-img-icon {
    transform: scale(1.08);
}

.service-card:hover .med-icon,
.service-card:hover .real-img-icon,
.trust-item:hover .med-icon,
.trust-item:hover .real-img-icon {
    transform: scale(1.1);
}

.trust-item:hover .trust-icon::before,
.service-card:hover .card-icon::before,
.expertise-item:hover .item-icon::before,
.advice-card:hover .advice-icon::before,
.sidebar-links li:hover .advice-icon::before,
.info-block:hover .i-icon::before {
    transform: translateX(140%);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.trust-item h2 {
    font-size: 1.15rem !important;
    font-weight: 700;
    margin-bottom: 0.25rem !important;
    margin-top: 0 !important;
    color: var(--primary-blue);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.trust-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   Header Navbar — Clean Rewrite (SunTec Standard)
   ========================================================================== */

/* ---- Header Shell ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding-top: 1.25rem;
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.site-header.scrolled::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: -1;
}

.site-header.scrolled {
    background: transparent;
    padding-top: 0;
}

/* ---- Container ---- */
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

/* ---- Logo ---- */
.logo img {
    height: 58px;
    display: block;
}


/* ---- Desktop nav wrapper ---- */
.nav {
    display: flex;
    align-items: center;
}

/* ---- Nav list (desktop) ---- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Every direct <li> in .nav-links */
.nav-links>li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 76px;
}

/* Plain anchor items (Home, About, Results, Contact) */
.nav-links>li>a,
.nav-item-row .nav-item-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 76px;
    padding: 0 1.1rem;
    color: #1a2238;
    font-weight: 500;
    font-size: 0.97rem;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
    line-height: normal;
}

.nav-links>li>a:hover,
.nav-item-row .nav-item-link:hover {
    color: var(--primary-blue);
}

/* ---- nav-item-row for items with sub-menus ---- */
.nav-item-row {
    display: flex;
    align-items: center;
    height: 76px;
    position: relative;
}

.nav-item-row .nav-item-link {
    padding-right: 0.5rem;
}

.has-mega-menu > .nav-item-row .nav-item-link::after,
.has-dropdown > .nav-item-row .nav-item-link::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 0.55rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    opacity: 0.7;
}

/* Desktop: hide the toggle arrow button entirely */
.nav-item-toggle {
    display: none;
}

/* CTA button item */
.nav-cta-item {
    margin-left: 1rem;
    height: auto !important;
    align-self: center;
    display: flex;
    align-items: center;
}

.nav-cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 158px;
    min-height: 40px;
    height: auto !important;
    padding: 0.58rem 1.18rem !important;
    font-size: 0.85rem !important;
    font-weight: 600;
    line-height: 1.2 !important;
    text-align: center !important;
    white-space: nowrap;
    border-radius: 999px !important;
    box-shadow: 0 6px 14px rgba(16, 118, 132, 0.14);
}

/* ---- Desktop Mega-Menu ---- */
.mega-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    margin-left: max(-490px, -48vw);
    width: min(980px, 96vw);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(40px) saturate(180%) brightness(110%);
    -webkit-backdrop-filter: blur(40px) saturate(180%) brightness(110%);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    padding: 2.2rem 2.2rem 1.6rem;
    opacity: 0;
    margin-top: 6px;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, margin-top 0.3s ease, visibility 0.3s;
    z-index: 9999;
}

.has-mega-menu::after,
.has-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 16px;
}

.has-mega-menu:hover .mega-menu,
.has-mega-menu:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 0;
}

.mega-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-bottom: 0.2rem;
}

.mega-col .col-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.6rem;
    margin-bottom: 0.6rem;
    border-bottom: 2px solid rgba(180, 110, 80, 0.1);
}

.mega-col .col-header>a {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-decoration: none;
}

.mega-col .col-header>a:hover {
    text-decoration: underline;
}

/* col-toggle hidden on desktop */
.col-toggle {
    display: none;
}

.sub-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sub-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.42rem 0;
    font-size: 0.88rem;
    color: #4a5568;
    text-decoration: none;
    transition: color 0.18s ease, transform 0.18s ease;
}

.sub-list li a::before {
    content: "\2022";
    color: #f97316;
    font-size: 1rem;
    flex-shrink: 0;
}

.sub-list li a:hover {
    color: var(--primary-blue);
    transform: translateX(4px);
}

.mega-footer {
    position: relative;
    display: block;
    clear: both;
    margin-top: 1.45rem;
    padding-top: 1.2rem;
    border-top: 1px solid #f0f4ff;
    text-align: center;
}

.mega-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-blue);
    text-decoration: none;
}

.mega-footer a:hover {
    text-decoration: underline;
}

/* ---- Desktop Advice Dropdown ---- */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    margin-left: -115px;
    width: 230px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(40px) saturate(180%) brightness(110%);
    -webkit-backdrop-filter: blur(40px) saturate(180%) brightness(110%);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    padding: 0.7rem 0;
    list-style: none;
    opacity: 0;
    margin-top: 6px;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, margin-top 0.3s ease, visibility 0.3s;
    z-index: 9999;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    color: #4a5568;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-menu li a::before {
    content: "\2022";
    color: #f97316;
    font-size: 1rem;
    flex-shrink: 0;
}

.dropdown-menu li a:hover {
    background: #f7f9ff;
    color: var(--primary-blue);
}

/* ---- Hamburger (3-span style, no text/arrows) ---- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 3100;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a2238;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}

/* Open state */
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- Overlay ---- */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2900;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================================================
   MOBILE <= 1100px
   ============================================================ */
@media (max-width: 1100px) {
    .hamburger {
        display: flex;
    }

    .nav {
        position: static;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height, 76px);
        right: 0;
        width: min(340px, 100vw);
        height: calc(100dvh - var(--header-height, 76px));
        background: rgba(255, 255, 255, 0.82);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-left: 1px solid rgba(255, 255, 255, 0.4);
        margin: 0;
        padding: 0 0 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.22);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        z-index: 9999 !important;
    }

    .nav-links.open {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links > li,
    .nav-item,
    .has-mega-menu,
    .has-dropdown {
        display: block;
        width: 100%;
        height: auto;
        min-height: 0;
        position: static;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        overflow: visible;
        flex: 0 0 auto;
    }

    .nav-links > li > a,
    .nav-item-row .nav-item-link {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 64px;
        padding: 1.1rem 1.4rem;
        color: #1a2238;
        font-size: 1.05rem;
        font-weight: 600;
        text-decoration: none;
        border-bottom: none;
    }

    .nav-item-row {
        display: flex;
        align-items: stretch;
        min-height: 64px;
        height: auto;
    }

    .nav-item-row .nav-item-link {
        flex: 1 1 auto;
        min-width: 0;
        padding-right: 0.5rem;
        justify-content: flex-start !important;
    }

    .has-mega-menu > .nav-item-row .nav-item-link::after,
    .has-dropdown > .nav-item-row .nav-item-link::after {
        display: none;
    }

    .nav-item-toggle,
    .col-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        min-width: 56px;
        height: 64px;
        padding: 0;
        margin: 0;
        margin-left: auto;
        border: none;
        background: transparent;
        appearance: none;
        -webkit-appearance: none;
        cursor: pointer;
        flex-shrink: 0;
    }

    .nav-item-toggle .toggle-icon,
    .col-toggle .toggle-icon {
        position: relative;
        width: 16px;
        height: 16px;
        display: block;
    }

    .nav-item-toggle .toggle-icon::before,
    .nav-item-toggle .toggle-icon::after,
    .col-toggle .toggle-icon::before,
    .col-toggle .toggle-icon::after {
        content: '';
        position: absolute;
        border-radius: 999px;
        background: #1f2a44;
        transition: transform 0.24s ease, opacity 0.24s ease;
    }

    .nav-item-toggle .toggle-icon::before,
    .col-toggle .toggle-icon::before {
        top: 7px;
        left: 0;
        width: 16px;
        height: 2px;
    }

    .nav-item-toggle .toggle-icon::after,
    .col-toggle .toggle-icon::after {
        top: 0;
        left: 7px;
        width: 2px;
        height: 16px;
    }

    .nav-item.open > .nav-item-row .nav-item-toggle .toggle-icon::after,
    .mega-col.col-open > .col-header .col-toggle .toggle-icon::after {
        opacity: 0;
        transform: rotate(90deg);
    }

    .mega-menu,
    .dropdown-menu {
        position: static !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.34s ease;
    }

    .mega-container {
        display: block;
        width: 100%;
        padding: 0;
    }

    .mega-col {
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .mega-col .col-header {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        margin: 0;
        padding: 0;
        border-bottom: none;
    }

    .mega-col .col-header > a {
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        min-height: 58px;
        padding: 0.85rem 1rem 0.85rem 1.6rem;
        font-size: 0.96rem;
        font-weight: 600;
        color: #1a2238;
        text-decoration: none;
        text-transform: none;
        letter-spacing: 0;
    }

    .sub-list {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.28s ease;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .sub-list li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0.76rem 1rem 0.76rem 2.4rem;
        font-size: 0.9rem;
        color: #4a5568;
        text-decoration: none;
        border-bottom: 1px solid rgba(0, 10, 40, 0.03);
    }

    .sub-list li a::before,
    .dropdown-menu li a::before {
        content: "\2022";
        color: #f97316;
        font-size: 0.95rem;
        flex-shrink: 0;
    }

    .dropdown-menu li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0.82rem 1rem 0.82rem 1.8rem;
        font-size: 0.93rem;
        color: #4a5568;
        text-decoration: none;
        border-bottom: 1px solid #f2f4f8;
        background: transparent;
    }

    .nav-cta-item {
        display: block;
        padding: 1.2rem 1.25rem 0;
        border-bottom: none;
    }

    .nav-cta-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100%;
        min-height: 56px;
        padding: 0 !important;
        margin: 0;
        line-height: 1 !important;
        text-align: center !important;
        border-radius: 999px !important;
    }

    .mega-footer {
        padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom, 0px)) !important;
    }

    .mega-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 52px;
        padding: 0.95rem 1rem;
        border-radius: 999px;
        text-align: center;
        line-height: 1.1;
    }

    .site-header.scrolled {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}

/* ==========================================================================
   Footer - Premium Dark
   ========================================================================== */
.site-footer {
    position: relative;
    padding: 6rem 0 2rem;
    background-color: #fdf8f5;
    background-image: radial-gradient(rgba(180, 110, 80, 0.1) 1px, transparent 1px), radial-gradient(rgba(180, 110, 80, 0.1) 1px, #fdf8f5 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    color: var(--text-primary);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1;
    overflow: hidden;
}

/* Subtle gradient overlay to soften the pattern */
.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(254, 248, 245, 0.95) 0%, rgba(250, 237, 229, 0.85) 100%);
    z-index: -1;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold), var(--primary-blue));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.footer-brand p {
    color: #94a3b8;
    /* Elegant slate gray */
    margin-top: 1.5rem;
    line-height: 1.8;
}

.footer-col h3 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    font-size: 0.9rem;
}

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.floating-whatsapp {
    animation: waPulse 2.5s infinite;
}

/* ==========================================================================
   Animations & Responsive
   ========================================================================== */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* Premium Staggered Reveal */
.stagger-reveal > * {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-reveal.is-visible > * {
    opacity: 1;
    transform: none;
}
.stagger-reveal.is-visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-reveal.is-visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-reveal.is-visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-reveal.is-visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-reveal.is-visible > *:nth-child(5) { transition-delay: 0.5s; }
/* Ensure mobile visibility if JS animations fail to trigger */
@media (max-width: 768px) {
    .fade-in-section {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-image-wrapper {
        margin-top: 3rem;
        padding: 1rem;
    }

    .doc-portrait {
        max-width: 320px;
        margin: 0 auto;
    }

    .badge-exp {
        bottom: -5%;
        left: 0;
        right: 0;
        width: fit-content;
        margin: 0 auto;
        transform: none !important;
        position: relative;
        margin-top: 2rem;
    }

    .badge-cases {
        display: none;
        /* Hide secondary floating bagde on small mobile */
    }

    .hero-section {
        padding-top: 5rem;
        padding-bottom: 4rem;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    section {
        padding: 4rem 0;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    body {
        padding-bottom: 80px;
        /* Safe space for sticky bar */
    }

    .snippet-container,
    .location-container {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Services Grid - Premium
   ========================================================================== */
.services-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.text-center {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.05);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--bg-light);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 26px;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* ==========================================================================
   Dr Snippet Section - Premium
   ========================================================================== */
.dr-snippet-section {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.dr-snippet-section::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(186, 230, 253, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.snippet-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.snippet-image {
    position: relative;
}

.snippet-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--primary-light);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.3;
}

.snippet-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.credentials {
    font-size: 1.1rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 2rem;
    display: block;
    letter-spacing: 0.5px;
}

.snippet-bullets {
    list-style: none;
    margin: 2.5rem 0;
}

.snippet-bullets li {
    margin-bottom: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.snippet-bullets li i,
.snippet-bullets li span.check {
    color: var(--primary-blue);
    font-weight: bold;
}

/* ==========================================================================
   Location & Contact
   ========================================================================== */
.location-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
    padding: 5rem 0;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.location-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.location-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.contact-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(186, 230, 253, 0.2), transparent 70%);
}

.contact-card h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    font-size: 1.4rem;
}

.contact-card p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.contact-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--primary-light);
}

.location-map {
    position: relative;
}

.location-map iframe {
    transition: transform 0.4s ease;
}

.location-map:hover iframe {
    transform: translateY(-5px);
}

/* ==========================================================================
   Inner Pages (About, Services Hub, etc.)
   ========================================================================== */
.inner-hero-section {
    padding: 3rem 0 2rem;
    background: linear-gradient(-45deg, #ffffff, #faede5, #fff5f0, #ffffff);
    background-size: 400% 400%;
    animation: premiumGradient 15s ease infinite;
    text-align: center;
}

.inner-hero-section h1 {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin: 1rem 0;
}

.inner-hero-section .subtitle {
    font-size: 1.2rem;
    color: var(--primary-light);
    font-weight: 600;
}

.about-profile-section {
    padding: 5rem 0;
    background: #ffffff;
}

.profile-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.profile-image {
    position: relative;
}

.profile-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.exp-badge-large {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: float 6s ease-in-out infinite;
}

.exp-badge-large .num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.exp-badge-large .txt {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.profile-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.credentials-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 24px;
    margin-top: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.credentials-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.academic-list {
    list-style: none;
}

.academic-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.academic-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
}

.expertise-section {
    background: #ffffff;
    padding: 5rem 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

@media (max-width: 1200px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

.expertise-item {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.expertise-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.expertise-item .item-icon {
    width: 120px !important;
    height: 120px !important;
    border-radius: 26px;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.expertise-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

/* Remove background gradient for real photo icons to keep it clean */
.expertise-item .item-icon:has(.real-img-icon) {
    background: #f8fafc;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.memberships-card {
    background: var(--primary-blue);
    color: #ffffff;
    padding: 4rem;
    border-radius: 40px;
    text-align: center;
    margin-bottom: 5rem;
    box-shadow: 0 30px 60px rgba(43, 108, 176, 0.2);
}

.memberships-card h2 {
    margin-bottom: 3rem;
    color: #ffffff;
}

.memberships-flex {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.m-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(18px) saturate(155%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-cta-section {
    background: linear-gradient(135deg, #fef8f5 0%, #ffffff 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

/* ==========================================================================
   Treatments Hub
   ========================================================================== */
.category-header {
    margin-bottom: 3rem;
    border-left: 5px solid var(--primary-blue);
    padding-left: 2rem;
}

.category-header h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.category-header p {
    font-size: 1.1rem;
    font-weight: 500;
}

.treatment-category {
    margin-bottom: 6rem;
}

/* ==========================================================================
   Contact & Booking Pages - Premium UI
   ========================================================================== */
.contact-page-section,
.booking-page-section {
    padding: 5rem 0;
    background: #ffffff;
}

.contact-grid-main,
.booking-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
}

.info-block {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-block .i-icon {
    font-size: 2rem;
    background: var(--bg-light);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    flex-shrink: 0;
}

.info-block h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.info-block p,
.info-block a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.05rem;
}

.premium-form-card {
    background: #ffffff;
    padding: 4rem;
    border-radius: 35px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.premium-form-card h2 {
    margin-bottom: 2.5rem;
    font-size: 2rem;
    color: var(--primary-blue);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(43, 108, 176, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.w-full {
    width: 100%;
}

.btn-lg {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
}

.trust-pill-vertical {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tp-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.tp-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.tp-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
}

.clinic-hours-card {
    margin-top: 4rem;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 24px;
}

.hours-list {
    list-style: none;
    margin-top: 1.5rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hours-list .closed {
    color: var(--accent-coral);
    font-weight: 700;
}

/* ==========================================================================
   SEO Topic Pages - Premium UI
   ========================================================================== */
.topic-intro-section {
    padding: 6rem 0 4rem;
    background: #ffffff;
}

.expert-intro-card {
    background: #fdfdfd;
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
    display: flex;
    gap: 4rem;
    align-items: center;
}

.expert-bio-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 250px;
    flex-shrink: 0;
}

.expert-bio-mini img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.expert-bio-mini h4 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
}

.expert-bio-mini p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    position: relative;
    padding-left: 2rem;
}



.topic-content-section {
    padding: 3rem 0 5rem;
    background: #ffffff;
}

.content-grid-sidebar {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    gap: 6rem;
}

.main-article-body h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.main-article-body p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.treatment-comparison-table {
    margin: 3rem 0;
    overflow-x: auto;
}

.treatment-comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.treatment-comparison-table th {
    background: var(--primary-blue);
    color: #ffffff;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
}

.treatment-comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.trust-advice-card {
    margin-top: 5rem;
    background: linear-gradient(135deg, #fef8f5 0%, #faede5 100%);
    padding: 3.5rem;
    border-radius: 35px;
    border-left: 8px solid var(--primary-blue);
}

.advice-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.advice-icon {
    font-size: 2.5rem;
}

.sticky-cta-card {
    position: sticky;
    top: 120px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.sticky-cta-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.sidebar-links {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
}

.sidebar-links h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.sidebar-links ul {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 1rem;
}

.sidebar-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.sidebar-links a:hover {
    color: var(--primary-blue);
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 4rem auto 0;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.faq-item h3 {
    font-size: 1.15rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.faq-item p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   Patient Results (Before/After)
   ========================================================================== */
.results-section {
    padding: 5rem 0;
    background: #ffffff;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.result-card {
    border-radius: 30px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.result-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.result-info {
    padding: 2rem;
    background: #ffffff;
}

.result-info h3 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.result-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fef8f5 0%, #faede5 100%);
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(180, 110, 80, 0.1);
}

.reviews-section .section-title {
    color: var(--primary-dark);
}

.reviews-section .section-header p, .reviews-section .section-header span:not(.pill-badge):not(.stars) {
    color: var(--text-secondary) !important;
}

.reviews-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.reviews-slider {
    display: flex;
    gap: 2rem;
    animation: scrollReviews 40s linear infinite;
    width: max-content;
}

.reviews-slider:hover {
    animation-play-state: paused;
}

@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

.review-card {
    background: #ffffff;
    border: 1px solid rgba(180, 110, 80, 0.1);
    padding: 2.5rem;
    border-radius: 25px;
    width: 350px;
    flex-shrink: 0;
    box-shadow: 0 25px 50px rgba(180, 110, 80, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 60px rgba(180, 110, 80, 0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.google-icon {
    width: 24px;
    height: 24px;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.reviewer-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-blue);
}

.google-cta-container {
    text-align: center;
    margin-top: 5rem;
}

.google-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.rating-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

/* ==========================================================================
   Reviewer Avatar (CSS initials-based)
   ========================================================================== */
.reviewer-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin: 0;
}

.reviewer-label {
    font-size: 0.85rem;
    color: rgba(180, 110, 80, 0.8);
}

/* ==========================================================================
   Lightbox Modal
   ========================================================================== */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.lightbox-overlay.active {
    display: flex;
    animation: fadeInOverlay 0.25s ease;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-box {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    max-width: 680px;
    width: 100%;
    cursor: default;
    animation: slideUpModal 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

@keyframes slideUpModal {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.lightbox-img {
    width: 100%;
    display: block;
    max-height: 70vh;
    object-fit: contain;
    background: #f8fafc;
}

.lightbox-caption {
    padding: 1.5rem 2rem;
    border-top: 1px solid #f1f5f9;
}

.lightbox-caption h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.4rem;
}

.lightbox-caption p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.result-card {
    cursor: pointer;
}

.result-card:hover .result-image {
    opacity: 0.9;
}

@media (max-width: 992px) {
    h1 {
        font-size: 3rem !important;
    }

    .hero-section {
        padding: 9rem 0 3.5rem !important;
    }

    .snippet-container {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 3rem !important;
    }

    .expert-intro-card {
        grid-template-columns: 1fr !important;
        display: grid !important;
        gap: 2rem !important;
        text-align: center !important;
    }

    .content-grid-sidebar {
        grid-template-columns: 1fr !important;
    }

    .inner-hero-section h1 {
        font-size: 2.5rem !important;
    }

    .results-grid,
    .services-grid,
    .trust-grid,
    .location-container {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 2.5rem !important;
    }

    .location-map {
        width: 100% !important;
        order: 2 !important;
    }

    .location-info {
        order: 1 !important;
        width: 100% !important;
    }

    .location-map iframe {
        width: 100% !important;
        height: 350px !important;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 1.25rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* THE SUPER-HAMMER: 
       Targets hardcoded inline grids (like 1fr 320px) and Forces Stacking */
    .content-grid-sidebar,
    div[style*="display: grid"],
    div[style*="display:grid"] {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        gap: 2.5rem !important;
        text-align: left !important;
    }

    /* Specifically target the sidebar to appear AFTER content */
    aside.topic-sidebar {
        order: 10 !important;
        width: 100% !important;
        margin-top: 3rem !important;
    }

    .main-article-body {
        order: 1 !important;
        width: 100% !important;
    }

    /* Fix header alignment issues on tablets/mobiles */
    .nav-container {
        width: 100% !important;
        justify-content: space-between !important;
        padding: 0 1rem !important;
    }

    .logo {
        margin: 0 !important;
    }

    /* Fix for "How Acne Develops" infographics */
    .infographic-box > div {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .inner-hero-section h1 {
        font-size: 2.2rem !important;
    }

    /* Footer adjustments */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 3rem !important;
    }

    .footer-brand {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem !important;
    }

    .inner-hero-section {
        padding: 2.5rem 0 2rem !important;
    }

    .btn {
        width: 100% !important;
    }

    .results-grid,
    .services-grid,
    .trust-grid,
    .location-container {
        gap: 1.5rem !important;
    }

    .location-map iframe {
        height: 300px !important;
    }

    .cta-btns {
        flex-direction: column !important;
    }

    .expert-bio-mini img {
        width: 120px !important;
        height: 120px !important;
    }

    .trust-advice-card {
        padding: 2rem !important;
    }
}

/* Force Contrast for Buttons inside Cards */
.contact-card .btn-primary,
.location-info .btn-primary {
    color: #ffffff !important;
    text-decoration: none !important;
}

.contact-card a:not(.btn) {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Mobile Sticky Action Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0.8rem 1rem;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: flex;
        justify-content: space-between;
    }

    body {
        padding-bottom: 70px;
        /* Space for sticky bar */
    }

    .mobile-sticky-bar .btn {
        flex: 1;
        text-align: center;
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        margin: 0;
    }
}

/* Floating UX Buttons */
.floating-ux-buttons {
    position: fixed;
    bottom: 90px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.float-call {
    background-color: var(--primary-blue);
}

.float-wa {
    background-color: #25D366;
    font-size: 1.8rem;
}

.float-book {
    background-color: var(--accent-light);
    color: var(--primary-dark);
    font-size: 1.4rem;
}

.float-book:hover {
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .floating-ux-buttons {
        /* Hide on mobile since we have the sticky bottom bar */
        display: none;
    }
}

/* Results Overlay Specific */
.result-card {
    position: relative;
    overflow: hidden;
}

.result-overlay-anim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    z-index: 2;
    pointer-events: none;
}

.result-card:hover .result-overlay-anim {
    opacity: 1;
}

.result-overlay-anim h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.result-overlay-anim p {
    margin: 0;
    font-size: 0.95rem;
    color: #ddd;
}


/* Removed footer UI polish overrides since it's consolidated */
.site-footer h3 {
    color: var(--primary-dark);
}

.site-footer p,
.site-footer a,
.site-footer li {
    color: var(--text-secondary);
    font-weight: 500;
}

.site-footer a:hover {
    color: var(--primary-blue);
    font-weight: 600;
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
}

.nav-container .btn-primary {
    color: #ffffff !important;
}

/* ==========================================================================
   Responsive Overrides - Final Polish
   ========================================================================== */

/* Results Gallery Filters - Horizontal Scroll on Mobile */
@media (max-width: 768px) {
    .results-filters {
        display: flex !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        padding: 0.5rem 0 !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 0.5rem !important;
        width: 100% !important;
        scrollbar-width: none !important;
    }

    .results-filters::-webkit-scrollbar {
        display: none !important;
    }

    .results-filters .btn {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
        padding: 0.6rem 1.2rem !important;
        font-size: 0.9rem !important;
    }

    .credentials-row {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }

    .cred-sep {
        display: none !important;
    }
}

/* Booking Layout Break Fix - Force Stack on Mobile */
@media (max-width: 992px) {
    .booking-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .booking-info-aside {
        order: 2 !important;
        width: 100% !important;
    }

    .booking-form-container {
        order: 1 !important;
        width: 100% !important;
    }

    .form-row {
        flex-direction: column !important;
        gap: 1rem !important;
    }
}

/* Contact Page Grid Stacking - Phase 23 */
@media (max-width: 992px) {
    .contact-grid-main {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .contact-details-left,
    .contact-form-wrapper {
        width: 100% !important;
    }

    .contact-page-section {
        padding: 4rem 0 !important;
    }

    .premium-form-card {
        padding: 2.5rem !important;
        border-radius: 20px !important;
    }
}

/* Footer & Global UI Polish - Phase 23 */
@media (max-width: 768px) {
    .site-footer .logo img {
        height: 40px !important;
    }

    .floating-whatsapp,
    .floating-call,
    .floating-book {
        bottom: 90px !important;
        /* Offset for sticky bar */
    }

    .contact-socials {
        text-align: center !important;
        margin-top: 1rem !important;
    }

    .info-block {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
}

/* Enhanced Contact Page Stacking - Phase 23 (Verification Refinement) */
@media (max-width: 992px) {
    .contact-page-section .contact-grid-main {
        display: flex !important;
        flex-direction: column !important;
        gap: 2.5rem !important;
    }

    .contact-page-section .contact-details-left,
    .contact-page-section .contact-form-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }

    .contact-page-section .info-block {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .contact-page-section .container {
        padding: 0 1.5rem !important;
    }
}

/* Breadcrumb Visibility Fix - Phase 25 */
.breadcrumb-nav {
    margin-top: var(--header-height) !important;
    margin-bottom: 0 !important;
    position: relative;
    z-index: 99;
}

@media (max-width: 992px) {
    .breadcrumb-nav {
        margin-top: var(--header-height) !important;
    }
}

/* Explicitly strip redundant arrows from the mobile nav only */
@media (max-width: 1100px) {
    .nav-links li a::after,
    .nav-links .nav-item-link::after,
    .nav-links .nav-item-row::after,
    .mega-col .col-header::after,
    .nav-item-toggle::before,
    .nav-item-toggle::after,
    .col-toggle::before,
    .col-toggle::after {
        display: none !important;
        content: none !important;
    }
}






