@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
    /* Theme HSL Colors (Teal and Gold Accent) */
    --primary-hsl: 184, 100%, 35%;
    --primary: hsl(var(--primary-hsl));
    --primary-hover: hsl(184, 100%, 28%);
    --primary-light: hsl(184, 100%, 96%);
    
    --secondary-hsl: 41, 45%, 51%;
    --secondary: hsl(var(--secondary-hsl));
    --secondary-hover: hsl(41, 45%, 43%);
    --secondary-light: hsl(41, 45%, 95%);
    
    --dark: #0f172a;
    --dark-hover: #1e293b;
    --slate: #475569;
    --slate-light: #94a3b8;
    --light: #f8fafc;
    --light-teal: #f0fafb;
    --white: #ffffff;
    --tangerine: #BA974A;
    --border: #e2e8f0;
    --border-teal: #d0f0f2;
    
    /* Layout Variables */
    --font-heading: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.08);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px 0 rgba(0, 168, 181, 0.15);
    --shadow-glow-gold: 0 0 20px 0 rgba(184, 151, 74, 0.15);
    
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--slate);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
    line-height: 1.25;
}

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-tangerine { color: var(--tangerine); }

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--light);
}
::-webkit-scrollbar-thumb {
    background: var(--slate-light);
    border-radius: var(--radius);
    border: 2px solid var(--light);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Page Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    color: var(--primary-light);
}

.ecg-svg {
    width: 250px;
    height: 80px;
    stroke: var(--primary);
}

.ecg-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawECG 4s linear infinite;
}

@keyframes drawECG {
    0% { stroke-dashoffset: 1000; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -1000; }
}

.loader-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary);
    margin-top: 1rem;
    letter-spacing: 1px;
    animation: pulseText 2s ease-in-out infinite;
}

@keyframes pulseText {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Custom Cursor */
.cursor-wrapper {
    display: none;
}

@media (min-width: 1024px) {
    .cursor-wrapper {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 10000;
    }
    
    .cursor-dot {
        position: absolute;
        width: 8px;
        height: 8px;
        background-color: var(--primary);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, background-color 0.2s;
    }
    
    .cursor-circle {
        position: absolute;
        width: 36px;
        height: 36px;
        border: 2px solid var(--secondary);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                    height 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                    border-color 0.3s;
    }
    
    body.cursor-hover .cursor-dot {
        width: 12px;
        height: 12px;
        background-color: var(--secondary);
    }
    
    body.cursor-hover .cursor-circle {
        width: 48px;
        height: 48px;
        border-color: var(--primary);
    }
}

/* Container Utility */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Button & Badge Tokens */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.btn--primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn--secondary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: var(--shadow-glow-gold);
}

.btn--secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
}

.btn--outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn--outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-teal);
    width: fit-content;
}

.badge--midnight {
    background-color: #1e293b10;
    color: var(--dark);
    border-color: var(--border);
}

/* Text Logo Styles */
.text-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

.text-logo__symbol {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.text-logo__img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: height 0.3s ease;
}

@media (min-width: 1024px) {
    .text-logo__img {
        height: 52px;
    }
}

.header.scrolled .text-logo__img {
    height: 38px;
}

@media (min-width: 1024px) {
    .header.scrolled .text-logo__img {
        height: 44px;
    }
}

.text-logo__name {
    color: var(--primary);
}

.text-logo--light {
    color: var(--white);
}

.text-logo--light .text-logo__name {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    color: var(--white);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition-slow);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.header__container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__mobile-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .header__mobile-actions {
        display: none !important;
    }
}

.header__mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-teal);
    border: 1px solid var(--border-teal);
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.header__mobile-call-btn span {
    font-size: 1.25rem;
}

.header__mobile-call-btn:active {
    background-color: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary-hover);
    transform: scale(0.95);
}

@media (min-width: 1024px) {
    .header__mobile-call-btn {
        display: none !important;
    }
}

.header__nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .header__nav-desktop {
        display: flex;
    }
}

.header__nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.header.scrolled .header__nav-link {
    color: var(--dark);
}

.header__nav-link:hover {
    color: var(--primary);
}

/* Header Services Dropdown */
.header__dropdown {
    /* position: relative; */ /* Commented out to allow container-based centering of the mega menu */
}

.header__dropdown-arrow {
    font-size: 1.2rem;
    transition: var(--transition);
}

.header__dropdown:hover .header__dropdown-arrow {
    transform: rotate(180deg);
}

.header__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 15px);
    width: 820px;
    background-color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 16px -6px rgba(15, 23, 42, 0.04);
    border: 1px solid #e2e8f0;
    padding: 1.15rem 1.25rem 1.25rem 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-bounce);
    z-index: 100;
}

.header__dropdown:hover .header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 5px);
}

.header__dropdown-inner {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.header__dropdown-top {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 1.5rem;
}

/* Left Column: Premium Clinic Cards */
.header__dropdown-left {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-right: 1px solid #e2e8f0;
    padding-right: 1.5rem;
}

.header__dropdown-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.15rem;
    border-radius: var(--radius-lg);
    background-color: var(--white);
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 8px -1px rgba(0, 0, 0, 0.02);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.header__dropdown-card.card-teal {
    border-left: 4px solid #0d9488;
}

.header__dropdown-card.card-gold {
    border-left: 4px solid #d97706;
}

.header__dropdown-card:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 8px 16px -4px rgba(15, 23, 42, 0.04), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
}

.header__dropdown-card-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header__dropdown-card-icon-wrapper.teal-glow {
    background-color: rgba(13, 148, 136, 0.05);
    border: 1px solid rgba(13, 148, 136, 0.1);
    color: #0d9488;
}

.header__dropdown-card-icon-wrapper.gold-glow {
    background-color: rgba(217, 119, 6, 0.05);
    border: 1px solid rgba(217, 119, 6, 0.1);
    color: #d97706;
}

.header__dropdown-card-icon-wrapper span {
    font-size: 1.35rem !important;
}

.header__dropdown-card-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    flex-grow: 1;
    margin-left: 0.85rem;
    margin-right: 0.5rem;
}

.header__dropdown-card-title {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: #0f172a;
    line-height: 1.2;
}

.header__dropdown-card-desc {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.3;
}

.header__dropdown-card-badge {
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.1rem;
}

.header__dropdown-card-badge.text-teal {
    color: #0d9488;
}

.header__dropdown-card-badge.text-gold {
    color: #d97706;
}

.header__dropdown-card-arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.header__dropdown-card-arrow.arrow-teal {
    background-color: rgba(13, 148, 136, 0.04);
    color: #0d9488;
}

.header__dropdown-card-arrow.arrow-gold {
    background-color: rgba(217, 119, 6, 0.04);
    color: #d97706;
}

.header__dropdown-card-arrow span {
    font-size: 1rem !important;
}

.header__dropdown-card:hover .header__dropdown-card-arrow {
    transform: scale(1.05) translateX(2px);
}

.header__dropdown-card.card-teal:hover .header__dropdown-card-arrow {
    background-color: #0d9488;
    color: var(--white);
}

.header__dropdown-card.card-gold:hover .header__dropdown-card-arrow {
    background-color: #d97706;
    color: var(--white);
}

/* Right Column: Specialist Clinics Grid */
.header__dropdown-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header__dropdown-right-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    color: #d97706;
}

.header__dropdown-flourish-line-left {
    height: 1px;
    width: 35px;
    background: linear-gradient(to left, #d97706, transparent);
}

.header__dropdown-flourish-line-right {
    height: 1px;
    width: 35px;
    background: linear-gradient(to right, #d97706, transparent);
}

.header__dropdown-flourish-icon {
    font-size: 1.1rem !important;
}

.header__dropdown-right-title {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #0f172a;
    text-transform: uppercase;
    margin: 0.35rem 0 0.85rem 0;
    text-align: center;
}

.header__dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    width: 100%;
}

.header__dropdown-grid-card {
    background-color: var(--white);
    border: 1px solid #f1f5f9;
    border-radius: var(--radius);
    padding: 0.8rem 0.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.header__dropdown-grid-card:hover {
    border-color: rgba(13, 148, 136, 0.25);
    box-shadow: 0 6px 12px -3px rgba(13, 148, 136, 0.03);
    transform: translateY(-2px);
}

.header__dropdown-grid-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 148, 136, 0.04);
    border: 1px solid rgba(13, 148, 136, 0.06);
    color: #0d9488;
    margin-bottom: 0.45rem;
    transition: var(--transition);
}

.header__dropdown-grid-card:hover .header__dropdown-grid-icon-wrapper {
    background-color: #0d9488;
    color: var(--white);
    border-color: #0d9488;
}

.header__dropdown-grid-icon-wrapper span {
    font-size: 1rem !important;
}

.header__dropdown-grid-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 0.35rem 0;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__dropdown-grid-dash {
    width: 10px;
    height: 2px;
    background-color: #0d9488;
    border-radius: 10px;
    margin-top: auto;
    transition: width 0.3s ease;
}

.header__dropdown-grid-card:hover .header__dropdown-grid-dash {
    width: 18px;
}

/* Bottom Bar: Banner */
.header__dropdown-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.05) 0%, rgba(20, 184, 166, 0.02) 100%);
    border: 1px solid rgba(13, 148, 136, 0.1);
    border-radius: var(--radius-lg);
    padding: 0.85rem 1.25rem;
    position: relative;
    overflow: hidden;
}

.header__dropdown-bottom-left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    position: relative;
    z-index: 2;
}

.header__dropdown-bottom-icon {
    color: #0d9488;
    font-size: 1.25rem !important;
}

.header__dropdown-bottom-text {
    display: flex;
    flex-direction: column;
}

.header__dropdown-bottom-text .bold-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
}

.header__dropdown-bottom-text .teal-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #0d9488;
}

.header__dropdown-bottom-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background-color: #0d9488;
    color: var(--white);
    padding: 0.55rem 1rem;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(13, 148, 136, 0.12);
    position: relative;
    z-index: 2;
}

.header__dropdown-bottom-btn span.material-symbols-outlined {
    font-size: 0.95rem !important;
}

.header__dropdown-bottom-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(13, 148, 136, 0.2);
}

.header__dropdown-bottom-leaf {
    position: absolute;
    right: 0;
    bottom: -15px;
    width: 90px;
    height: 90px;
    opacity: 0.06;
    fill: #0d9488;
    pointer-events: none;
    transform: rotate(-10deg);
    z-index: 1;
}

.header__cta {
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-glow-gold);
}

.header__cta:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-1px);
}

.header__mobile-btn {
    display: block;
    color: var(--white);
}

.header.scrolled .header__mobile-btn {
    color: var(--dark);
}

@media (min-width: 1024px) {
    .header__mobile-btn {
        display: none;
    }
}

.header__mobile-btn-icon {
    font-size: 2rem;
}

/* Mobile Fullscreen Navigation Menu */
.header__nav-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
}

.header__nav-mobile-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.header__nav-mobile-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark);
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light);
}

.header__cta--mobile {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.85rem;
    border-radius: var(--radius-lg);
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 9rem 0 5rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero {
        padding: 11rem 0 7rem 0;
    }
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b1a1d; /* Very deep dark teal */
    z-index: 1;
}

.hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b1a1d;
}

.hero__glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.hero__glow--primary {
    top: 20%;
    left: -100px;
    background-color: var(--primary);
}

.hero__glow--secondary {
    bottom: 10%;
    right: -100px;
    background-color: var(--secondary);
}

.hero__diagonal {
    position: absolute;
    bottom: -150px;
    right: 0;
    width: 50%;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.02);
    transform: skewY(-10deg);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero__content {
    color: var(--white);
}

.hero__premium-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 0.65rem 1.15rem;
    margin-bottom: 1.75rem;
    width: fit-content;
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.hero__premium-card:hover {
    border-color: rgba(184, 151, 74, 0.4);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.premium-card__icon {
    font-size: 2rem !important;
    color: #BA974A;
    background: rgba(184, 151, 74, 0.12);
    padding: 0.4rem;
    border-radius: var(--radius);
    border: 1px solid rgba(184, 151, 74, 0.2);
    flex-shrink: 0;
}

.premium-card__text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    line-height: 1.2;
}

.premium-card__badge {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #BA974A;
}

.premium-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
}

@keyframes blink {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

.hero__title {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 3.5rem;
    }
}

.hero__title-stack {
    position: relative;
    display: block;
    height: 130px;
}

@media (min-width: 768px) {
    .hero__title-stack {
        height: 180px;
    }
}

.hero__title-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: var(--transition-slow);
}

.hero__title-item.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hero__title-line1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.hero__title-prefix {
    font-weight: 500;
    color: var(--slate-light);
}

.hero__title-highlight {
    color: var(--primary);
    font-weight: 800;
}

.hero__title-line2 {
    display: block;
    font-weight: 800;
}

.hero__title-suffix {
    color: var(--white);
}

.hero__doctor {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    max-width: 500px;
}

@media (min-width: 1024px) {
    .hero__doctor {
        display: none;
    }
}

.hero__doctor picture {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    background-color: var(--primary-light);
    flex-shrink: 0;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.hero__doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__doctor-name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.hero__doctor-title {
    display: block;
    font-size: 0.75rem;
    color: var(--slate-light);
}

.hero__description {
    font-size: 1.05rem;
    color: var(--slate-light);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero__actions svg {
    margin-right: 0.25rem;
}

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

@media (min-width: 480px) {
    .hero__stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero__stat {
    border-left: 2px solid rgba(0, 168, 181, 0.3);
    padding-left: 1rem;
}

.hero__stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 0.25rem;
}

.hero__stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--slate-light);
    font-weight: 500;
}

/* Hero Portrait/Badge Area */
.hero__image-wrapper {
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero__image-wrapper {
        display: flex;
    }
}

.hero__image-container {
    position: relative;
    width: 320px;
    height: 420px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
    .hero__image-container {
        width: 380px;
        height: 500px;
    }
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #162a2d;
}

.hero__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero__image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero__image-badge-icon {
    color: var(--secondary);
    background-color: rgba(184, 151, 74, 0.15);
    padding: 0.4rem;
    border-radius: 50%;
}

.hero__image-badge-text {
    display: flex;
    flex-direction: column;
}

.hero__image-badge-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
}

.hero__image-badge-sub {
    font-size: 0.7rem;
    color: var(--slate-light);
}

.hero__float-experience {
    position: absolute;
    top: 2rem;
    left: -1rem;
    background-color: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.hero__float-experience-icon {
    font-size: 1.1rem;
}

.hero__float-experience-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__scroll-indicator {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    position: relative;
}

.hero__scroll-dot {
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
    0% { transform: translate(-50%, 0); opacity: 0; }
    30% { opacity: 1; }
    80% { transform: translate(-50%, 12px); opacity: 0; }
    100% { transform: translate(-50%, 0); opacity: 0; }
}

/* Sections Global */
.section {
    padding: 5rem 0;
    position: relative;
}

@media (min-width: 1024px) {
    .section {
        padding: 7.5rem 0;
    }
}

.section--gray {
    background-color: var(--light);
}

.section--dark {
    background-color: var(--dark);
    color: var(--white);
}

.section__header {
    max-width: 680px;
    margin-bottom: 3.5rem;
}

/* Doctor Intro Section */
.intro__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .intro__grid {
        grid-template-columns: 0.8fr 1.2fr;
    }
}

.intro__photo-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.intro__photo {
    width: 260px;
    height: 260px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    object-fit: cover;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-lg);
    background-color: var(--secondary-light);
}

.intro__trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    max-width: 320px;
}

.intro__trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-xl);
    background-color: var(--white);
    color: var(--slate);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.intro__trust-badge span {
    color: var(--secondary);
    font-size: 1rem;
}

.intro__content-col {
    display: flex;
    flex-direction: column;
}

.intro__title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.intro__title-highlight {
    color: var(--primary);
    font-size: 1.3rem;
    display: inline-block;
    margin-left: 0.5rem;
}

.intro__specialization {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.intro__motto {
    font-style: italic;
    font-size: 1.15rem;
    color: var(--dark);
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.intro__description {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.intro__stats-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.5rem;
}

.intro__stat-inline {
    display: flex;
    flex-direction: column;
}

.intro__stat-inline-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.intro__stat-inline-label {
    font-size: 0.8rem;
    color: var(--slate);
}

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

@media (min-width: 640px) {
    .intro__credentials {
        grid-template-columns: 1fr 1fr;
    }
}

.intro__credential {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.intro__credential span:first-child {
    color: var(--primary);
    font-size: 1.25rem;
}

.intro__cta {
    align-self: flex-start;
}

/* Specialized Services Grid */
.services__header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.services__title {
    font-size: 2.25rem;
    margin: 1rem 0;
}

.services__title-highlight {
    color: var(--primary);
}

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

@media (min-width: 768px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition-bounce);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-teal);
}

.service-card--featured {
    border-color: var(--border-teal);
    box-shadow: var(--shadow-glow);
}

.service-card__icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card__icon span {
    font-size: 1.75rem;
}

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card__description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card__features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-top: 1px solid var(--light);
    padding-top: 1rem;
}

.service-card__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-card__feature span {
    color: var(--secondary);
    font-size: 1.05rem;
}

.service-card__link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.service-card__link:hover {
    gap: 0.5rem;
}

.service-card__badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: var(--secondary-light);
    color: var(--secondary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

/* Key Procedures Area */
.services__procedures {
    border-top: 1px solid var(--border);
    padding-top: 4rem;
    margin-top: 2rem;
}

.services__procedures-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

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

@media (min-width: 640px) {
    .services__procedures-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .services__procedures-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.procedure-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.procedure-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow-gold);
    transform: scale(1.02);
}

.procedure-card__icon {
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.procedure-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.procedure-card__tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--slate-light);
}

.services__cta {
    text-align: center;
    margin-top: 3.5rem;
}

/* Spotlight Section */
.spotlight {
    position: relative;
    overflow: hidden;
}

.spotlight__bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-color: var(--secondary);
    opacity: 0.06;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.spotlight .container {
    position: relative;
    z-index: 2;
}

.spotlight__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .spotlight__grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.spotlight__content {
    display: flex;
    flex-direction: column;
}

.spotlight__lead-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spotlight__lead-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.spotlight__lead-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spotlight__title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.spotlight__description {
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.spotlight__benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .spotlight__benefits {
        grid-template-columns: 1fr 1fr;
    }
}

.spotlight__benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.spotlight__benefit-icon span {
    color: var(--primary);
    font-size: 1.25rem;
}

.spotlight__benefit-content strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 0.15rem;
}

.spotlight__benefit-content span {
    font-size: 0.8rem;
    color: var(--slate);
}

.spotlight__cta {
    align-self: flex-start;
}

.spotlight__stats-col {
    display: flex;
    flex-direction: column;
}

.spotlight__stats-card {
    background-color: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    box-shadow: var(--shadow);
}

.spotlight__stat {
    display: flex;
    flex-direction: column;
}

.spotlight__stat--featured {
    grid-column: span 2;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.5rem;
}

.spotlight__stat-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
}

.spotlight__stat--featured .spotlight__stat-number {
    font-size: 2.5rem;
    color: var(--primary);
}

.spotlight__stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--slate);
}

.spotlight__trust {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--secondary);
}

/* Why Choose Section */
.why-choose__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
}

@media (min-width: 1024px) {
    .why-choose__grid {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.why-choose__content {
    display: flex;
    flex-direction: column;
}

.why-choose__quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1rem;
}

.why-choose__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.why-choose__title-highlight {
    color: var(--secondary);
}

.why-choose__description {
    margin-bottom: 2rem;
}

.credentials-card {
    background-color: var(--light);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.credentials-card__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.credentials-card__icon {
    color: var(--secondary);
}

.credentials-card__title {
    font-size: 1rem;
}

.credentials-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.credentials-card__list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.credentials-card__list li span:first-child {
    color: var(--primary);
    font-size: 1.1rem;
}

.mentors-card {
    background-color: var(--light-teal);
    border: 1px dashed var(--primary);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.mentors-card__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.mentors-card__title span {
    color: var(--primary);
}

.mentors-card__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mentor-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--border-teal);
    padding-bottom: 0.75rem;
}

.mentor-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mentor-item__name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
}

.mentor-item__specialty {
    font-size: 0.75rem;
    color: var(--slate);
}

.mentor-item__hospital {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

.why-choose__link {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    align-self: flex-start;
}

.why-choose__link:hover {
    gap: 0.5rem;
}

.why-choose__reasons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .why-choose__reasons {
        grid-template-columns: 1fr 1fr;
    }
}

.reason-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.reason-card:hover {
    border-color: var(--border-teal);
    box-shadow: var(--shadow);
}

.reason-card__icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.reason-card__title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.reason-card__description {
    font-size: 0.8rem;
}

.reason-card--hidden-mobile {
    display: none;
}

@media (min-width: 640px) {
    .reason-card--hidden-mobile {
        display: block;
    }
}

.why-choose__show-more {
    grid-column: span 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    padding: 1rem;
    border-radius: var(--radius-lg);
    background-color: var(--light);
    border: 1px solid var(--border);
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .why-choose__show-more {
        grid-column: span 2;
        display: none;
    }
}

/* 4-Step Process Section */
.process__header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.process__title {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.process__subtitle {
    font-size: 1.05rem;
}

.process__full-width {
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    background-color: var(--white);
    padding: 3rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.process__timeline {
    display: flex;
    padding: 0 2rem;
    min-width: 1000px;
    justify-content: space-between;
}

.process__step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    max-width: 250px;
}

.process__step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--border);
    position: relative;
    z-index: 2;
    transition: var(--transition-bounce);
}

.process__step:hover .process__step-icon {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.1);
}

.process__step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--secondary);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.process__step-icon span:last-child {
    font-size: 1.75rem;
}

.process__step-content {
    margin-top: 1.5rem;
}

.process__step-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process__step-description {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.process__step-points {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark);
}

.process__connector {
    position: absolute;
    top: 35px;
    left: calc(50% + 35px);
    width: calc(100% - 70px);
    height: 3px;
    background-color: var(--border);
    z-index: 1;
}

.process__cta {
    text-align: center;
    margin-top: 2rem;
}

/* OPD Clinic Timings & Addresses Grid */
.opd-preview__title {
    font-size: 2.25rem;
    margin: 1rem 0;
}

.opd-preview__subtitle {
    font-size: 1.05rem;
}

.opd-preview__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
    .opd-preview__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.opd-preview__card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.opd-preview__card:hover {
    border-color: var(--border-teal);
    box-shadow: var(--shadow-md);
}

.opd-preview__card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.opd-preview__step {
    background-color: var(--primary-light);
    color: var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
}

.opd-preview__timing {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
}

.opd-preview__timing span:first-child {
    font-size: 1.1rem;
}

.opd-preview__hospital-name {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.opd-preview__address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--slate);
    margin-bottom: 1rem;
}

.opd-preview__address span:first-child {
    color: var(--primary);
    font-size: 1.25rem;
}

.opd-preview__seo-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-light);
    margin-bottom: 1.5rem;
}

.opd-preview__card-footer {
    display: flex;
    gap: 1rem;
    border-top: 1px solid var(--light);
    padding-top: 1.25rem;
}

.opd-preview__directions-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.65rem;
    border-radius: var(--radius-lg);
    background-color: var(--light);
    color: var(--dark);
    border: 1px solid var(--border);
}

.opd-preview__directions-btn:hover {
    background-color: var(--border);
}

.opd-preview__book-btn {
    flex: 1;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.65rem;
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
}

.opd-preview__book-btn:hover {
    background-color: var(--primary-hover);
}

.opd-preview__footer {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

@media (min-width: 768px) {
    .opd-preview__footer {
        flex-direction: row;
        justify-content: space-between;
    }
}

.opd-preview__footer-notes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.opd-preview__visiting, .opd-preview__attachments {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.opd-preview__visiting span:first-child, .opd-preview__attachments span:first-child {
    color: var(--primary);
}

/* Testimonials Section */
.testimonials__header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.testimonials__title {
    font-size: 2.25rem;
    margin: 1rem 0;
}

.testimonials__title-highlight {
    color: var(--primary);
}

.testimonials__carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials__viewport {
    overflow: hidden;
    width: 100%;
}

.testimonials__track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonials__slide {
    min-width: 100%;
    padding: 1rem;
}

.testimonial-card {
    background-color: var(--light-teal);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    border: 1px solid var(--border-teal);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-card--featured {
    border-color: var(--border-teal);
    box-shadow: var(--shadow-glow);
}

.testimonial-card__quote {
    color: var(--primary-light);
    font-size: 3rem;
    line-height: 1;
    margin-bottom: -1rem;
}

.testimonial-card__stars {
    display: flex;
    gap: 0.25rem;
    color: #eab308;
    margin-bottom: 1.5rem;
}

.testimonial-card__stars span {
    font-size: 1.25rem;
}

.testimonial-card__text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-card__procedure {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background-color: var(--light);
    color: var(--slate);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.testimonial-card__procedure span {
    font-size: 0.95rem;
    color: var(--primary);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-card__info {
    text-align: left;
}

.testimonial-card__name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
}

.testimonial-card__location {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.75rem;
    color: var(--slate-light);
}

.testimonial-card__location span {
    font-size: 0.85rem;
}

.testimonials__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    color: var(--slate);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.testimonials__arrow:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.testimonials__arrow--prev {
    left: -22px;
}

.testimonials__arrow--next {
    right: -22px;
}

.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonials__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border);
}

.testimonials__dot.is-active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--primary);
}

.testimonials__trust {
    margin-top: 3.5rem;
    display: flex;
    justify-content: center;
}

.trust-badge {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}

.trust-badge__stars {
    display: flex;
    gap: 0.15rem;
    color: #eab308;
}

.trust-badge__stars span {
    font-size: 1rem;
}

.trust-badge__divider {
    width: 1px;
    height: 20px;
    background-color: var(--border);
}

.trust-badge__text {
    font-size: 0.85rem;
}

/* FAQ Accordion Section */
.faq-preview__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
}

@media (min-width: 1024px) {
    .faq-preview__grid {
        grid-template-columns: 0.8fr 1.2fr;
    }
}

.faq-preview__header {
    display: flex;
    flex-direction: column;
}

.faq-preview__title {
    font-size: 2.25rem;
    margin: 1rem 0;
}

.faq-preview__description {
    margin-bottom: 2rem;
}

.faq-preview__cta {
    align-self: flex-start;
}

.faq-preview__accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item--open {
    border-color: var(--border-teal);
    box-shadow: var(--shadow-sm);
}

.faq-item__question {
    width: 100%;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
}

.faq-item__icon {
    color: var(--slate-light);
    transition: var(--transition-bounce);
}

.faq-item__icon--rotated {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item__answer {
    padding: 0 1.25rem 1.25rem 1.25rem;
    font-size: 0.9rem;
    color: var(--slate);
    border-top: 1px solid var(--light);
}

/* Mega Footer */
.mega-footer {
    background-color: #0b1315; /* Charcoal Dark Green */
    color: var(--slate-light);
    position: relative;
}

.cta-zone {
    position: relative;
    padding: 3rem 0;
    background-color: var(--light);
}

.cta-zone__card {
    background: linear-gradient(135deg, #0b1a1d 0%, #061113 100%);
    border-radius: var(--radius-2xl);
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.cta-zone__container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-zone__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-zone__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(184, 151, 74, 0.15);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.cta-zone__icon span {
    font-size: 1.5rem;
}

.cta-zone__title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-zone__description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-zone__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    transition: var(--transition);
}

.cta-btn--primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.cta-btn--primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    color: var(--white);
}

.cta-btn--outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-btn--outline:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    color: var(--white);
}

.cta-zone__contacts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
}

@media (min-width: 768px) {
    .cta-zone__contacts {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    transition: var(--transition);
    text-decoration: none;
}

.contact-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 168, 181, 0.3);
    transform: translateY(-2px);
}

.contact-card__icon {
    color: var(--primary);
    background-color: rgba(0, 168, 181, 0.1);
    padding: 0.5rem;
    border-radius: var(--radius-lg);
}

.contact-card__text {
    display: flex;
    flex-direction: column;
}

.contact-card__label {
    font-size: 0.72rem;
    color: var(--slate-light);
}

.contact-card__value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}

.contact-card--static {
    pointer-events: none;
}

@media (max-width: 767px) {
    .cta-zone {
        padding: 2rem 0;
    }
    .cta-zone__card {
        padding: 2.25rem 1.25rem;
        border-radius: var(--radius-xl);
    }
    .cta-zone__actions {
        margin-bottom: 1.5rem;
    }
    .contact-card {
        padding: 0.75rem 1rem;
    }
}

.footer-main {
    padding: 5rem 0 3rem 0;
}

.footer-main__container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-main__grid--5cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 640px) {
    .footer-main__grid--5cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-main__grid--5cols {
        grid-template-columns: 1.5fr repeat(4, 1fr);
    }
}

.footer-main__brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-main__brand-desc {
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-main__social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--slate-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.footer-main__quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-main__column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-link span {
    font-size: 0.9rem;
    color: var(--slate-light);
}

.footer-link:hover {
    color: var(--primary);
}

.footer-main__contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.footer-contact-item__icon {
    color: var(--primary);
}

.footer-contact-item__text--email {
    word-break: break-all;
}

.footer-whatsapp-btn {
    background-color: #25d366;
    color: var(--white);
    padding: 0.75rem;
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.footer-whatsapp-btn:hover {
    background-color: #20ba59;
    transform: translateY(-1px);
}

.credentials-strip {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-light);
}

.credential-badge span:first-child {
    color: var(--secondary);
}

.footer-bottom {
    background-color: #080d0e;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1.5rem 0;
    font-size: 0.8rem;
}

.footer-bottom__container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-bottom__inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom__inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom__credit {
    color: var(--secondary);
}

/* Floating Actions */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 999;
}

/* Scroll to Top styling */
.scroll-top-btn {
    width: 44px;
    height: 44px;
    background-color: var(--white);
    color: var(--dark);
    border: 1px solid var(--border);
    border-radius: 50%;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.whatsapp-btn {
    background-color: #25d366;
    color: var(--white);
    padding: 0 1rem;
    height: 44px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
}

.whatsapp-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Page Hero layout template */
.page-hero {
    position: relative;
    padding: 8rem 0 4rem 0;
    background-color: #0b1a1d;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .page-hero {
        padding: 10rem 0 5rem 0;
    }
}

.page-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b1a1d;
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero__content {
    color: var(--white);
    max-width: 800px;
}

.page-hero__title {
    font-size: 2.25rem;
    color: var(--white);
    margin: 1.5rem 0;
}

@media (min-width: 768px) {
    .page-hero__title {
        font-size: 3.25rem;
    }
}

.page-hero__title-highlight {
    color: var(--secondary);
}

.page-hero__description {
    font-size: 1.05rem;
    color: var(--slate-light);
}

/* About Profile Section */
.about-profile__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
}

@media (min-width: 1024px) {
    .about-profile__grid {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.about-profile__image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-profile__image-area {
    position: relative;
    width: 320px;
    height: 420px;
}

@media (min-width: 768px) {
    .about-profile__image-area {
        width: 380px;
        height: 500px;
    }
}

.about-profile__image-container {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-profile__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--light-teal);
}

.about-profile__badge {
    position: absolute;
    background-color: var(--white);
    color: var(--dark);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    border: 1px solid var(--border);
}

.about-profile__badge span:first-child {
    color: var(--primary);
}

.about-profile__badge--top {
    top: 2rem;
    left: -1.5rem;
}

.about-profile__badge--bottom {
    bottom: 4rem;
    right: -1.5rem;
}

.about-profile__experience {
    position: absolute;
    bottom: -1.5rem;
    left: 2rem;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 0.85rem 1.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-profile__experience-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1;
}

.about-profile__experience-suffix {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
}

.about-profile__experience-label {
    font-size: 0.65rem;
    color: var(--secondary-light);
}

.about-profile__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-profile__title {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.about-profile__subtitle {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.about-profile__bio {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.about-profile__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.about-profile__stat {
    display: flex;
    flex-direction: column;
}

.about-profile__stat-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--dark);
}

.about-profile__stat-label {
    font-size: 0.8rem;
    color: var(--slate);
}

/* Education Timeline details */
.about-education__title {
    font-size: 2.25rem;
    margin: 1rem 0;
}

.about-education__description {
    font-size: 1.05rem;
}

.about-education__timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0 auto;
    padding-left: 2.5rem;
}

.about-education__timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 16px;
    width: 4px;
    height: 100%;
    background-color: rgba(0, 168, 181, 0.15); /* Semi-transparent track */
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 16px;
    width: 4px;
    height: 0%; /* Fills dynamically with scroll */
    background-color: var(--primary);
    z-index: 2;
    transition: height 0.1s ease-out;
}

.timeline-heartbeat {
    position: absolute;
    top: 0%;
    left: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
    animation: pulseHeart 1.5s infinite;
    z-index: 3;
    transition: top 0.1s ease-out, opacity 0.2s ease;
    opacity: 0; /* hidden until scroll starts */
}

@keyframes pulseHeart {
    0% { box-shadow: 0 0 0 0 rgba(0, 168, 181, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(0, 168, 181, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 168, 181, 0); }
}

.timeline-item {
    position: relative;
    margin-bottom: 3.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item__marker {
    position: absolute;
    top: 0;
    left: -2.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-item__marker span {
    font-size: 0.95rem;
}

.timeline-item__content {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.timeline-item__content:hover {
    border-color: var(--border-teal);
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.timeline-item__year {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--secondary);
    display: block;
    margin-bottom: 0.5rem;
}

.timeline-item__title {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.timeline-item__institution {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.timeline-item__description {
    font-size: 0.8rem;
}

/* Mentors Grid layout in about page */
.about-mentors__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
}

@media (min-width: 1024px) {
    .about-mentors__grid {
        grid-template-columns: 0.8fr 1.2fr;
    }
}

.about-mentors__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-mentors__title {
    font-size: 2.25rem;
    margin: 1rem 0;
}

.about-mentors__description {
    font-size: 1.05rem;
}

.about-mentors__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .about-mentors__cards {
        grid-template-columns: 1fr 1fr;
    }
}

.mentor-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary-light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.mentor-card__avatar span {
    font-size: 1.75rem;
}

.mentor-card__info {
    margin-bottom: 1rem;
}

.mentor-card__name {
    font-size: 1.1rem;
    margin-bottom: 0.15rem;
}

.mentor-card__specialty {
    font-size: 0.8rem;
    display: block;
    color: var(--slate);
}

.mentor-card__hospital {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
}

.mentor-card__description {
    font-size: 0.8rem;
    line-height: 1.6;
}

/* Philosophy Section in about page */
.about-philosophy__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-philosophy__quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--primary-light);
    margin: 1.5rem 0;
    line-height: 1.6;
}

.about-philosophy__author {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 3.5rem;
    letter-spacing: 1px;
}

.about-philosophy__values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

@media (min-width: 768px) {
    .about-philosophy__values {
        grid-template-columns: repeat(4, 1fr);
    }
}

.philosophy-value {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.philosophy-value span {
    color: var(--primary);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.philosophy-value h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.philosophy-value p {
    font-size: 0.75rem;
    color: var(--slate-light);
}

/* Specialty Cards inside About */
.about-specializations__title {
    text-align: center;
    font-size: 2.25rem;
    margin-top: 1rem;
    margin-bottom: 3.5rem;
}

.about-specializations__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-specializations__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.specialization-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-bounce);
}

.specialization-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-teal);
}

.specialization-card__icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.specialization-card__icon span {
    font-size: 1.5rem;
}

.specialization-card__title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.specialization-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.specialization-card__list li {
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.specialization-card__list li::before {
    content: 'chevron_right';
    font-family: 'Material Symbols Outlined';
    font-size: 1rem;
    color: var(--secondary);
}

.specialization-card__link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.specialization-card__link:hover {
    gap: 0.5rem;
}

/* Affiliations listing card style */
.about-affiliations__title {
    font-size: 2.25rem;
    margin: 1rem 0;
    text-align: center;
}

.about-affiliations__description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.about-affiliations__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

@media (min-width: 1024px) {
    .about-affiliations__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.affiliation-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.affiliation-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.affiliation-card span {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.affiliation-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.affiliation-card p {
    font-size: 0.75rem;
    color: var(--slate);
}

.about-affiliations__attachments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate);
    margin-top: 2rem;
}

.about-affiliations__attachments span {
    color: var(--primary);
}

/* Mobile Drawers / Bottom Sheets */
.services-sheet, .about-sheet, .faq-sheet {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    height: calc(var(--real-vh, 1vh) * 100);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

[x-cloak] {
    display: none !important;
}

.services-sheet__backdrop, .about-sheet__backdrop, .faq-sheet__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
}

.services-sheet__content, .about-sheet__content, .faq-sheet__content {
    position: relative;
    background-color: var(--white);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    width: 100%;
    max-height: 85vh;
    z-index: 2001;
    overflow-y: auto;
    box-shadow: 0 -10px 25px -5px rgb(0 0 0 / 0.15);
}

.services-sheet__inner, .about-sheet__inner, .faq-sheet__inner {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.services-sheet__handle, .about-sheet__handle, .faq-sheet__handle {
    display: flex;
    justify-content: center;
}

.services-sheet__handle-bar, .about-sheet__handle-bar, .faq-sheet__handle-bar {
    width: 40px;
    height: 5px;
    background-color: var(--border);
    border-radius: 3px;
}

.services-sheet__header, .about-sheet__header, .faq-sheet__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services-sheet__title, .about-sheet__title, .faq-sheet__title {
    font-size: 1.25rem;
}

.services-sheet__close, .about-sheet__close, .faq-sheet__close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--light);
    color: var(--slate);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Services Sheet items */
.services-sheet__services {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.services-sheet__card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-xl);
    background-color: var(--light);
    border: 1px solid var(--border);
}

.services-sheet__card--tangerine .services-sheet__card-icon {
    color: var(--tangerine);
    background-color: #fb923c10;
}

.services-sheet__card--sky .services-sheet__card-icon {
    color: var(--primary);
    background-color: var(--primary-light);
}

.services-sheet__card--ocean .services-sheet__card-icon {
    color: var(--secondary);
    background-color: var(--secondary-light);
}

.services-sheet__card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-sheet__card-icon span {
    font-size: 1.35rem;
}

.services-sheet__card-content {
    flex-grow: 1;
}

.services-sheet__card-title {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
}

.services-sheet__card-desc {
    display: block;
    font-size: 0.75rem;
}

.services-sheet__card-arrow {
    color: var(--slate-light);
}

.services-sheet__procedures-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--slate-light);
    margin-bottom: 0.5rem;
}

.services-sheet__procedures-scroll {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

.services-sheet__pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    background-color: var(--light-teal);
    border: 1px solid var(--border-teal);
    color: var(--primary);
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.services-sheet__pill-icon {
    font-size: 1.1rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.services-sheet__pill:active {
    background-color: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary-hover);
    transform: scale(0.97);
}

.services-sheet__view-all, .about-sheet__view-all, .faq-sheet__view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

/* About Sheet items */
.about-sheet__doctor {
    background: rgba(240, 250, 251, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 168, 181, 0.18);
    box-shadow: 0 4px 20px rgba(0, 168, 181, 0.05);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    display: flex;
    gap: 0.85rem;
    align-items: center;
}

.about-sheet__doctor-photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    object-fit: cover;
    background-color: var(--primary-light);
    flex-shrink: 0;
}

.about-sheet__doctor-info {
    display: flex;
    flex-direction: column;
}

.about-sheet__doctor-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.2;
}

.about-sheet__doctor-degrees {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--secondary);
    line-height: 1.2;
    margin-top: 0.15rem;
}

.about-sheet__doctor-spec {
    font-size: 0.7rem;
    color: var(--slate);
    line-height: 1.2;
    margin-top: 0.1rem;
}

.about-sheet__credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

.about-sheet__credential-card {
    background: var(--light-teal);
    border: 1px solid var(--border-teal);
    border-radius: var(--radius);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-sheet__credential-card span.material-symbols-outlined {
    color: #BA974A;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-sheet__credential-card-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    overflow: hidden;
}

.about-sheet__credential-card-label {
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-sheet__credential-card-detail {
    font-size: 0.65rem;
    color: var(--slate);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-sheet__stats-dark {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #00A7B3;
    border-radius: var(--radius-lg);
    padding: 0.5rem 0.25rem;
    text-align: center;
}

.about-sheet__stat-dark {
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.about-sheet__stat-dark:last-child {
    border-right: none;
}

.about-sheet__stat-dark-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
}

.about-sheet__stat-dark-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.about-sheet__quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.about-sheet__action-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.about-sheet__action-card span.material-symbols-outlined {
    color: var(--primary);
    font-size: 1.35rem;
    flex-shrink: 0;
}

.about-sheet__action-card span.action-arrow {
    margin-left: auto;
    font-size: 1rem;
    color: var(--slate-light);
    flex-shrink: 0;
}

/* Custom premium Patient Reviews card style matching mockup image */
.about-sheet__action-card--reviews {
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%) !important;
    border: 1.5px solid #fde68a !important; /* Soft gold border */
    border-radius: var(--radius-xl) !important; /* Extra rounded */
    padding: 0.85rem 1.25rem !important;
    gap: 1rem !important;
    box-shadow: var(--shadow-sm) !important;
}

.about-sheet__action-card--reviews:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: #fcd34d !important;
}

.about-sheet__reviews-svg {
    flex-shrink: 0;
}

.about-sheet__reviews-chevron {
    margin-left: auto;
    flex-shrink: 0;
    transition: var(--transition);
}

.about-sheet__action-card--reviews:hover .about-sheet__reviews-chevron {
    transform: translateX(4px);
}

.about-sheet__reviews-title {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: #0f172a !important; /* Dark text matching mockup */
    line-height: 1.2;
}

.about-sheet__action-card--gallery {
    grid-column: span 2;
    background: linear-gradient(135deg, #ffffff 0%, #f3e8ff 100%) !important;
    border: 1.5px solid #d8b4fe !important;
    border-radius: var(--radius-xl) !important;
    padding: 0.85rem 1.25rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    box-shadow: var(--shadow-sm) !important;
    transition: var(--transition-bounce) !important;
    height: auto !important;
}

.about-sheet__action-card--gallery:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: #c084fc !important;
}

.about-sheet__gallery-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background-color: #f3e8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #e9d5ff;
}

.about-sheet__gallery-icon-wrapper span {
    color: #7c3aed !important;
    font-size: 1.4rem !important;
}

.about-sheet__gallery-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex-grow: 1;
}

.about-sheet__gallery-title {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.2;
}

.about-sheet__gallery-desc {
    font-size: 0.78rem !important;
    color: #64748b !important;
    font-weight: 500 !important;
    line-height: 1.3;
    margin-top: 0.15rem;
}

.about-sheet__gallery-chevron {
    color: #7c3aed !important;
    font-size: 1.25rem !important;
    flex-shrink: 0;
    margin-left: auto;
}

.about-sheet__btn-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #00A7B3;
    color: var(--white);
    border-radius: var(--radius);
    padding: 0.6rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-sheet__btn-dark:active {
    background: #008892;
}

.about-sheet__btn-dark span.material-symbols-outlined {
    font-size: 1rem;
}

/* FAQ Sheet items */
.faq-sheet__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-sheet__item {
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.faq-sheet__item--open {
    border-color: var(--border-teal);
}

.faq-sheet__question {
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
}

.faq-sheet__icon {
    color: var(--slate-light);
    transition: var(--transition);
}

.faq-sheet__icon.rotated {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-sheet__answer {
    padding: 0 1rem 1rem 1rem;
    font-size: 0.8rem;
    border-top: 1px solid var(--light);
}

/* Mobile Sticky Bottom Nav */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 12px rgba(15, 23, 42, 0.05);
    z-index: 998;
    transition: transform 0.3s ease;
}

.bottom-nav.is-hidden {
    transform: translateY(calc(100% + 40px));
}

@media (min-width: 1024px) {
    .bottom-nav {
        display: none;
    }
}

.bottom-nav__inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 100%;
    align-items: center;
}

.bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--slate);
    position: relative;
}

.bottom-nav__item.is-active {
    color: var(--primary);
}

.bottom-nav__icon {
    font-size: 1.35rem;
    margin-bottom: 0.15rem;
}

.bottom-nav__label {
    font-size: 0.65rem;
    font-weight: 700;
}

.bottom-nav__indicator {
    position: absolute;
    top: 0;
    width: 32px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 0 0 2px 2px;
    opacity: 0;
    transition: var(--transition);
}

.bottom-nav__item.is-active .bottom-nav__indicator {
    opacity: 1;
}

.bottom-nav__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.bottom-nav__book {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(184, 151, 74, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -36px;
    z-index: 10;
    transition: var(--transition-bounce);
}

.bottom-nav__book.is-expanded {
    width: 140px;
    border-radius: 28px;
    background-color: var(--dark);
    box-shadow: var(--shadow-lg);
}

.bottom-nav__book-default {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-nav__book-default span {
    font-size: 1.5rem;
}

.bottom-nav__book-expanded {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
}

.bottom-nav__book-action {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-nav__book-action--whatsapp {
    color: #25d366;
}

.bottom-nav__book-action--call {
    color: var(--primary-light);
}

.bottom-nav__label--center {
    margin-top: 24px;
}

/* Double-back-to-exit pattern Toast style */
.exit-toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background-color: rgba(15, 23, 42, 0.9);
    color: var(--white);
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2005;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.exit-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Dynamic Entrance Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-35px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ==========================================================================
   Mobile Optimization Overrides
   ========================================================================== */
@media (max-width: 1023px) {
    /* Hide Floating WhatsApp and reposition Scroll Top */
    .whatsapp-btn {
        display: none !important;
    }
    
    .floating-buttons {
        bottom: 5.5rem !important;
        right: 1.25rem !important;
    }
    
    /* Make Hamburger Menu invisible */
    .header__mobile-btn {
        display: none !important;
    }
    
    /* Scale Mobile Bottom Nav */
    .bottom-nav {
        height: 70px !important;
    }
    
    .bottom-nav__icon span.material-symbols-outlined {
        font-size: 1.65rem !important;
    }
    
    .bottom-nav__label {
        font-size: 0.75rem !important;
    }
    
    .bottom-nav__label--center {
        margin-top: 30px !important;
    }
    
    .bottom-nav__book {
        width: 60px !important;
        height: 60px !important;
        top: -30px !important;
    }
    
    .bottom-nav__book-default span.material-symbols-outlined {
        font-size: 1.75rem !important;
    }
    
    .bottom-nav__book.is-expanded {
        width: 145px !important;
    }
    
    .services-sheet__content, .faq-sheet__content {
        height: auto !important;
        max-height: 85% !important;
        overflow-y: auto !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .about-sheet__content {
        height: auto !important;
        max-height: 85% !important;
        overflow-y: auto !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .services-sheet__content::-webkit-scrollbar,
    .about-sheet__content::-webkit-scrollbar,
    .faq-sheet__content::-webkit-scrollbar {
        display: none !important;
    }
    
    .services-sheet__inner, .faq-sheet__inner {
        padding: 1rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom, 0px)) 1.25rem !important;
        gap: 0.85rem !important;
        display: flex !important;
        flex-direction: column !important;
        min-height: 100% !important;
        box-sizing: border-box !important;
    }
    
    .services-sheet__services {
        gap: 0.5rem !important;
    }
    
    .services-sheet__card {
        padding: 0.65rem 0.85rem !important;
        gap: 0.75rem !important;
    }
    
    .services-sheet__card-icon {
        width: 38px !important;
        height: 38px !important;
        border-radius: var(--radius-md) !important;
    }
    
    .services-sheet__card-icon span {
        font-size: 1.15rem !important;
    }
    
    .services-sheet__card-title {
        font-size: 0.9rem !important;
    }
    
    .services-sheet__card-desc {
        font-size: 0.7rem !important;
    }
    
    .services-sheet__procedures-title {
        font-size: 0.75rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .services-sheet__procedures {
        margin-top: 0.25rem !important;
    }
    
    .services-sheet__pill {
        padding: 0.35rem 0.75rem !important;
        font-size: 0.75rem !important;
    }
    
    .services-sheet__view-all, .about-sheet__view-all, .faq-sheet__view-all {
        padding-top: 0.75rem !important;
        margin-top: 0.25rem !important;
        font-size: 0.85rem !important;
    }
    
    .about-sheet__inner {
        padding: 0.85rem 1.15rem calc(1rem + env(safe-area-inset-bottom, 0px)) 1.15rem !important;
        gap: 0.6rem !important;
        display: flex !important;
        flex-direction: column !important;
        min-height: auto !important;
        box-sizing: border-box !important;
    }
    
    .about-sheet__doctor {
        padding: 0.85rem !important;
        gap: 0.85rem !important;
    }
    
    .about-sheet__doctor-photo {
        width: 58px !important;
        height: 58px !important;
    }
    
    .about-sheet__doctor-name {
        font-size: 1.1rem !important;
    }
    
    .about-sheet__doctor-degrees {
        font-size: 0.8rem !important;
    }
    
    .about-sheet__doctor-spec {
        font-size: 0.75rem !important;
    }
    
    .about-sheet__credentials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important; /* Force exact same width */
        gap: 0.5rem !important;
    }
    
    .about-sheet__credential-card {
        padding: 0.45rem 0.65rem !important;
        gap: 0.55rem !important;
        height: 50px !important; /* Make card heights slightly taller for prominence */
        align-items: center !important;
        min-width: 0 !important;
        width: 100% !important;
    }
    
    .about-sheet__credential-card span.material-symbols-outlined {
        font-size: 1.25rem !important;
    }
    
    .about-sheet__credential-card-text {
        overflow: hidden !important;
        min-width: 0 !important;
        flex: 1 !important;
    }
    
    .about-sheet__credential-card-label {
        font-size: 0.8rem !important;
    }
    
    .about-sheet__credential-card-detail {
        font-size: 0.7rem !important;
    }
    
    .about-sheet__stats-dark {
        padding: 0.45rem 0.25rem !important;
        background-color: #00A7B3 !important; /* Teal background */
    }
    
    .about-sheet__stat-dark-number {
        font-size: 1.25rem !important;
        color: var(--white) !important;
    }
    
    .about-sheet__stat-dark-label {
        font-size: 0.65rem !important;
        color: rgba(255, 255, 255, 0.95) !important;
    }
    
    .about-sheet__quick-actions {
        gap: 0.5rem !important;
        align-items: center !important;
    }
    
    .about-sheet__action-card {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        height: 52px !important;
        padding: 0 0.75rem !important;
        font-size: 0.82rem !important;
        box-sizing: border-box !important;
        border-radius: var(--radius-lg) !important;
        border: 1px solid var(--border) !important;
        background: var(--white) !important;
    }
    
    .about-sheet__action-card span.material-symbols-outlined {
        font-size: 1.25rem !important;
    }
    
    /* Make both quick access cards exactly identical in size on mobile */
    .about-sheet__action-card--reviews {
        background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%) !important;
        border: 1px solid #fcd34d !important;
        padding: 0 0.75rem !important;
        gap: 0.5rem !important;
        height: 52px !important;
    }
    
    .about-sheet__reviews-svg {
        width: 28px !important;
        height: 28px !important;
    }
    
    .about-sheet__reviews-title {
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        line-height: 1.15 !important;
        margin: 0 !important;
    }
    
    .about-sheet__reviews-chevron {
        width: 16px !important;
        height: 16px !important;
        margin-left: auto !important;
    }
    
    .about-sheet__action-card--gallery {
        grid-column: span 2 !important;
        background: linear-gradient(135deg, #ffffff 0%, #f3e8ff 100%) !important;
        border: 1.5px solid #d8b4fe !important;
        border-radius: var(--radius-xl) !important;
        padding: 0.85rem 1.25rem !important;
        display: flex !important;
        align-items: center !important;
        gap: 1rem !important;
        box-shadow: var(--shadow-sm) !important;
        transition: var(--transition-bounce) !important;
        height: auto !important;
    }
    
    .about-sheet__action-card--gallery:active {
        transform: translateY(-1px) !important;
        box-shadow: var(--shadow-sm) !important;
        border-color: #c084fc !important;
    }
    
    .about-sheet__gallery-icon-wrapper {
        width: 38px !important;
        height: 38px !important;
        border-radius: 10px !important;
        background-color: #f3e8ff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        border: 1px solid #e9d5ff !important;
    }
    
    .about-sheet__gallery-icon-wrapper span {
        color: #7c3aed !important;
        font-size: 1.4rem !important;
    }
    
    .about-sheet__gallery-info {
        display: flex !important;
        flex-direction: column !important;
        text-align: left !important;
        flex-grow: 1 !important;
    }
    
    .about-sheet__gallery-title {
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        color: #0f172a !important;
        line-height: 1.2 !important;
    }
    
    .about-sheet__gallery-desc {
        font-size: 0.78rem !important;
        color: #64748b !important;
        font-weight: 500 !important;
        line-height: 1.3 !important;
        margin-top: 0.15rem !important;
    }
    
    .about-sheet__gallery-chevron {
        color: #7c3aed !important;
        font-size: 1.25rem !important;
        flex-shrink: 0 !important;
        margin-left: auto !important;
    }
    
    /* Style all bottom sheet view-all links and profile buttons as identical solid teal buttons */
    .services-sheet__view-all, .faq-sheet__view-all, .about-sheet__btn-dark {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        background-color: #00A7B3 !important; /* Brand Teal */
        color: var(--white) !important;
        border-radius: var(--radius) !important;
        padding: 0.75rem !important;
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        text-align: center !important;
        box-shadow: var(--shadow-sm) !important;
        transition: var(--transition) !important;
        border: none !important;
        margin-top: 0.25rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        flex-shrink: 0 !important;
    }
    
    .services-sheet__view-all:active, .faq-sheet__view-all:active, .about-sheet__btn-dark:active {
        background-color: #008892 !important;
    }
    
    .faq-sheet__list {
        gap: 0.5rem !important;
    }
    
    .faq-sheet__question {
        padding: 0.65rem 0.85rem !important;
        font-size: 0.85rem !important;
    }
    
    .faq-sheet__answer {
        padding: 0 0.85rem 0.65rem 0.85rem !important;
        font-size: 0.75rem !important;
    }

    /* 4-Step Wellness Process Mobile Layout (Vertical Timeline instead of horizontal scroll) */
    .process__full-width {
        overflow-x: hidden !important;
        padding: 1.5rem 0 !important;
    }
    
    .process__timeline {
        display: flex !important;
        flex-direction: column !important;
        min-width: auto !important;
        padding: 0 1.25rem !important;
        gap: 2rem !important;
    }
    
    .process__step {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        text-align: left !important;
        max-width: none !important;
        width: 100% !important;
        gap: 1.25rem !important;
        position: relative !important;
    }
    
    .process__step-icon {
        flex-shrink: 0 !important;
    }
    
    .process__step-content {
        margin-top: 0.25rem !important;
    }
    
    .process__connector {
        position: absolute !important;
        top: 70px !important;
        left: 33px !important; /* Center of the 70px wide icon */
        width: 3px !important;
        height: calc(100% + 2rem - 70px) !important;
        background-color: var(--border) !important;
        z-index: 1 !important;
    }
}

/* ==========================================================================
   REDESIGNED HOMEPAGE CUSTOM STYLES
   ========================================================================== */

/* Header Gold Button */
.header__cta--gold {
    background-color: var(--secondary) !important;
    box-shadow: var(--shadow-glow-gold) !important;
    color: var(--white) !important;
}
.header__cta--gold:hover {
    background-color: var(--secondary-hover) !important;
    transform: translateY(-2px);
    color: var(--white) !important;
}

/* 1. New Hero Section styling */
.new-hero {
    position: relative;
    padding: 8rem 0 4rem 0;
    background-color: #0b1a1d; /* Preserved dark background */
    color: var(--white);
    overflow: hidden;
}

.new-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.new-hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 26, 29, 0.95) 0%, rgba(15, 32, 35, 0.98) 100%);
}

.new-hero__glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
}

.new-hero__glow--primary {
    top: -50px;
    left: -100px;
    background-color: var(--primary);
}

.new-hero__glow--secondary {
    bottom: -100px;
    right: -100px;
    background-color: var(--secondary);
}

.new-hero .container {
    position: relative;
    z-index: 2;
}

.new-hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.new-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.new-hero__badge {
    background-color: rgba(0, 168, 181, 0.15);
    border: 1px solid rgba(0, 168, 181, 0.3);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.new-hero__title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.new-hero__title span.text-teal-highlight {
    color: var(--primary);
    background: linear-gradient(to right, #00c2cb, #00a8b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.new-hero__description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.new-hero__actions {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.new-hero__btn-outline {
    color: var(--white) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.new-hero__btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--white) !important;
    color: var(--white) !important;
}

.new-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.new-hero__stat {
    display: flex;
    flex-direction: column;
}

.new-hero__stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.new-hero__stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
}

/* Doctor badge default hidden */
.new-hero__doctor-badge {
    display: none;
}

/* Hero Image Card styling */
.new-hero__image-column {
    display: flex;
    justify-content: center;
    position: relative;
}

.new-hero__card {
    position: relative;
    width: 100%;
    max-width: 440px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.new-hero__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.new-hero__badge-experience {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(11, 26, 29, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 700;
}

.new-hero__badge-experience span.material-symbols-outlined {
    font-size: 1.1rem;
    color: var(--primary);
}

.new-hero__doctor-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(11, 26, 29, 0.95) 0%, rgba(11, 26, 29, 0.4) 70%, rgba(11, 26, 29, 0) 100%);
    backdrop-filter: blur(5px);
    padding: 3rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
}

.new-hero__doctor-details h3 {
    font-size: 1.35rem;
    color: var(--white);
    font-weight: 700;
}

.new-hero__doctor-details p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.new-hero__badge-focused {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: #00a8b5;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px -5px rgba(0, 168, 181, 0.5);
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(1); box-shadow: 0 10px 20px -5px rgba(0, 168, 181, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 10px 25px 0px rgba(0, 168, 181, 0.7); }
    100% { transform: scale(1); box-shadow: 0 10px 20px -5px rgba(0, 168, 181, 0.5); }
}

.new-hero__badge-focused .focused-number {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.new-hero__badge-focused .focused-label {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
    margin-top: 0.15rem;
    line-height: 1.1;
    padding: 0 0.25rem;
}

/* 2. Meet Our Expert styling */
.expert-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.expert-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: center;
}

.expert-image-col {
    display: flex;
    justify-content: center;
}

.expert-image-card {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    max-width: 400px;
}

.expert-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.expert-brain-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: var(--white);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.expert-brain-badge span {
    font-size: 1.6rem;
    color: var(--secondary);
}

.expert-signature {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.expert-signature span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-style: italic;
    color: var(--dark);
    font-size: 1rem;
}

.expert-content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.expert-section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.expert-title {
    font-size: 2.5rem;
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.expert-title .credentials-badge {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    background-color: var(--primary-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    margin-left: 0.5rem;
    vertical-align: middle;
}

.expert-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.expert-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate);
    margin-bottom: 2rem;
}

.expert-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    margin-bottom: 2rem;
}

.expert-stat-box {
    background-color: var(--light);
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.expert-stat-box:hover {
    border-color: var(--primary-light);
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

.expert-stat-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.expert-stat-box p {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--slate);
    line-height: 1.2;
}

.expert-checklists {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

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

.expert-check-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

.expert-check-item .check-icon {
    color: var(--primary);
    font-size: 1.3rem;
}

.btn-know-more {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: var(--shadow-glow-gold);
}

.btn-know-more:hover {
    background-color: var(--secondary-hover);
    color: var(--white) !important;
}

/* 3. Our Services styling */
.services-section {
    padding: 4rem 0;
    background-color: var(--light-teal);
}

.services-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.services-title span.teal-highlight {
    color: var(--primary);
}

.services-subtitle {
    font-size: 1.1rem;
    color: var(--slate);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-block {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.service-block:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 168, 181, 0.2);
}

.service-block__icon-wrapper {
    background-color: var(--primary-light);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.service-block:hover .service-block__icon-wrapper {
    background-color: var(--primary);
}

.service-block__icon-wrapper span {
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-block:hover .service-block__icon-wrapper span {
    color: var(--white);
}

.service-block__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.service-block__desc {
    font-size: 0.85rem;
    color: var(--slate);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.service-block__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.service-block__list li {
    font-size: 0.75rem;
    color: var(--primary) !important;
    background-color: var(--primary-light);
    border: 1px solid var(--border-teal);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    transition: var(--transition);
}

.service-block__list li:hover {
    background-color: var(--primary);
    color: var(--white) !important;
    border-color: var(--primary);
}

.service-block__list li::before {
    display: none;
}

.service-block__link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition);
}

.service-block__link span {
    font-size: 1.1rem;
}

.service-block__link:hover {
    gap: 0.5rem;
}

/* Outpatient clinics sub-section styling */
.outpatient-section {
    padding-top: 0;
    text-align: center;
}

.outpatient-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2.5rem;
}

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

.outpatient-pill {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 1.25rem 1rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.outpatient-pill:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.outpatient-pill .pill-icon {
    font-size: 2.4rem;
    color: #BA974A;
}

.outpatient-pill span:not(.pill-icon) {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
}

.outpatient-actions {
    display: flex;
    justify-content: center;
}

.btn-all-services {
    background-color: var(--secondary);
    color: var(--white);
    padding: 1rem 2.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow-gold);
}

.btn-all-services:hover {
    background-color: var(--secondary-hover);
    color: var(--white) !important;
}

/* 4. Why Choose Us styling */
.why-section {
    padding: 4rem 0;
    background-color: var(--white);
    overflow-x: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    overflow: hidden;
}

.why-content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-width: 0;
    overflow: hidden;
}

.why-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.why-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.why-title span.text-gold-highlight {
    color: var(--secondary);
}

.why-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate);
    margin-bottom: 2rem;
}

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.why-card-item {
    background-color: var(--light-teal);
    border: 1px solid var(--border-teal);
    padding: 1.25rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.why-card-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
}

.why-card-icon {
    color: var(--primary);
    font-size: 1.75rem;
    flex-shrink: 0;
}

.why-card-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

.btn-why-cta {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
    padding: 1rem 2rem;
}

.btn-why-cta:hover {
    background-color: var(--primary-hover);
    color: var(--white) !important;
}

/* Why Illustration Card styling */
.why-card-col {
    display: flex;
    justify-content: center;
}

.why-illustration-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 2.5rem;
    align-items: center;
    width: 100%;
    max-width: 580px;
    box-sizing: border-box;
}

.why-stats-part {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-stat-item {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.why-stat-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.15rem;
    line-height: 1.1;
}

.why-stat-item p {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--slate);
    line-height: 1.3;
}

.why-image-part {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brain-illustration-img {
    width: 100%;
    height: auto;
    max-width: 285px;
    object-fit: contain;
}

/* 5. Our Excellence styling */
.excellence-section {
    padding: 4rem 0;
    background-color: #004D56;
    overflow-x: hidden;
}

.excellence-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.excellence-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.excellence-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.excellence-title span.teal-highlight {
    color: var(--secondary);
}

.excellence-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
}

.excellence-gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    grid-template-rows: 240px 240px;
    gap: 1.5rem;
    width: 100%;
}

.excellence-gallery-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.03);
}

.excellence-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.excellence-gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 20, 25, 0.85) 0%, rgba(0, 20, 25, 0.3) 50%, transparent 100%);
    z-index: 1;
    transition: opacity var(--transition-slow);
}

.excellence-gallery-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
    transition: transform var(--transition-slow);
}

.excellence-gallery-card__tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.35rem;
}

.excellence-gallery-card__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

/* Hover effects */
.excellence-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 168, 181, 0.25);
    border-color: rgba(0, 168, 181, 0.4);
}

.excellence-gallery-card:hover img {
    transform: scale(1.06);
}

.excellence-gallery-card:hover::after {
    background: linear-gradient(to top, rgba(0, 20, 25, 0.95) 0%, rgba(0, 20, 25, 0.4) 60%, transparent 100%);
}

/* Card spans */
.excellence-gallery-card--1 {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.excellence-gallery-card--2 {
    grid-column: 2 / span 2;
    grid-row: 1;
}

.excellence-gallery-card--3 {
    grid-column: 2;
    grid-row: 2;
}

.excellence-gallery-card--4 {
    grid-column: 3;
    grid-row: 2;
}

.excellence-gallery-card--5 {
    grid-column: 4;
    grid-row: 1 / span 2;
}

/* Quote card specific styling */
.excellence-gallery-card--quote {
    background: linear-gradient(135deg, rgba(0, 168, 181, 0.15) 0%, rgba(184, 151, 74, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    text-align: center;
    box-sizing: border-box;
}

.excellence-gallery-card--quote::after {
    display: none; /* No image gradient overlay needed */
}

.excellence-gallery-quote-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.excellence-gallery-quote-content .quote-icon {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    font-variation-settings: 'FILL' 1;
}

.excellence-gallery-quote-content .quote-text {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
    margin: 0 0 0.75rem 0;
    font-style: italic;
}

.excellence-gallery-quote-content .quote-author {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.excellence-gallery-actions {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .excellence-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 1.25rem;
    }
    
    .excellence-gallery-card--1 {
        grid-column: 1;
        grid-row: auto;
        height: 340px;
    }
    
    .excellence-gallery-card--2 {
        grid-column: 1 / span 2;
        grid-row: auto;
        height: 240px;
    }
    
    .excellence-gallery-card--3 {
        grid-column: 1;
        grid-row: auto;
        height: 240px;
    }
    
    .excellence-gallery-card--4 {
        grid-column: 2;
        grid-row: auto;
        height: 240px;
    }
    
    .excellence-gallery-card--5 {
        grid-column: 2;
        grid-row: auto;
        height: 340px;
    }
}

@media (max-width: 575px) {
    .excellence-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .excellence-gallery-card {
        grid-column: 1 !important;
        grid-row: auto !important;
        height: 280px !important;
    }
}

/* 6. Our Approach styling */
.approach-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.approach-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.approach-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.approach-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.approach-subtitle {
    font-size: 1.1rem;
    color: var(--slate);
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-bottom: 2.5rem;
}

.approach-line {
    position: absolute;
    top: 45px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: var(--border-teal);
    z-index: 1;
}

.approach-step-card {
    position: relative;
    z-index: 2;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.approach-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 168, 181, 0.2);
}

.step-icon-wrapper {
    position: relative;
    background-color: var(--primary-light);
    border: none;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.approach-step-card:hover .step-icon-wrapper {
    transform: scale(1.05);
}

.step-icon-wrapper span.material-symbols-outlined {
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.step-num {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #0F2D4A;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0F2D4A;
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    max-width: 100%;
}

.step-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    margin-top: auto; /* Push lists to the bottom of the card */
}

.step-bullets li {
    font-size: 0.85rem;
    color: var(--slate);
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.step-bullets li:last-child {
    margin-bottom: 0;
}

.step-bullets li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 6px;
    width: 6px;
    height: 6px;
    background-color: #E07A5F;
    border-radius: 50%;
}

.approach-actions {
    display: flex;
    justify-content: center;
}

.btn-journey-cta {
    background-color: var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow);
}

.btn-journey-cta:hover {
    background-color: var(--primary-hover);
    color: var(--white) !important;
}

/* 7. Clinic Locations styling */
.locations-section {
    padding: 4rem 0;
    background-color: var(--light-teal);
}

.locations-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.locations-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.locations-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.locations-subtitle {
    font-size: 1.1rem;
    color: var(--slate);
}

.locations-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

.locations-left-col {
    display: flex;
    flex-direction: column;
}

.locations-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.locations-map-pin {
    background-color: var(--primary-light);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.locations-map-pin span {
    font-size: 2rem;
    color: var(--primary);
}

.locations-info h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.locations-general-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate);
    margin-bottom: 2rem;
}

.notice-box {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    width: 100%;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.notice-item:last-child {
    margin-bottom: 0;
}

.notice-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.notice-item .notice-icon {
    font-size: 1.4rem;
}

.notice-item:first-child .notice-icon {
    color: var(--secondary);
}

.notice-item:last-child .notice-icon {
    color: #ef4444;
}

.locations-right-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-clinic-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    text-align: left;
}

.location-clinic-card .clinic-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: rgba(0, 168, 181, 0.15);
}

.clinic-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.clinic-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.clinic-detail span.material-symbols-outlined {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

.clinic-detail span:not(.material-symbols-outlined) {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--slate);
    line-height: 1.4;
}

.clinic-card-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-directions {
    flex: 1;
    font-size: 0.85rem;
}

.btn-book-now {
    flex: 1;
    font-size: 0.85rem;
    background-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.btn-book-now:hover {
    background-color: var(--primary-hover);
    color: var(--white) !important;
}

.locations-bottom-actions {
    display: flex;
    justify-content: center;
    margin-top: 3.5rem;
}

.btn-all-locations {
    background-color: var(--secondary);
    color: var(--white);
    padding: 1rem 2.5rem;
    box-shadow: var(--shadow-glow-gold);
}

.btn-all-locations:hover {
    background-color: var(--secondary-hover);
    color: var(--white) !important;
}

/* 8. FAQ & Questions styling */
.new-faq-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.new-faq-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: flex-start;
}

.new-faq-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: sticky;
    top: 100px;
    text-align: left;
}

.new-faq-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.new-faq-left-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.new-faq-left-title span.teal-highlight {
    color: var(--primary);
}

.new-faq-left-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--slate);
    margin-bottom: 2rem;
}

.new-faq-contact-card {
    background-color: var(--light-teal);
    border: 1px solid var(--border-teal);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
}

.support-icon {
    font-size: 2.5rem;
    color: var(--primary);
}

.new-faq-contact-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.new-faq-contact-card p {
    font-size: 0.8rem;
    color: var(--slate);
}

.support-link {
    color: var(--primary);
    font-weight: 700;
}

.new-faq-right-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.faq-accordion-item {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-accordion-item:hover,
.faq-accordion-item.is-open {
    border-color: rgba(0, 168, 181, 0.2);
    box-shadow: var(--shadow-md);
}

.faq-accordion-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.faq-accordion-question span:not(.accordion-arrow) {
    padding-right: 1rem;
}

.accordion-arrow {
    color: var(--slate-light);
    transition: transform 0.3s ease;
    font-size: 1.5rem;
}

.accordion-arrow.rotated {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-accordion-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.6;
    border-top: 1px solid transparent;
}

.faq-accordion-item.is-open .faq-accordion-answer {
    border-top-color: var(--border);
}

.faq-more-action {
    margin-top: 1.5rem;
    display: flex;
}

.btn-faq-all {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.btn-faq-all:hover {
    background-color: var(--primary-hover);
    color: var(--white) !important;
}


/* ==========================================
   MOBILE & TABLET RESPONSIVE CUSTOM OVERRIDES
   ========================================== */

@media (max-width: 1199px) {
    .new-hero__title {
        font-size: 2.8rem;
    }
    .expert-grid {
        gap: 3rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .outpatient-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .new-hero__image-column {
        display: none;
    }
    .new-hero__doctor-badge {
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.12);
        padding: 0.75rem 1.25rem 0.75rem 0.75rem;
        border-radius: 12px;
        margin-bottom: 2rem;
        text-align: left;
        margin-left: 0;
        margin-right: auto;
    }
    .new-hero__doctor-badge-photo {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--primary);
        flex-shrink: 0;
    }
    .new-hero__doctor-badge-info {
        display: flex;
        flex-direction: column;
    }
    .new-hero__doctor-badge-name {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--white);
        line-height: 1.2;
    }
    .new-hero__doctor-badge-title {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.2;
        margin-top: 0.15rem;
    }
    .new-hero__grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: left;
    }
    .new-hero__content {
        align-items: flex-start;
    }
    .new-hero__description {
        margin-left: 0;
        margin-right: auto;
        text-align: left;
    }
    .expert-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        overflow: hidden;
    }
    .why-content-col {
        align-items: flex-start;
        text-align: left;
        max-width: 100%;
        overflow: hidden;
    }
    .why-illustration-card {
        margin: 0;
    }
    .approach-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .approach-line {
        display: none;
    }
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .locations-info, .locations-column--info {
        align-items: flex-start;
        text-align: left;
    }
    .new-faq-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .new-faq-left-col {
        position: relative;
        top: 0;
        align-items: flex-start;
        text-align: left;
    }

    /* Force left-alignment for all headers and sections on mobile/tablet */
    .services-header,
    .why-header,
    .excellence-header,
    .approach-header,
    .locations-header,
    .new-faq-header,
    .testimonials-header,
    .section-title-centered,
    .testimonials-header-flex {
        text-align: left !important;
        align-items: flex-start !important;
    }

    /* Services Page Hero Watermark Mobile overrides */
    .services-page-hero__bg-watermark {
        position: absolute !important;
        right: 50% !important;
        top: 50% !important;
        transform: translate(50%, -50%) !important;
        width: 85% !important;
        max-width: 320px !important;
    }
    .services-page-hero__watermark-img {
        opacity: 0.16 !important;
    }
}

@media (max-width: 767px) {
    .new-hero__title {
        font-size: 2.2rem;
    }
    .new-hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    .new-hero__actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .new-hero__actions .btn {
        width: 100%;
    }
    .expert-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    .expert-title .credentials-badge {
        display: inline-block;
        margin-top: 0.5rem;
        margin-left: 0;
    }
    .expert-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .expert-checklists {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    .expert-check-item {
        background-color: transparent;
        padding: 0;
        border-radius: 0;
        justify-content: flex-start;
        text-align: left;
        width: auto;
        box-shadow: none;
    }
    .expert-check-item span,
    .expert-check-item .check-icon {
        color: var(--primary) !important;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .outpatient-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .approach-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .location-clinic-card {
        padding: 1.5rem;
    }
    .clinic-card-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    .clinic-card-actions .btn {
        width: 100%;
    }
}

@media (max-width: 479px) {
    .why-illustration-card {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        text-align: center;
    }
    .why-stats-part {
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
    }
    .why-stat-item h3 {
        font-size: 1.8rem;
    }
}

/* Mobile section padding overrides for compact layouts */
@media (max-width: 767px) {
    .expert-section,
    .services-section,
    .why-section,
    .excellence-section,
    .approach-section,
    .locations-section,
    .new-faq-section,
    .patient-testimonials-section,
    .google-reviews-section,
    .gallery-section,
    .trust-pillars-section,
    .reviews-bottom-cta {
        padding: 3rem 0 !important;
    }
}

/* ==========================================================================
   Reviews Page Custom Styles
   ========================================================================== */

.material-symbols-outlined.filled {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.reviews-hero {
    position: relative;
    padding: 10rem 0 6rem 0;
    background-color: #0b1a1d;
    color: var(--white);
    overflow: hidden;
}

.reviews-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: auto auto;
    grid-template-areas:
        "text image"
        "stats image";
    column-gap: 4rem;
    row-gap: 2.5rem;
    align-items: center;
}

.reviews-hero__text {
    grid-area: text;
}

.reviews-hero__image-col {
    grid-area: image;
}

.reviews-hero__stats-col {
    grid-area: stats;
}

.reviews-hero__trust-badge {
    display: none;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.25rem 0.5rem 0.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.trust-badge__profiles {
    display: flex;
    align-items: center;
}

.trust-badge__avatar {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    border: 2px solid #0b1a1d !important;
    object-fit: cover !important;
    display: block !important;
}

.trust-badge__avatar:not(:first-child) {
    margin-left: -12px !important;
}

.trust-badge__info {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.trust-badge__star {
    color: #ffb800;
    font-size: 1.1rem;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.trust-badge__text .text-highlight {
    color: var(--secondary);
    font-weight: 700;
}

.reviews-hero__title {
    font-size: 3.5rem;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.reviews-hero__title span.text-teal-highlight {
    color: var(--primary);
    background: linear-gradient(to right, #00c2cb, #00a8b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reviews-hero__description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    max-width: 600px;
}

.reviews-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.reviews-hero__stat-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    transition: var(--transition);
}

.reviews-hero__stat-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.reviews-hero__stat-item .stat-icon {
    font-size: 2rem;
    color: var(--secondary);
    background: rgba(186, 151, 74, 0.1);
    border: 1px solid rgba(186, 151, 74, 0.2);
    padding: 0.5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-hero__stat-text {
    display: flex;
    flex-direction: column;
}

.reviews-hero__stat-text .stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.reviews-hero__stat-text .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.reviews-hero__grid-wrapper {
    position: relative;
    padding: 1rem;
}

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

.reviews-hero__photo-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-color: #15272a;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
}

.reviews-hero__photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.reviews-hero__photo-card:hover img {
    transform: scale(1.05);
}

.reviews-hero__floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    color: var(--dark);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border);
    z-index: 10;
    animation: floatBadge 4s ease-in-out infinite alternate;
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.reviews-hero__floating-badge .stars-row {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.4rem;
}

.reviews-hero__floating-badge .stars-row span {
    color: #ffb800;
    font-size: 1.3rem;
}

.reviews-hero__floating-badge .badge-rating {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.reviews-hero__floating-badge .badge-subtext {
    font-size: 0.8rem;
    color: var(--slate);
    font-weight: 500;
}

/* Patient Testimonials Section */
.patient-testimonials-section {
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--light-teal);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-teal);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-teal);
}

.testimonial-card .quote-icon {
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    line-height: 1;
}

.testimonial-card .quote-icon span {
    font-size: 3rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating span {
    color: #ffb800;
    font-size: 1.2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
}

.author-treatment {
    font-size: 0.85rem;
    color: var(--slate-light);
    font-weight: 500;
}

/* Google Reviews Section */
.google-reviews-section {
    background-color: var(--light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.google-reviews__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.5fr;
    gap: 3.5rem;
    align-items: center;
}

.google-reviews__rating-col {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.google-brand-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.google-brand-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--slate);
}

.google-reviews__big-score {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.big-score-num {
    font-size: 4rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.big-score-total {
    font-size: 1.5rem;
    color: var(--slate-light);
    font-weight: 600;
}

.google-reviews__stars-row {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.google-reviews__stars-row span {
    color: #ffb800;
    font-size: 1.8rem;
}

.google-reviews__total-text {
    font-size: 0.95rem;
    color: var(--slate);
    margin-bottom: 2rem;
    font-weight: 500;
}

.google-reviews__write-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    background: transparent;
    transition: var(--transition);
    width: 100%;
}

.google-reviews__write-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.google-reviews__breakdown-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-breakdown-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.breakdown-label {
    width: 60px;
    font-size: 0.9rem;
    color: var(--slate);
    font-weight: 600;
    text-align: right;
}

.breakdown-bar {
    flex-grow: 1;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.breakdown-bar-fill {
    height: 100%;
    background: #ffb800;
    border-radius: 4px;
}

.breakdown-percentage {
    width: 45px;
    font-size: 0.9rem;
    color: var(--slate);
    font-weight: 600;
    text-align: left;
}

.google-reviews__feed-col {
    position: relative;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.feed-nav-wrapper {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    display: flex;
    gap: 0.5rem;
}

.feed-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--light);
    border: 1px solid var(--border);
    color: var(--slate);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feed-nav-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.google-feed-review-card {
    display: flex;
    flex-direction: column;
}

.feed-review-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-right: 5rem;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
}

.reviewer-name-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.review-time-text {
    font-size: 0.8rem;
    color: var(--slate-light);
}

.feed-card-google-icon {
    margin-left: auto;
}

.feed-review-card-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.feed-review-card-stars span {
    color: #ffb800;
    font-size: 1.2rem;
}

.feed-review-card-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--slate);
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.feed-review-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.feed-review-like-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--slate-light);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.feed-review-like-btn span {
    font-size: 1.1rem;
}

.feed-review-like-btn:hover {
    color: var(--primary);
}

.feed-review-readmore {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

.feed-review-readmore span {
    font-size: 1.1rem;
}

.feed-review-readmore:hover {
    color: var(--primary-hover);
}

/* Clinic Gallery Section (Masonry Layout) */
.gallery-section {
    background-color: var(--white);
}

.masonry-gallery-wrapper {
    margin-top: 3rem;
}

.reviews-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.reviews-gallery-item {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    background: var(--white);
}

.reviews-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-slow);
    display: block;
}

.reviews-gallery-caption {
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    border-top: 1px solid var(--border-light);
    background: var(--white);
    transition: var(--transition);
}

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

.reviews-gallery-item:hover img {
    transform: scale(1.03);
}

.reviews-gallery-item:hover .reviews-gallery-caption {
    color: var(--primary);
    background-color: var(--light-teal);
}

/* Gallery View Button */
.gallery-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.gallery-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.gallery-view-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.gallery-view-btn span.material-symbols-outlined {
    font-size: 1.25rem;
    transition: var(--transition);
}

/* Media Queries for Reviews Gallery Grid */
@media (max-width: 991px) {
    .reviews-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    .reviews-gallery-item img {
        height: 180px;
    }
}

@media (max-width: 575px) {
    .reviews-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .reviews-gallery-item img {
        height: 140px;
    }
}

/* Trust Pillars Section */
.trust-pillars-section {
    background-color: var(--light-teal);
    border-top: 1px solid var(--border-teal);
    border-bottom: 1px solid var(--border-teal);
}

.trust-pillars-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.trust-pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-slow);
}

.trust-pillar-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary);
}

.trust-pillar-icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border: 1px solid var(--border-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.trust-pillar-item:hover .trust-pillar-icon-box {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(360deg);
}

.trust-pillar-icon-box span {
    font-size: 1.8rem;
}

.trust-pillar-title {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.trust-pillar-desc {
    font-size: 0.85rem;
    color: var(--slate);
    line-height: 1.5;
}

/* Reviews Bottom CTA */
.reviews-bottom-cta {
    padding: 6rem 0;
    background: var(--white);
}

.reviews-bottom-cta__card {
    background: linear-gradient(135deg, #0b1a1d 0%, #15272a 100%);
    border-radius: var(--radius-2xl);
    padding: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.reviews-bottom-cta__card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
}

.reviews-bottom-cta__card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: var(--secondary);
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
}

.reviews-bottom-cta__left {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.reviews-bottom-cta__icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
}

.reviews-bottom-cta__brain-icon {
    width: 44px;
    height: 44px;
}

.reviews-bottom-cta__text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.reviews-bottom-cta__title {
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 800;
    line-height: 1.3;
}

.reviews-bottom-cta__subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.reviews-bottom-cta__right {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.reviews-bottom-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--secondary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow-gold);
    transition: var(--transition-bounce);
}

.reviews-bottom-cta__btn:hover {
    background: var(--secondary-hover);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px 0 rgba(184, 151, 74, 0.4);
}

.reviews-bottom-cta__btn span.material-symbols-outlined {
    font-size: 1.3rem;
}

/* Reviews Page Section Utilities */
.section-tag-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-teal);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--dark);
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--slate);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Reviews Page Media Queries */
@media (max-width: 991px) {
    .reviews-hero {
        padding: 8rem 0 4rem 0;
    }
    .reviews-hero__grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "text"
            "image"
            "stats";
        gap: 2.5rem;
        text-align: left;
    }
    .reviews-hero__text {
        grid-area: text;
        display: flex;
        flex-direction: column;
    }
    
    .reviews-hero__trust-badge {
        display: inline-flex;
    }
    .reviews-hero__image-col {
        grid-area: image;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    .reviews-hero__floating-badge {
        display: none;
    }
    .reviews-hero__stats-col {
        grid-area: stats;
        width: 100%;
    }
    .reviews-hero__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .google-reviews__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .google-reviews__breakdown-col {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .trust-pillars-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .reviews-bottom-cta__card {
        flex-direction: column;
        text-align: left;
        padding: 3rem 2rem;
        gap: 2.5rem;
    }
    .reviews-bottom-cta__left {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .reviews-hero__title {
        font-size: 2.3rem;
    }
    .reviews-hero__description {
        font-size: 1rem;
        margin-bottom: 0;
    }
    .reviews-hero__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .reviews-hero__stat-item {
        width: 100%;
        max-width: none;
    }
    .reviews-hero__floating-badge {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .trust-pillars-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .reviews-bottom-cta__title {
        font-size: 1.4rem;
    }
    .reviews-bottom-cta__subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 479px) {
    .trust-pillars-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Home Page Locations & Testimonials-FAQ Improvement Styles
   ========================================================================== */

/* Clinic Locations Section Redesign */
.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.locations-column {
    display: flex;
    flex-direction: column;
}

.locations-column--info {
    text-align: left;
}

.locations-column--info .locations-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.locations-column--info .locations-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.locations-column--info .locations-subtitle {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.locations-illustration-wrapper {
    margin-top: auto;
    width: 100%;
}

.locations-illustration {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* Compact Location Cards styling overrides */
.location-clinic-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    position: relative;
    text-align: left;
    transition: var(--transition-slow);
}

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

.location-clinic-card__badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 38px;
    height: 38px;
    background: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border: 1px solid rgba(186, 151, 74, 0.2);
}

.location-clinic-card__badge span {
    font-size: 1.25rem;
}

.location-clinic-card .clinic-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.25rem;
    padding-right: 2.5rem;
}

.location-clinic-card .clinic-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.location-clinic-card .clinic-detail:last-of-type {
    margin-bottom: 0;
}

.location-clinic-card .clinic-detail span.material-symbols-outlined {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.location-clinic-card .clinic-detail span.text-primary {
    color: var(--primary);
}

.location-clinic-card .clinic-detail span.text-tangerine {
    color: var(--tangerine);
}

.location-clinic-card .clinic-detail span:not(.material-symbols-outlined) {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--slate);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-clinic-card .clinic-detail span {
    white-space: nowrap;
}

.location-clinic-card .clinic-card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.location-clinic-card .btn-directions {
    flex: 1;
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: transparent;
    color: var(--slate);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.location-clinic-card .btn-directions span {
    font-size: 1rem;
    color: var(--slate-light);
}

.location-clinic-card .btn-directions:hover {
    background: var(--light);
    border-color: var(--slate-light);
}

.location-clinic-card .btn-book-now {
    flex: 1;
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
    background-color: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.location-clinic-card .btn-book-now:hover {
    background-color: var(--primary-hover);
    color: var(--white) !important;
}

/* Notice lines below Card 1 */
.locations-notice-under {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 0.5rem;
}

.locations-notice-quote {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.6;
    color: var(--primary);
    text-align: left;
    font-style: italic;
    margin: 0;
    padding: 0.85rem 1.15rem;
    background-color: var(--light-teal);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius-sm);
    box-sizing: border-box;
    width: 100%;
}

.locations-notice-line {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.locations-notice-line .notice-bullet-icon {
    font-size: 1.1rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.locations-notice-line span:not(.material-symbols-outlined) {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--slate);
}

/* Action lines below Card 2 */
.locations-action-under {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-start;
}

.btn-all-locations-under {
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.btn-all-locations-under:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    color: var(--white) !important;
}

.btn-all-locations-under span {
    font-size: 1.1rem;
}

/* Split Testimonials & FAQ Section */
.testimonials-faq-section {
    padding: 6rem 0;
    background-color: var(--white);
    border-top: 1px solid var(--border);
}

.testimonials-faq-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: flex-start;
}

.testimonials-faq-column {
    display: flex;
    flex-direction: column;
}

.section-tag-left-wrapper {
    margin-bottom: 0.75rem;
}

.section-title-left {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 2.5rem;
}

.section-title-left .sub-highlight-text {
    color: var(--primary);
}

/* Testimonials Slider styling */
.testimonials-slider-box-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.testimonial-box-card {
    background: var(--light-teal);
    border: 1px solid var(--border-teal);
    padding: 1.75rem 2rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    width: 100%;
    margin: 0;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    transition: var(--transition-slow);
}

.testimonial-box-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.testimonial-box-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.testimonial-box-stars span {
    color: #ffb800;
    font-size: 1.25rem;
}

.testimonial-box-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate);
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-box-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid var(--border-teal);
    padding-top: 1rem;
}

.testimonial-box-author-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--primary-light);
    flex-shrink: 0;
}

.testimonial-box-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    text-align: left;
}

.testimonial-box-author-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.testimonial-box-author-treatment {
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.2;
}

.slider-arrow {
    display: none !important;
}

/* Testimonial Card Fixed Height Wrapper & Animations */
.testimonial-card-fixed-wrapper {
    position: relative;
    height: 230px !important;
    overflow: hidden;
    display: block !important;
}

.testimonial-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.75rem 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Slide Fade Transition Classes */
.ts-fade-enter {
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.ts-fade-enter-start {
    opacity: 0;
    transform: translateX(25px);
}
.ts-fade-enter-end {
    opacity: 1;
    transform: translateX(0);
}
.ts-fade-leave {
    transition: opacity 0.5s ease-in, transform 0.5s ease-in;
}
.ts-fade-leave-start {
    opacity: 1;
    transform: translateX(0);
}
.ts-fade-leave-end {
    opacity: 0;
    transform: translateX(-25px);
}

/* Blue Pagination Dots */
.testimonial-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 1.5rem;
    width: 100%;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 168, 181, 0.2); /* Light theme blue/teal tint */
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-dot.active {
    width: 24px;
    height: 8px;
    border-radius: 4px;
    background-color: var(--primary); /* Theme primary blue/teal */
}

.testimonial-dot:hover:not(.active) {
    background-color: rgba(0, 168, 181, 0.4);
}

/* FAQ Side styling */
.faq-accordion-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.faq-accordion-item {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.faq-accordion-item:hover {
    border-color: var(--primary);
}

.faq-accordion-item.is-open {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-accordion-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
}

.faq-accordion-question span:not(.material-symbols-outlined) {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
}

.faq-accordion-question .accordion-arrow {
    color: var(--slate-light);
    transition: transform 0.3s ease;
}

.faq-accordion-question .accordion-arrow.rotated {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-accordion-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-accordion-answer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--slate);
}

.faq-more-action {
    display: flex;
    justify-content: flex-start;
}

.btn-faq-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.btn-faq-all:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    color: var(--white) !important;
}

.btn-faq-all span {
    font-size: 1.1rem;
}

/* Responsiveness overrides for the new elements */
@media (max-width: 991px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .locations-column--info {
        text-align: center;
        align-items: center;
    }
    .locations-illustration {
        max-width: 200px;
    }
    .locations-notice-under {
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .locations-action-under {
        justify-content: center;
    }
    
    .testimonials-faq-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 767px) {
    .locations-title {
        font-size: 2rem;
    }
    .section-title-left {
        font-size: 2rem;
        text-align: left;
        margin-bottom: 2rem;
    }
    .testimonials-side .section-tag-left-wrapper,
    .faq-side .section-tag-left-wrapper {
        display: flex;
        justify-content: flex-start;
    }
    .testimonial-box-card {
        padding: 1.5rem !important;
        min-height: 150px !important;
        margin: 0 !important;
    }
    .faq-more-action {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .location-clinic-card .clinic-detail {
        flex-wrap: wrap;
    }
    .location-clinic-card .clinic-detail span:not(.material-symbols-outlined) {
        white-space: normal;
    }
}

/* Grouped Section Padding Overrides for Compact Layouts and Minimal Spacing */
.expert-section,
.services-section,
.why-section,
.excellence-section,
.approach-section,
.locations-section,
.testimonials-faq-section {
    padding: 2.25rem 0 !important;
}

.new-hero {
    padding: 6.5rem 0 3.5rem 0 !important;
}

/* Grouped Mobile padding overrides for extra compact spacing */
@media (max-width: 767px) {
    .expert-section,
    .services-section,
    .why-section,
    .excellence-section,
    .approach-section,
    .locations-section,
    .new-faq-section,
    .testimonials-faq-section,
    .patient-testimonials-section,
    .google-reviews-section,
    .gallery-section,
    .trust-pillars-section,
    .reviews-bottom-cta {
        padding: 1.75rem 0 !important;
    }
    
    .new-hero {
        padding: 5rem 0 2.5rem 0 !important;
    }
}

/* Redesigned Top Reviews Button and Flex Header */
.testimonials-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    width: 100%;
}

.testimonials-header-flex .section-title-left {
    margin-bottom: 0 !important;
}

.btn-view-all-reviews-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    border-radius: 50px;
    border: 2px solid var(--primary);
    color: var(--white);
    background: var(--primary); /* filled background by default */
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition-bounce);
    margin-bottom: 0.25rem;
    margin-right: calc(44px + 1rem); /* aligned with the card, not extending past it */
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.btn-view-all-reviews-top:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--white) !important;
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-view-all-reviews-top span.material-symbols-outlined {
    font-size: 1.15rem;
    transition: transform 0.3s ease;
}

.btn-view-all-reviews-top:hover span.material-symbols-outlined {
    transform: translateX(4px);
}

@media (max-width: 767px) {
    .testimonials-header-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    .btn-view-all-reviews-top {
        margin-bottom: 0;
        margin-right: 0;
        align-self: center;
    }
}

/* ==========================================================================
   Services Page Redesign Styles (Wavy Images, Compact Cards, Slot Buttons)
   ========================================================================== */

.services-page-hero {
    position: relative;
    padding: 7.5rem 0 2rem 0;
    background: var(--white);
    overflow: hidden;
    border-bottom: none;
}

.badge-pill-service {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
}

.services-page-hero__centered-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.services-page-hero__title-centered {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white) !important;
    line-height: 1.25;
    margin-top: 1rem;
    margin-bottom: 1.25rem;
}

.services-page-hero__title-centered span,
.services-page-hero__title-centered .text-teal-highlight {
    color: #00d2e0 !important;
}

.services-page-hero__description-centered {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 760px;
    margin: 0 auto;
}

.services-page-hero__bg-watermark {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 35%;
    max-width: 420px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 1;
}

.services-page-hero__watermark-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0.28;
    mix-blend-mode: screen;
}

/* Outpatient Programs Grid and Compact Cards */
.services-outpatient-section {
    padding: 2rem 0 4rem 0;
    background: var(--white);
}

.outpatient-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem auto 3rem auto;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--tangerine);
    white-space: nowrap;
}

.outpatient-divider::before,
.outpatient-divider::after {
    content: '';
    width: 60px;
    height: 1.5px;
}

.outpatient-divider::before {
    background: linear-gradient(to left, var(--tangerine), transparent);
}

.outpatient-divider::after {
    background: linear-gradient(to right, var(--tangerine), transparent);
}

.specialization-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: row; /* Horizontal split layout */
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    position: relative;
    height: 100%;
    padding: 0 !important; /* Force no padding inside card container */
}

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

.specialization-card__image-part {
    flex: 0 0 38%;
    width: 38%;
    position: relative;
    overflow: hidden;
}

.specialization-card__image-part img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.specialization-card:hover .specialization-card__image-part img {
    transform: scale(1.05);
}

.specialization-card__content-part {
    flex: 1;
    padding: 1rem 1rem 0.6rem 1.15rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative; /* Context for absolute positioning of icon */
}

.specialization-card__header {
    display: block; /* No longer flex-container, letting title text sit on top and flow naturally */
    margin-bottom: 0.65rem; /* Clean minimal space between heading and first bullet */
}

.specialization-card__icon {
    position: absolute;
    left: 1.15rem;
    top: 1.1rem; /* Align icon nicely with the first line of the title */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
}

.specialization-card__icon span {
    font-size: 1.85rem;
}

.specialization-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin: 0;
    padding-left: 4.35rem; /* Space for absolute icon on the left (60px icon + 9.6px gap) */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.specialization-card__list {
    margin: 0 0 0.6rem 0;
    padding: 0;
    padding-left: 4.35rem; /* align bullet text with title text (60px icon + 9.6px gap) */
    list-style: none;
}

.specialization-card__list li {
    font-size: 0.82rem;
    color: var(--slate);
    line-height: 1.4;
    margin-bottom: 0.25rem;
    position: relative;
    padding-left: 0.8rem;
    white-space: normal;
}

/* Remove secondary bullet icons (secondary gold arrows) */
.specialization-card__list li::before {
    content: none !important;
}

.specialization-card__list li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 4.5px;
    height: 4.5px;
    background-color: var(--primary); /* Keep bullets blue/teal globally */
    border-radius: 50%;
}

.btn-card-slot {
    display: flex;
    justify-content: space-between; /* text on left, arrow on right */
    align-items: center;
    color: var(--primary);
    background: transparent;
    border: none !important;
    border-top: 1px solid #f1f5f9 !important; /* light horizontal border above button */
    padding: 0.6rem 1rem 0.6rem 1.15rem;
    margin: auto -1rem -0.6rem -1.15rem; /* flush container pull */
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-card-slot:hover {
    color: var(--primary-hover);
    background: var(--light-teal); /* light background on hover */
}

.btn-card-slot span.material-symbols-outlined {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-card-slot:hover span.material-symbols-outlined {
    transform: translateX(4px);
}

/* Card custom icon colors */
.specialization-card#mental-health .specialization-card__icon { background: var(--primary-light); color: var(--primary); }
.specialization-card#de-addiction .specialization-card__icon { background: #eafbf2; color: #2e7d32; }
.specialization-card#psychosexual .specialization-card__icon { background: var(--secondary-light); color: var(--secondary); }
.specialization-card#headache .specialization-card__icon { background: #f3e5f5; color: #7b1fa2; }
.specialization-card#sleep .specialization-card__icon { background: #e3f2fd; color: #1565c0; }
.specialization-card#epilepsy .specialization-card__icon { background: #ede7f6; color: #5e35b1; }
.specialization-card#child .specialization-card__icon { background: #e0f7fa; color: #00838f; }
.specialization-card#elderly .specialization-card__icon { background: #fff3e0; color: #ef6c00; }
.specialization-card#women .specialization-card__icon { background: #fce4ec; color: #c2185b; }

/* Title Divider Ornaments (Gold lines with central leaf) */
.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: -2.5rem auto 3.5rem auto; /* sits just below subtitle */
    max-width: 250px;
    width: 100%;
}

.title-divider::before,
.title-divider::after {
    content: '';
    flex: 1;
    height: 1.5px;
}

.title-divider::before {
    background: linear-gradient(to left, var(--tangerine), transparent);
}

.title-divider::after {
    background: linear-gradient(to right, var(--tangerine), transparent);
}

.title-divider-icon {
    color: var(--tangerine);
    font-size: 1.25rem;
    display: inline-block;
    vertical-align: middle;
}

/* Left-aligned title divider for split column layout */
.title-divider--left {
    margin-left: 0;
    justify-content: flex-start;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.title-divider--left::before {
    display: none;
}

/* Counseling Services Section Redesign */
.counseling-services-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.counseling-horizontal-bar {
    background-color: #f0fafb; /* Light teal background */
    border: 1px solid var(--border-teal);
    border-radius: var(--radius-2xl);
    display: flex;
    flex-direction: row;
    overflow: hidden;
    width: 100%;
    align-items: stretch;
    box-shadow: 0 4px 20px rgba(0, 168, 181, 0.04);
}

.counseling-bar__image-col {
    flex: 0 0 16%;
    width: 16%;
    position: relative;
    overflow: hidden;
}

.counseling-bar__image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.counseling-bar__header-col {
    flex: 0 0 28%;
    width: 28%;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-right: 1px solid var(--border-teal);
}

.counseling-bar__badge-wrapper {
    margin-bottom: 0.75rem;
}

.counseling-bar__title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 0.75rem;
    text-align: center;
}

.counseling-bar__title span {
    color: var(--primary) !important;
}

.counseling-bar__subtitle {
    font-size: 0.82rem;
    color: var(--slate);
    line-height: 1.5;
    max-width: 250px;
    margin: 0 auto;
}

.counseling-bar__list-col {
    flex: 0 0 26%;
    width: 26%;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border-teal);
}

.counseling-bar__list-col--last {
    flex: 1;
    border-right: none;
    position: relative;
    padding-right: 7rem; /* Make space for faint brain outline logo */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.counseling-bar__list-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1.5px solid var(--border-teal);
}

.counseling-bar__list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.counseling-bar__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.counseling-bar__list li .check-icon {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.counseling-bar__list li span {
    font-size: 0.78rem;
    color: var(--slate);
    line-height: 1.4;
}

.counseling-bar__list li strong {
    color: var(--dark);
}

.counseling-bar__faint-logo {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 100px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}

.counseling-bar__faint-logo img {
    width: 100%;
    height: auto;
}

/* Responsiveness overrides for counseling horizontal bar */
@media (max-width: 1200px) {
    .counseling-horizontal-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .counseling-bar__image-col {
        width: 100%;
        height: 250px;
        flex: none;
    }
    .counseling-bar__header-col {
        width: 100%;
        flex: none;
        border-right: none;
        border-bottom: 1px solid var(--border-teal);
        padding: 2rem;
    }
    .counseling-bar__list-col {
        width: 100%;
        flex: none;
        border-right: none;
        border-bottom: 1px solid var(--border-teal);
        padding: 2rem;
    }
    .counseling-bar__list-col--last {
        border-bottom: none;
        padding-right: 2rem;
    }
    .counseling-bar__faint-logo {
        display: none;
    }
}



/* Outpatient Program Cards Responsiveness Overrides */
@media (min-width: 768px) {
    .about-specializations__grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
    }
    .specialization-card {
        flex-direction: row !important;
    }
    .specialization-card__image-part {
        flex: 0 0 38% !important;
        width: 38% !important;
        height: auto !important;
    }
    .specialization-card__content-part {
        padding: 1rem 1rem 0.6rem 1.15rem !important;
    }
}

@media (max-width: 767px) {
    .outpatient-divider {
        gap: 0.75rem !important;
        margin-bottom: 2rem !important;
    }
    .outpatient-divider::before,
    .outpatient-divider::after {
        width: 30px !important;
    }
    .about-specializations__grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    .specialization-card {
        flex-direction: column !important;
    }
    .specialization-card__image-part {
        width: 100% !important;
        height: 200px !important;
        flex: none !important;
    }
    .specialization-card__content-part {
        padding: 1.25rem !important;
        position: relative !important;
    }
    .specialization-card__icon {
        left: 1.25rem !important;
        top: 1.35rem !important; /* Adjust absolute position relative to mobile padding */
    }
    .specialization-card__title {
        padding-left: 4.35rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        -webkit-line-clamp: unset !important;
        overflow: visible !important;
    }
    .specialization-card__list {
        padding-left: 4.35rem !important;
    }
    .specialization-card__list li {
        display: block !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    .btn-card-slot {
        margin: auto -1.25rem -1.25rem -1.25rem !important;
        padding: 0.8rem 1.25rem !important;
        font-size: 0.82rem !important;
    }
}

/* ==========================================================================
   About Page Redesign Styles (Spacious, Premium & Dark Hero Layout)
   ========================================================================== */

/* 1. Hero Section */
.about-hero-section {
    padding: 7.5rem 0 5rem 0;
    background: linear-gradient(135deg, #0b2225 0%, #051416 100%);
    overflow: hidden;
    position: relative;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(0, 168, 181, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-section .badge-pill-service {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-hero-grid-full {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
    padding-left: calc((100vw - 1200px) / 2 + 1rem); /* Aligns left side with central container */
}

.about-hero__title {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
}

.about-hero__desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 2.5rem;
}

.about-hero__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.75rem;
}

.about-hero__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.about-hero__feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-hero__feature-icon span {
    font-size: 1.4rem;
}

.about-hero__feature-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary); /* Gold accent for contrast */
    margin-bottom: 0.25rem;
}

.about-hero__feature-text p {
    font-size: 0.88rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}

.about-hero__image-area {
    position: relative;
    width: 100%;
}

.about-hero__image-wrapper {
    border-radius: 20rem 0 0 20rem; /* Elegant curved left boundary */
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    height: 520px;
    width: 100%;
}

.about-hero__image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-hero__experience-card {
    position: absolute;
    bottom: 2rem;
    left: -2.5rem; /* Overlaps the curve beautifully */
    background: linear-gradient(135deg, #0b2225 0%, #061113 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 5;
    color: var(--white);
    max-width: 260px;
}

.about-hero__experience-card .exp-num {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.about-hero__experience-card .exp-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.about-hero__experience-card .exp-text strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}

.about-hero__experience-card .exp-text span {
    font-size: 0.75rem;
    color: var(--slate-light);
}

/* 2. Stats Bar Section */
.about-stats-section {
    padding: 4rem 0;
    background: var(--white);
    position: relative;
    z-index: 10;
}

.about-stats-bar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 2.5rem 3rem;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.about-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    justify-content: center;
}

.about-stat-item:not(:last-child) {
    border-right: 1px solid var(--border);
}

.about-stat-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-stat-icon span {
    font-size: 1.5rem;
}

.about-stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    margin: 0;
}

.about-stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate);
    margin: 0;
    margin-top: 0.1rem;
}

/* 3. Mission & Values Section */
.about-mission-values-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.about-mv-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    align-items: flex-start;
}

@keyframes floatZen {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.about-mission-card {
    background: radial-gradient(circle at 100% 0%, rgba(0, 168, 181, 0.04) 0%, var(--white) 60%);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-2xl);
    border-top-right-radius: 4rem; /* Adjusted curve for compact size */
    padding: 2.25rem 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 290px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-bounce);
}

.about-mission-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 10px 30px rgba(0, 168, 181, 0.06);
    border-color: rgba(0, 168, 181, 0.3);
    border-left-color: var(--primary);
}

.about-mission-text {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--dark);
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.about-mission-card__image {
    align-self: flex-end;
    width: 160px;
    height: auto;
}

.about-mission-card__image img {
    width: 100%;
    height: auto;
    animation: floatZen 5s ease-in-out infinite;
}

.about-values-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem 2rem;
}

.about-value-item {
    display: flex;
    gap: 1.25rem;
    transition: var(--transition-bounce);
}

.about-value-item:hover {
    transform: translateX(4px);
}

.about-value-icon {
    width: 42px;
    height: 42px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 168, 181, 0.08);
    transition: var(--transition-bounce);
}

.about-value-item:hover .about-value-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 168, 181, 0.2);
}

.about-value-icon span {
    font-size: 1.25rem;
}

.about-value-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.35rem;
}

.about-value-text p {
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.5;
    margin: 0;
}

/* 4. Why Choose Us Section */
.about-why-choose-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-why-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4.5rem;
    align-items: center;
}

.about-why__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.about-why__desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--slate);
    margin: 0;
}

.about-why-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.about-why-card {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.75rem 1.35rem;
    text-align: center;
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-why-card:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.about-why-card__icon {
    width: 54px;
    height: 54px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.about-why-card__icon span {
    font-size: 1.8rem;
}

.about-why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.about-why-card p {
    font-size: 0.8rem;
    color: var(--slate);
    line-height: 1.4;
    margin: 0;
}

/* Make Why Choose Us Cards align correctly (3 in first row, 2 centered in second row) */
@media (min-width: 992px) {
    .about-why-cards-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .about-why-card:nth-child(1) { grid-column: span 2; }
    .about-why-card:nth-child(2) { grid-column: span 2; }
    .about-why-card:nth-child(3) { grid-column: span 2; }
    .about-why-card:nth-child(4) { grid-column: 2 / span 2; } /* Shift row 2 to center */
    .about-why-card:nth-child(5) { grid-column: 4 / span 2; }
}

/* 5. Meet Our Founder Section */
.about-founder-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.about-founder-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4.5rem;
    align-items: center;
}

.about-founder__image-col {
    display: flex;
    justify-content: center;
}

.about-founder__image-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    max-width: 420px;
    width: 100%;
}

.about-founder__image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.about-founder__signature {
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;
    font-family: 'Georgia', cursive, italic, serif;
    font-size: 2.25rem;
    font-weight: 600;
    font-style: italic;
    color: #0b2225;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255,255,255,0.4);
    opacity: 0.85;
    pointer-events: none;
}

.about-founder__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-top: 1rem;
    margin-bottom: 0.35rem;
}

.about-founder__subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.about-founder__bio {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--slate);
    margin-bottom: 2rem;
}

.about-founder__stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.about-founder__stat h3 {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.15rem;
}

.about-founder__stat span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--slate);
    line-height: 1.3;
    display: block;
}

.about-founder__checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-founder__checklist li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--dark);
    font-weight: 600;
}

.about-founder__checklist li .check-icon {
    color: var(--primary);
    font-size: 1.25rem;
}

/* 6. Our Journey Section */
.about-journey-section {
    padding: 5rem 0;
    background: var(--white);
    overflow: hidden;
}

.about-journey__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 4rem;
}

.about-journey__title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-top: 1rem;
}

.about-journey__timeline-container {
    position: relative;
    padding: 3rem 0;
}

.about-journey__timeline-line {
    position: absolute;
    top: calc(3rem + 24px); /* centered with the icon row */
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-light), var(--primary), var(--secondary), var(--primary-light));
    z-index: 1;
}

.about-journey__timeline-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.about-journey__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-journey__text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-journey__icon {
    width: 48px;
    height: 48px;
    background-color: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.about-journey__item:hover .about-journey__icon {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.15);
    box-shadow: var(--shadow-glow);
}

.about-journey__item:nth-child(even) .about-journey__icon {
    border-color: var(--secondary);
    color: var(--secondary);
}

.about-journey__item:nth-child(even):hover .about-journey__icon {
    background-color: var(--secondary);
    color: var(--white);
}

.about-journey__icon span {
    font-size: 1.35rem;
}

.about-journey__year {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
    margin-top: 1.25rem;
    margin-bottom: 0.35rem;
}

.about-journey__item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.about-journey__item-desc {
    font-size: 0.78rem;
    color: var(--slate);
    line-height: 1.4;
    max-width: 180px;
    margin: 0 auto;
}

/* 7. Our Environment Section */
.about-environment-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.about-env-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4.5rem;
    align-items: center;
}

.about-env__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-top: 1rem;
    margin-bottom: 1.25rem;
}

.about-env__desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--slate);
    margin-bottom: 1.75rem;
}

.about-env__checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.about-env__checklist li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--dark);
    font-weight: 600;
}

.about-env__checklist li .check-icon {
    color: var(--primary);
    font-size: 1.25rem;
}

.about-env__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.8rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-sm);
}

.about-env__btn:hover {
    background-color: var(--primary-hover);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.about-env__btn span.material-symbols-outlined {
    font-size: 1.15rem;
    transition: transform 0.3s ease;
}

.about-env__btn:hover span.material-symbols-outlined {
    transform: translateX(4px);
}

.about-env-image-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.25rem;
    align-items: stretch;
}

.about-env-image--large {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.about-env-image--large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-env-image--stacked {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-env-image--small {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    flex: 1;
}

.about-env-image--small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 8. Book Appointment CTA Section */
.about-cta-section {
    padding: 3rem 0 5rem 0;
    background: var(--white);
}

.about-cta-card {
    background: linear-gradient(135deg, #0b2225 0%, #061113 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-2xl);
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.about-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(0, 168, 181, 0.08) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(184, 151, 74, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.about-cta-content {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    position: relative;
    z-index: 2;
}

.about-cta-icon-wrapper {
    width: 54px;
    height: 54px;
    background-color: rgba(0, 168, 181, 0.12);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-cta-icon-wrapper span {
    font-size: 1.65rem;
}

.about-cta-text h3 {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.about-cta-text h3 strong {
    color: var(--primary);
    font-weight: 800;
}

.about-cta-text p {
    font-size: 0.9rem;
    color: var(--slate-light);
    margin: 0;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--tangerine);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.85rem 1.85rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 15px rgba(186, 151, 74, 0.2);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.about-cta-btn:hover {
    background-color: var(--secondary-hover);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(186, 151, 74, 0.35);
}

.about-cta-btn span {
    font-size: 1.15rem;
}

/* ==========================================================================
   About Page Responsiveness Overrides
   ========================================================================== */

@media (max-width: 991px) {
    .about-hero-grid-full {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .about-hero__image-area {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .about-hero__image-wrapper {
        border-radius: var(--radius-2xl); /* Normal border radius on tablet/mobile */
        height: 380px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .about-hero__experience-card {
        left: -1rem;
    }

    .about-mv-grid,
    .about-why-grid,
    .about-founder-grid,
    .about-env-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .about-stats-bar {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .about-stat-item {
        border-right: none !important;
        padding-bottom: 0.5rem;
    }
    
    .about-journey__timeline-line {
        display: none;
    }
    
    .about-journey__timeline-items {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-journey__item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 1.5rem;
        background: #f8fafc;
        padding: 1.5rem;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border);
    }

    .about-journey__text-content {
        align-items: flex-start;
        text-align: left;
    }

    .about-journey__year {
        margin-top: 0 !important;
    }
    
    .about-journey__item-desc {
        max-width: 100%;
        margin: 0;
    }
    
    .about-env-image-grid {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-cta-card {
        flex-direction: column;
        text-align: left;
        gap: 2rem;
        padding: 2.5rem 2rem;
        align-items: flex-start;
    }
    
    .about-cta-content {
        flex-direction: column;
        gap: 1.25rem;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .about-hero-grid-full {
        padding: 4rem 1.5rem 2.5rem 1.5rem;
        gap: 2.5rem;
    }

    .about-hero__title {
        font-size: 2rem;
    }

    .about-hero__experience-card {
        position: relative;
        left: auto;
        bottom: auto;
        margin: -2.5rem auto 1.5rem auto; /* Overlaps bottom center of image wrapper */
        width: calc(100% - 2rem);
        max-width: 280px;
        justify-content: center;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }

    .about-hero__features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-hero__feature {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 0.75rem;
    }
    
    .about-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1.25rem;
        padding: 1.5rem 1.25rem;
    }
    
    .about-stat-item {
        border-right: none !important;
        border-bottom: none !important;
        padding-bottom: 0;
    }
    
    .about-stat-item:nth-child(5) {
        grid-column: span 2;
    }
    
    .about-mission-card {
        border-top-right-radius: var(--radius-2xl);
        min-height: auto;
        padding: 2rem 1.5rem;
    }
    
    .about-mission-text {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-why__title,
    .about-founder__title,
    .about-journey__title,
    .about-env__title {
        font-size: 2rem;
    }
    
    .about-why-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }
    
    .about-founder__stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .about-founder__checklist {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .about-env-image-grid {
        grid-template-columns: 1fr;
    }
    
    .about-env-image--stacked {
        flex-direction: row;
    }
    
    .about-env-image--small {
        height: 150px;
    }
    
    .about-cta-text h3 {
        font-size: 1.15rem;
    }
}

.text-teal-highlight {
    color: var(--primary) !important;
}

/* ==========================================
   ABOUT PAGE REDESIGN STYLES (EXACT MATCH)
   ========================================== */

.about-redesign-section {
    padding: 5rem 0;
    background-color: var(--white);
    font-family: var(--font-body);
}

.about-redesign-section--compact {
    padding: 2.5rem 0;
}

.about-redesign-section.bg-light {
    background-color: var(--light);
}

.about-redesign-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-redesign-container--wide {
    max-width: 1440px;
}

/* Badge Pill */
.about-redesign-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--light-teal);
    border: 1px solid var(--border-teal);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.about-redesign-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
}

/* Section Title */
.about-redesign-title {
    font-size: 2.75rem;
    color: var(--dark);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-redesign-title span {
    color: var(--primary);
}

.about-redesign-subtitle {
    font-size: 1.125rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 800px;
}

/* Section 1: Hero Grid */
.about-redesign-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about-redesign-hero-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.about-redesign-hero-badge-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.about-redesign-hero-badge-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-teal);
}

.about-redesign-hero-badge-icon {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.gold-medal-icon,
.about-redesign-gold-medal-icon,
.about-redesign-section.about-hero .about-redesign-hero-badge-icon.gold-medal-icon,
.about-redesign-section.about-hero .about-redesign-hero-badge-icon.about-redesign-gold-medal-icon {
    color: #eab308 !important;
}

.about-redesign-hero-badge-title {
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
}

.about-redesign-hero-badge-desc {
    color: var(--slate);
    font-size: 0.85rem;
}

/* Curvy Image Area */
.about-redesign-hero-image-col {
    position: relative;
    height: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Curve SVG Container */
.about-redesign-curve-wrapper {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.about-redesign-curve-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-redesign-doctor-tag {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    color: var(--white);
    text-align: center;
    min-width: 280px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.about-redesign-doctor-tag h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
}

.about-redesign-doctor-tag p {
    color: var(--slate-light);
    font-size: 0.85rem;
    margin-top: 0.15rem;
}

/* Section 2: Trust & Education Grid Layout */
.about-redesign-trust-education-wrapper {
    display: grid;
    grid-template-columns: 0.74fr 1.26fr;
    gap: 3.5rem;
    align-items: stretch;
}

.about-redesign-trust-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-redesign-trust-subheader {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.about-redesign-title-viren {
    font-size: 2.5rem;
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.about-redesign-trust-degree-viren {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tangerine);
    margin-bottom: 1rem;
}

.about-redesign-teal-line {
    width: 45px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.about-redesign-trust-bio-viren {
    color: var(--slate);
    line-height: 1.7;
    font-size: 0.98rem;
    margin-bottom: 2.5rem;
}

/* Stats Row: Center aligned, with grey divider vertical lines */
.about-redesign-trust-stats-bar-vertical {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: auto;
}

.about-redesign-trust-stat-item-vertical {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.about-redesign-trust-stat-item-vertical:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background-color: var(--border);
}

.about-redesign-trust-stat-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.about-redesign-trust-stat-icon-wrapper .trust-stat-icon-v {
    font-size: 1.75rem;
    color: var(--primary);
}

.about-redesign-trust-stat-number-v {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.about-redesign-trust-stat-label-v {
    font-size: 0.825rem;
    color: var(--slate);
    font-weight: 600;
    line-height: 1.3;
}

/* Right Column (Education Big Card) styling */
.about-redesign-education-card-wrapper {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 1.75rem 2.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.about-redesign-education-card-header-v {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.about-redesign-education-card-title-v {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    position: relative;
    padding-bottom: 0.5rem;
}

.about-redesign-education-card-title-v::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

/* Top part inside card */
.about-redesign-education-top-grid-v {
    display: grid;
    grid-template-columns: 1.12fr auto 0.88fr;
    align-items: stretch;
    gap: 1.5rem;
}

.about-redesign-vertical-divider-v {
    width: 1px;
    height: 100%;
    background-color: var(--border);
    margin: 0 auto;
}

/* Timeline Layout (Border-Left connecting dots exactly) */
.about-redesign-timeline-container-v {
    position: relative;
    padding-left: 0;
    display: flex;
    flex-direction: column;
}

.about-redesign-timeline-item-v {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-left: 4.5rem; /* Horizontal alignment of the line */
    padding-left: 1.5rem;
}

.about-redesign-timeline-item-v:not(:last-child) {
    padding-bottom: 2.5rem; /* Perfect gap between the items */
}

.about-redesign-timeline-item-v:not(:last-child)::before {
    content: '';
    position: absolute;
    left: -1px; /* Align with center of 18px dot (-10px + 9px = -1px) */
    top: 13px; /* Center of dot */
    height: 100%;
    width: 2px;
    background-color: var(--border-teal);
    z-index: 1;
}

.about-redesign-timeline-item-v:last-child {
    padding-bottom: 0;
}

.about-redesign-timeline-year-v {
    position: absolute;
    left: -4.5rem;
    width: 3.5rem;
    text-align: right;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary);
    top: 2px;
}

.about-redesign-timeline-dot-v {
    position: absolute;
    left: -10px; /* Centered exactly on the 2px border-left (-9px radius - 1px border offset) */
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--white);
    border: 4px solid var(--primary);
    z-index: 2;
}

.about-redesign-timeline-text-v {
    padding-left: 0.25rem;
}

.about-redesign-timeline-title-v {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.about-redesign-timeline-desc-v {
    font-size: 0.825rem;
    color: var(--slate);
    line-height: 1.45;
}

/* Awards Achievements Card on Right */
.about-redesign-award-box-v {
    background-color: var(--white);
    border: 1px solid #f6eedc;
    border-radius: var(--radius-xl);
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(186, 151, 74, 0.08);
    height: 100%;
    justify-content: center;
}

.about-redesign-award-badge-v {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbf7ef 0%, #f1e4c7 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-redesign-award-icon-v {
    font-size: 2.75rem;
    color: var(--tangerine);
}

.about-redesign-award-text-v h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.about-redesign-award-text-v p {
    font-size: 0.85rem;
    color: var(--slate);
    line-height: 1.4;
}

.about-redesign-award-text-v p strong {
    color: var(--primary);
    font-weight: 700;
}

/* Bottom Row (Clinical Experience & Professional Association side-by-side) */
.about-redesign-education-bottom-grid-v {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-redesign-exp-association-card-v {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-redesign-exp-association-card-v:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-teal);
}

.about-redesign-card-icon-box-v {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background-color: var(--light-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-redesign-card-icon-box-v .card-icon-v {
    font-size: 1.75rem;
    color: var(--primary);
}

.about-redesign-card-text-box-v {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-redesign-card-text-box-v h4 {
    font-size: 1.025rem;
    font-weight: 800;
    color: var(--dark);
}

.about-redesign-card-text-box-v p {
    font-size: 0.825rem;
    color: var(--slate);
    line-height: 1.4;
}

/* Section 3: Specialties & Expertise */
.about-redesign-specialties-layout {
    display: grid;
    grid-template-columns: 1.2fr 1.3fr;
    gap: 2rem;
    background-color: #004D56;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    box-shadow: 0 10px 30px -10px rgba(0, 77, 86, 0.3);
    align-items: stretch;
}

.about-redesign-specialties-layout .reveal-right {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 2rem;
}

.about-redesign-specialties-heading-v {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.about-redesign-specialties-heading-v span {
    color: hsl(41, 45%, 51%);
}

.about-redesign-specialties-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.about-redesign-specialties-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-redesign-specialties-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.about-redesign-specialties-item span.check-icon {
    color: hsl(41, 45%, 51%) !important;
    font-size: 1.25rem;
}

.about-redesign-brain-circle-v {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: none;
}

/* Glassmorphic Expertise Cards inside dark layout */
.about-redesign-specialties-layout .about-redesign-expertise-card {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-redesign-specialties-layout .about-redesign-expertise-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: hsl(41, 45%, 51%);
    box-shadow: 0 0 15px rgba(184, 151, 74, 0.25);
}

.about-redesign-specialties-layout .about-redesign-expertise-icon {
    background-color: rgba(255, 255, 255, 0.12);
    color: hsl(41, 45%, 51%);
}

.about-redesign-specialties-layout .about-redesign-expertise-card:hover .about-redesign-expertise-icon {
    background-color: hsl(41, 45%, 51%);
    color: #004D56;
}

.about-redesign-specialties-layout .about-redesign-expertise-title {
    color: var(--white);
}

.about-redesign-brain-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

/* Expertise Grid */
.about-redesign-expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.about-redesign-expertise-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0.75rem 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-slow);
}

.about-redesign-expertise-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.about-redesign-expertise-icon {
    font-size: 1.65rem;
    color: var(--primary);
    background-color: var(--light-teal);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.about-redesign-expertise-card:hover .about-redesign-expertise-icon {
    background-color: var(--primary);
    color: var(--white);
}

.about-redesign-expertise-title {
    font-size: 0.825rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

/* Section Divider Heading */
.about-redesign-divider-heading {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.about-redesign-divider-heading::before,
.about-redesign-divider-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--border);
    max-width: 200px;
}

.about-redesign-divider-heading h2 {
    font-size: 2.25rem;
    color: var(--dark);
    font-weight: 800;
}

.about-redesign-divider-heading h2 span {
    color: var(--primary);
}

/* Section 4: Practice & Consultation Details Header */
.about-redesign-practice-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

.about-redesign-practice-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background-color: rgba(13, 148, 136, 0.06);
    border: 1px solid rgba(13, 148, 136, 0.18);
    border-radius: 100px;
    color: #0d9488;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-redesign-practice-badge span.material-symbols-outlined {
    font-size: 1.1rem;
}

.about-redesign-practice-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 1.25rem 0 0.5rem 0;
}

.about-redesign-practice-header h2 span {
    color: #0d9488;
}

.about-redesign-practice-flourish {
    display: flex;
    justify-content: center;
    color: #d97706;
    margin-bottom: 0.75rem;
}

.about-redesign-practice-flourish span {
    font-size: 1.5rem;
}

.about-redesign-practice-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Practice Grid & Vertical Cards */
.about-redesign-practice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-redesign-practice-card {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
}

.about-redesign-practice-card:hover {
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
    transform: translateY(-4px);
    border-color: #cbd5e1;
}

.about-redesign-practice-card-content {
    padding: 1.5rem 1.25rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.about-redesign-practice-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    flex-shrink: 0;
}

.about-redesign-practice-icon-wrapper.teal-circle {
    background-color: rgba(13, 148, 136, 0.06);
    border: 1px solid rgba(13, 148, 136, 0.15);
    color: #0d9488;
}

.about-redesign-practice-icon-wrapper.red-circle {
    background-color: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.about-redesign-practice-icon-wrapper span {
    font-size: 1.4rem !important;
}

.about-redesign-practice-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.35rem 0;
    line-height: 1.3;
}

.about-redesign-practice-underline {
    height: 3.5px;
    width: 40px;
    border-radius: 100px;
    margin-bottom: 0.85rem;
}

.about-redesign-practice-underline.teal-underline {
    background-color: #0d9488;
}

.about-redesign-practice-underline.red-underline {
    background-color: #ef4444;
}

.about-redesign-practice-card-desc {
    color: #475569;
    font-size: 0.875rem;
    line-height: 1.55;
    margin: 0;
}

.about-redesign-practice-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-redesign-practice-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.4;
}

.about-redesign-practice-card-list li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #0d9488;
    border-radius: 50%;
    margin-top: 0.4rem;
    flex-shrink: 0;
}

.about-redesign-practice-timings-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.about-redesign-practice-timings-list .timings-day-header {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0d9488;
    margin-bottom: 0.65rem;
}

.about-redesign-practice-timings-list .timings-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #475569;
    margin: 0.25rem 0;
}

.about-redesign-practice-timings-list .timings-item-icon {
    font-size: 1.25rem;
    color: #64748b;
}

.about-redesign-practice-timings-list .timings-day-footer {
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    margin-top: 0.65rem;
}

.about-redesign-practice-card-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    margin-top: auto;
    border-top: 1px solid #f1f5f9;
}

/* Make the Timings card image shorter to balance card heights and prevent stretching of other cards */
.about-redesign-practice-grid .about-redesign-practice-card:nth-child(3) .about-redesign-practice-card-image {
    height: 90px;
}

.about-redesign-practice-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-redesign-practice-card:hover .about-redesign-practice-card-image img {
    transform: scale(1.06);
}

/* Horizontal Cards Styling */
.about-redesign-practice-bottom-grid-v {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-redesign-practice-card-horizontal {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
}

.about-redesign-practice-card-horizontal:hover {
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
    transform: translateY(-4px);
    border-color: #cbd5e1;
}

.about-redesign-practice-card-content-horizontal {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 1.25rem;
    row-gap: 0.35rem;
    padding: 2rem 1.75rem;
    align-items: start;
    flex: 1;
}

.about-redesign-practice-card-content-horizontal .about-redesign-practice-icon-wrapper {
    grid-column: 1;
    grid-row: 1 / span 3;
    margin-bottom: 0;
}

.about-redesign-practice-card-content-horizontal .about-redesign-practice-card-title {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
}

.about-redesign-practice-card-content-horizontal .about-redesign-practice-underline {
    grid-column: 2;
    grid-row: 2;
    margin: 0.4rem 0 0.6rem 0;
}

.about-redesign-practice-card-content-horizontal .about-redesign-practice-card-desc {
    grid-column: 2;
    grid-row: 3;
    margin: 0;
}

.about-redesign-practice-card-image-horizontal {
    width: 240px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.about-redesign-practice-card-image-horizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Beautiful S-curve mask to blend edge */
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'><path d='M12 0 C 45 30, 20 70, 0 100 L 100 100 L 100 0 Z' fill='black'/></svg>");
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'><path d='M12 0 C 45 30, 20 70, 0 100 L 100 100 L 100 0 Z' fill='black'/></svg>");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.about-redesign-practice-card-horizontal:hover .about-redesign-practice-card-image-horizontal img {
    transform: scale(1.06);
}

/* Transparent wavy overlay */
.about-redesign-practice-card-image-horizontal::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.about-redesign-practice-bottom-grid-v .about-redesign-practice-card-horizontal:first-child .about-redesign-practice-card-image-horizontal::before {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'><path d='M15 0 C 50 30, 25 75, 0 100 L 30 100 C 45 80, 60 30, 30 0 Z' fill='rgba(239, 68, 68, 0.12)'/></svg>") no-repeat;
    background-size: 100% 100%;
}

.about-redesign-practice-bottom-grid-v .about-redesign-practice-card-horizontal:last-child .about-redesign-practice-card-image-horizontal::before {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'><path d='M15 0 C 50 30, 25 75, 0 100 L 30 100 C 45 80, 60 30, 30 0 Z' fill='rgba(13, 148, 136, 0.12)'/></svg>") no-repeat;
    background-size: 100% 100%;
}

/* Decorative dot grid inside the card */
.about-redesign-practice-card-image-horizontal::after {
    content: '';
    position: absolute;
    left: 12px;
    bottom: 12px;
    width: 40px;
    height: 56px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 3;
}

.about-redesign-practice-bottom-grid-v .about-redesign-practice-card-horizontal:first-child .about-redesign-practice-card-image-horizontal::after {
    background-image: radial-gradient(#ef4444 1.5px, transparent 1.5px);
    background-size: 8px 8px;
}

.about-redesign-practice-bottom-grid-v .about-redesign-practice-card-horizontal:last-child .about-redesign-practice-card-image-horizontal::after {
    background-image: radial-gradient(#0d9488 1.5px, transparent 1.5px);
    background-size: 8px 8px;
}

/* Section 5: Treatments & In-House Facilities */
.about-redesign-facilities-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
}

.about-redesign-treatments-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
}

.about-redesign-treatments-content-v {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-redesign-treatments-heading-v {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-redesign-treatments-heading-v span {
    color: var(--primary);
}

.about-redesign-treatments-list-columns-v {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.about-redesign-treatments-column-v {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-redesign-treatments-item-v {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

.about-redesign-treatments-item-v span {
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-redesign-treatments-image-v {
    width: 260px;
    position: relative;
    flex-shrink: 0;
    align-self: stretch;
    overflow: hidden;
}

.about-redesign-treatments-image-v img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-redesign-treatments-image-v::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 40%);
    pointer-events: none;
    z-index: 1;
}

/* In House Stacks */
.about-redesign-facility-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-redesign-facility-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: calc(50% - 0.75rem);
}

.about-redesign-facility-card:hover {
    box-shadow: var(--shadow-md);
}

.about-redesign-facility-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
    flex: 1;
}

.about-redesign-facility-card-icon-v {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-redesign-facility-card-icon-v.pharmacy-gold {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #fcd34d;
    color: #b45309;
}

.about-redesign-facility-card-icon-v.lab-purple {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border: 1px solid #d8b4fe;
    color: #6b21a8;
}

.about-redesign-facility-card-icon-v span {
    font-size: 2rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    line-height: 1 !important;
}

.about-redesign-facility-text-wrapper-v {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-redesign-facility-text-wrapper-v h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.about-redesign-facility-text-wrapper-v p {
    font-size: 0.825rem;
    color: var(--slate);
    line-height: 1.5;
    margin: 0;
}

.about-redesign-facility-card-image {
    width: 220px;
    position: relative;
    flex-shrink: 0;
    align-self: stretch;
    overflow: hidden;
}

.about-redesign-facility-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-redesign-facility-card:hover .about-redesign-facility-card-image img {
    transform: scale(1.05);
}

.about-redesign-facility-card-image::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 40%);
    pointer-events: none;
    z-index: 1;
}

/* Section 6: Booking Banner */
.about-redesign-booking-card {
    background-color: #004d56;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: 320px 1.1fr 1.3fr;
    align-items: center;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-redesign-booking-card::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 168, 181, 0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 1;
}

.about-redesign-booking-img {
    height: 100%;
    min-height: 280px;
    overflow: hidden;
    position: relative;
    align-self: stretch;
}

.about-redesign-booking-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-redesign-booking-contacts {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.about-redesign-booking-contacts h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
}

.about-redesign-booking-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.about-redesign-booking-contact-icon {
    font-size: 1.75rem;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.15);
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.about-redesign-booking-contact-details {
    display: flex;
    flex-direction: column;
}

.about-redesign-booking-contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.about-redesign-booking-contact-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
}

.about-redesign-booking-cta {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    z-index: 2;
}

.about-redesign-booking-cta-title {
    color: var(--white);
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.3;
}

.about-redesign-booking-cta-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
}

.about-redesign-booking-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--tangerine);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    align-self: flex-start;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 14px rgba(186, 151, 74, 0.4);
}

.about-redesign-booking-btn:hover {
    background-color: #a3813a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(186, 151, 74, 0.6);
    color: var(--white);
}

.about-redesign-booking-btn span {
    font-size: 1.25rem;
}

/* Trust Badges Bar */
.about-redesign-trust-bar {
    background-color: var(--light-teal);
    border: 1px solid var(--border-teal);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
}

.about-redesign-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.about-redesign-trust-badge span.badge-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Quote Bar */
.about-redesign-quote-bar {
    background-color: #fdfaf2;
    border: 1px solid #f3ebd4;
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    text-align: center;
}

.about-redesign-quote-bar span.quote-icon {
    color: var(--tangerine);
    font-size: 1.75rem;
}

.about-redesign-quote-bar p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
}

/* STRICT ICON ALIGNMENT RULES */
.about-redesign-hero-badge-icon,
.about-redesign-stat-icon,
.about-redesign-award-icon,
.about-redesign-sub-card-icon,
.about-redesign-expertise-icon,
.about-redesign-practice-card-icon,
.about-redesign-practice-row-icon,
.about-redesign-facility-card-icon,
.about-redesign-booking-contact-icon,
.trust-stat-icon-v,
.card-icon-v {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    text-align: center !important;
    line-height: 1 !important;
}

.about-redesign-specialties-item span.check-icon,
.about-redesign-treatments-item span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    flex-shrink: 0;
    line-height: 1 !important;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-redesign-hero-grid,
    .about-redesign-trust-education-wrapper,
    .about-redesign-specialties-layout,
    .about-redesign-facilities-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-redesign-hero-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-redesign-practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-redesign-booking-card {
        grid-template-columns: 1fr;
    }
    
    .about-redesign-booking-img {
        height: 250px;
    }
    
    .about-redesign-booking-contacts {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .about-redesign-hero-image-col {
        min-height: auto;
    }
    
    .about-redesign-curve-wrapper {
        height: 400px;
    }
    
    .about-redesign-expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-redesign-specialties-layout {
        padding: 2rem;
    }
    
    .about-redesign-specialties-layout .reveal-right {
        border-left: none;
        padding-left: 0;
    }
    
    .about-redesign-facility-card {
        height: auto;
    }
}

@media (max-width: 768px) {
    .about-redesign-title {
        font-size: 2.25rem;
    }
    
    .about-redesign-hero-image-col {
        margin: 1.5rem 0 2rem 0;
    }
    
    .about-redesign-hero-badges,
    .about-redesign-practice-grid,
    .about-redesign-practice-bottom-grid-v,
    .about-redesign-treatments-list,
    .about-redesign-expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .about-redesign-trust-stats-bar-vertical {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0 !important;
        border-top: 1px solid var(--border) !important;
        border-bottom: 1px solid var(--border) !important;
        padding: 0 !important;
    }
    
    .about-redesign-trust-stat-item-vertical {
        padding: 1.5rem 1rem !important;
        box-sizing: border-box !important;
        flex: none !important;
        border: none !important;
    }
    
    .about-redesign-trust-stat-item-vertical::after {
        display: none !important;
    }
    
    .about-redesign-trust-stat-item-vertical:nth-child(1) {
        border-right: 1px solid var(--border) !important;
        border-bottom: 1px solid var(--border) !important;
    }
    
    .about-redesign-trust-stat-item-vertical:nth-child(2) {
        border-bottom: 1px solid var(--border) !important;
    }
    
    .about-redesign-trust-stat-item-vertical:nth-child(3) {
        border-right: 1px solid var(--border) !important;
    }
    
    .about-redesign-education-top-grid-v {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-redesign-vertical-divider-v {
        display: none;
    }
    
    .about-redesign-education-bottom-grid-v {
        grid-template-columns: 1fr;
    }
    
    .about-redesign-facility-card {
        grid-template-columns: 1fr;
    }
    
    .about-redesign-facility-card-image {
        height: 180px;
        min-height: auto;
    }
    
    .about-redesign-specialties-inner {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem !important;
    }
    
    .about-redesign-specialties-list {
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .about-redesign-specialties-item {
        display: flex !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 0.65rem !important;
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        width: 100% !important;
    }
    
    .about-redesign-specialties-item .check-icon {
        color: hsl(41, 45%, 51%) !important;
        font-size: 1.25rem !important;
        margin-top: 2px !important;
        flex-shrink: 0 !important;
    }
    
    .about-redesign-brain-circle-v {
        width: 180px !important;
        height: 180px !important;
        margin: 1.5rem auto 0 auto !important;
    }
    
    .about-redesign-brain-img {
        width: 130px !important;
        height: 130px !important;
    }
    
    .about-redesign-divider-heading h2 {
        font-size: 1.75rem;
    }
    
    .about-redesign-trust-bar {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 2rem;
    }
    
    .about-redesign-practice-card-horizontal {
        flex-direction: column;
    }
    
    .about-redesign-practice-card-content-horizontal {
        padding: 1rem 1.15rem 0.75rem 1.15rem;
    }
    
    .about-redesign-practice-card-image-horizontal {
        width: 100%;
        height: 120px;
    }
    
    .about-redesign-practice-card-image-horizontal::before {
        background: none;
    }
    
    .about-redesign-treatments-card {
        flex-direction: column;
        padding: 1.5rem 1.5rem 2rem 1.5rem;
        padding-bottom: 2rem;
    }
    
    .about-redesign-treatments-content-v {
        padding: 0;
    }
    
    .about-redesign-treatments-list-columns-v {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-redesign-treatments-image-v {
        position: static;
        width: 100%;
        max-width: 180px;
        height: 180px;
        margin: 1.5rem auto 0 auto;
    }
    
    .about-redesign-treatments-image-v::before {
        background: none;
    }

    .about-redesign-facility-card {
        flex-direction: column;
    }
    
    .about-redesign-facility-card-content {
        padding: 1.25rem;
    }
    
    .about-redesign-facility-card-image {
        width: 100%;
        height: 130px;
    }
    
    .about-redesign-facility-card-image::before {
        background: none;
    }
}

/* ==========================================================================
   SIMPLE DROPDOWN MENU FOR RESOURCES
   ========================================================================== */
.header__dropdown-menu--simple {
    width: 220px !important;
    right: 0 !important;
    left: auto !important;
    padding: 0.75rem !important;
}
.header__dropdown-menu--simple .header__dropdown-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
    grid-template-columns: none !important;
}
.header__dropdown-link-simple {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.6rem 0.85rem !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: var(--dark) !important;
    border-radius: var(--radius) !important;
    transition: var(--transition) !important;
    border: none !important;
    border-bottom: none !important;
    background: none !important;
    width: 100% !important;
}
.header__dropdown-link-simple:hover {
    background-color: var(--light-teal) !important;
    color: var(--primary) !important;
    padding-left: 1rem !important;
}
.header__dropdown-link-simple span {
    font-size: 1.2rem !important;
    color: var(--primary) !important;
}

/* ==========================================================================
   ACTIVE NAV LINK STYLING
   ========================================================================== */
.header__nav-link--active {
    color: var(--primary) !important;
    position: relative !important;
}
.header__nav-link--active::after {
    content: '' !important;
    position: absolute !important;
    bottom: -6px !important;
    left: 0 !important;
    width: 100% !important;
    height: 2.5px !important;
    background-color: var(--primary) !important;
    border-radius: 2px !important;
}
.header.scrolled .header__nav-link--active {
    color: var(--primary) !important;
}

/* ==========================================================================
   FAQ PAGE STYLES (MATCHING MOCKUP)
   ========================================================================== */

/* Hero Section */
.faq-hero {
    position: relative;
    padding: 6rem 0 4rem 0;
    background: linear-gradient(180deg, rgba(240, 250, 251, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
    overflow: hidden;
}
.faq-hero__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}
.faq-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-teal);
}
.faq-hero__badge span {
    font-size: 1.1rem;
}
.faq-hero__title {
    font-size: 3rem;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.5rem;
}
.faq-hero__title span.text-teal {
    color: var(--primary);
}
.faq-hero__divider-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.faq-hero__divider {
    height: 2px;
    background-color: var(--border-teal);
    width: 80px;
}
.faq-hero__divider-icon {
    color: var(--secondary);
    font-size: 1.2rem;
}
.faq-hero__desc {
    font-size: 1.1rem;
    color: var(--slate);
    max-width: 540px;
    line-height: 1.6;
}
.faq-hero__image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.faq-hero__image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 2;
}

/* Main Layout Grid */
.faq-main {
    padding: 4rem 0 6rem 0;
    background-color: var(--white);
}
.faq-main__grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* Sidebar Styling */
.faq-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.faq-sidebar__card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.faq-sidebar__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--light);
    padding-bottom: 0.75rem;
}
.faq-sidebar__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Category Sidebar Item */
.faq-sidebar__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background-color: var(--white);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}
.faq-sidebar__item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

/* Active Category Sidebar Item */
.faq-sidebar__item--active {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
}
.faq-sidebar__item--active .faq-sidebar__item-title {
    color: var(--white) !important;
}
.faq-sidebar__item--active .faq-sidebar__item-count {
    color: var(--primary-light) !important;
    opacity: 0.9;
}
.faq-sidebar__item--active .faq-sidebar__letter-circle {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
}
.faq-sidebar__item--active .faq-sidebar__item-icon {
    color: var(--white) !important;
}

.faq-sidebar__letter-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.faq-sidebar__letter-circle--a { background-color: #f0fdf4; color: #16a34a; }
.faq-sidebar__letter-circle--b { background-color: #fff7ed; color: #ea580c; }
.faq-sidebar__letter-circle--c { background-color: #faf5ff; color: #9333ea; }
.faq-sidebar__letter-circle--d { background-color: #ecfeff; color: #0891b2; }

.faq-sidebar__item-icon {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}
.faq-sidebar__item-details {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}
.faq-sidebar__item-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
}
.faq-sidebar__item-count {
    font-size: 0.8rem;
    color: var(--slate-light);
    margin-top: 0.15rem;
}

/* Contact Us Sidebar Card */
.faq-contact-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--radius-xl);
    padding: 2rem 1.75rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-height: 350px;
}
.faq-contact-card__title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}
.faq-contact-card__desc {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.5;
}
.faq-contact-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.95rem;
    align-self: flex-start;
    transition: var(--transition);
}
.faq-contact-card__btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.faq-contact-card__image-container {
    margin-top: auto;
    display: flex;
    justify-content: center;
    padding-top: 1rem;
    pointer-events: none;
}
.faq-contact-card__image {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
    opacity: 0.9;
}

/* Accordion Column Styles */
.faq-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Section Wrapper (A, B, C, D) */
.faq-section {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    scroll-margin-top: 120px;
    transition: var(--transition);
}
.faq-section:hover {
    box-shadow: var(--shadow-md);
}

/* Section Header Card */
.faq-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

/* Custom coloring for Section headers */
.faq-section__header--a { background-color: rgba(240, 253, 244, 0.6); border-bottom: 1px solid #dcfce7; }
.faq-section__header--b { background-color: rgba(255, 247, 237, 0.6); border-bottom: 1px solid #ffedd5; }
.faq-section__header--c { background-color: rgba(250, 245, 255, 0.6); border-bottom: 1px solid #f3e8ff; }
.faq-section__header--d { background-color: rgba(236, 254, 255, 0.6); border-bottom: 1px solid #cffafe; }

.faq-section__header-left {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.faq-section__letter-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}
.faq-section__letter-badge--a { background-color: #dcfce7; color: #16a34a; }
.faq-section__letter-badge--b { background-color: #ffedd5; color: #ea580c; }
.faq-section__letter-badge--c { background-color: #f3e8ff; color: #9333ea; }
.faq-section__letter-badge--d { background-color: #cffafe; color: #0891b2; }

.faq-section__icon {
    font-size: 1.5rem;
}
.faq-section__icon--a { color: #16a34a; }
.faq-section__icon--b { color: #ea580c; }
.faq-section__icon--c { color: #9333ea; }
.faq-section__icon--d { color: #0891b2; }

.faq-section__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
}
.faq-section__header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--slate);
}
.faq-section__count {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate);
}
.faq-section__toggle-icon {
    font-size: 1.5rem;
    transition: var(--transition);
}

/* Accordion Question List wrapper */
.faq-section__questions {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background-color: var(--white);
}

/* Question Accordion Card */
.faq-accordion {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background-color: var(--white);
    overflow: hidden;
    transition: var(--transition);
}
.faq-accordion:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}
.faq-accordion--open {
    border-color: var(--border-teal);
    box-shadow: var(--shadow-sm);
}

.faq-accordion__trigger {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    gap: 1.25rem;
}
.faq-accordion__trigger-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-accordion__number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
    flex-shrink: 0;
}
.faq-accordion__number--a { background-color: #16a34a; }
.faq-accordion__number--b { background-color: #ea580c; }
.faq-accordion__number--c { background-color: #9333ea; }
.faq-accordion__number--d { background-color: #0891b2; }

.faq-accordion__question {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
}
.faq-accordion__icon {
    font-size: 1.25rem;
    color: var(--slate-light);
    transition: var(--transition);
    flex-shrink: 0;
}
.faq-accordion__icon--rotated {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-accordion__content {
    background-color: var(--white);
}
.faq-accordion__content-inner {
    padding: 0 1.25rem 1.25rem 3.5rem;
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.6;
    border-top: none;
}
.faq-accordion__content-inner p {
    margin-bottom: 0.75rem;
}
.faq-accordion__content-inner p:last-child {
    margin-bottom: 0;
}
.faq-accordion__content-inner ul {
    list-style-type: disc;
    margin-left: 1.25rem;
    margin-bottom: 0.75rem;
}
.faq-accordion__content-inner li {
    margin-bottom: 0.35rem;
}

/* ==========================================================================
   FAQ FOOTER SECTION (CTA BANNER AND FOOTER STRIP)
   ========================================================================== */
.faq-footer-banner {
    background: linear-gradient(135deg, #f0fafb 0%, #ffffff 100%);
    border: 1px solid var(--border-teal);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-sm);
}
.faq-footer-banner__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.faq-footer-banner__left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.faq-footer-banner__icon-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.faq-footer-banner__icon-container span {
    font-size: 2rem;
}
.faq-footer-banner__content {
    display: flex;
    flex-direction: column;
}
.faq-footer-banner__title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.25rem;
}
.faq-footer-banner__title span {
    color: var(--primary);
}
.faq-footer-banner__subtitle {
    font-size: 0.95rem;
    color: var(--slate);
}
.faq-footer-banner__contacts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-footer-banner__contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.faq-footer-banner__contact-icon {
    color: var(--primary);
    font-size: 1.35rem;
}
.faq-footer-banner__contact-details {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.faq-footer-banner__contact-label {
    font-size: 0.8rem;
    color: var(--slate-light);
    font-weight: 600;
}
.faq-footer-banner__contact-value {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 700;
}
.faq-footer-banner__right {
    display: flex;
    justify-content: flex-end;
}

/* Quote Footer Strip */
.faq-quote-footer {
    background-color: #0b3438; /* Very dark teal color matching mockup footer */
    padding: 1.75rem 0;
    text-align: center;
    color: var(--white);
}
.faq-quote-footer__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}
.faq-quote-footer__quote {
    font-style: italic;
    opacity: 0.95;
    letter-spacing: 0.02em;
}
.faq-quote-footer__icon {
    font-size: 1.2rem;
    color: var(--primary-light);
    opacity: 0.7;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .faq-hero__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .faq-hero__divider-container {
        justify-content: center;
    }
    .faq-hero__desc {
        margin: 0 auto;
    }
    .faq-main__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .faq-sidebar {
        display: none !important;
    }
    .faq-footer-banner__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .faq-footer-banner__left {
        flex-direction: column;
    }
    .faq-footer-banner__contacts {
        align-items: center;
    }
    .faq-footer-banner__right {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .faq-hero__title {
        font-size: 2.25rem;
    }
    .faq-accordion__trigger {
        padding: 0.85rem 1rem;
    }
    .faq-accordion__content-inner {
        padding: 0 1rem 1rem 3rem;
    }
    .faq-quote-footer__content {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* ==========================================================================
   GLOBAL DARK HERO STYLING (IMPROVEMENTS)
   ========================================================================== */

/* 1. FAQs Page Header Light Theme Link Contrast */
.header--light-hero:not(.scrolled) .header__nav-link {
    color: var(--dark) !important;
}
.header--light-hero:not(.scrolled) .header__mobile-btn {
    color: var(--dark) !important;
}
.header--light-hero:not(.scrolled) .text-logo {
    color: var(--dark) !important;
}

/* 2. Services Page Hero Dark Theme */
.services-page-hero {
    background: #0b1a1d !important;
    color: var(--white) !important;
}
.services-page-hero__title-centered {
    color: var(--white) !important;
}
.services-page-hero__title-centered span,
.services-page-hero__title-centered .text-teal-highlight {
    color: #00d2e0 !important;
}
.services-page-hero__description-centered {
    color: rgba(255, 255, 255, 0.7) !important;
}
.services-page-hero .badge-pill-service {
    background-color: rgba(0, 168, 181, 0.1) !important;
    border: 1px solid rgba(0, 168, 181, 0.3) !important;
    color: #00d2e0 !important;
}

/* 3. About Page Hero Dark Theme & SVG Curve */
.about-redesign-section.about-hero {
    background: #0b1a1d !important;
    color: var(--white) !important;
}
.about-redesign-title {
    color: var(--white) !important;
}
.about-redesign-title span {
    color: #00d2e0 !important;
}
.about-redesign-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
}
.about-redesign-badge {
    background-color: rgba(0, 168, 181, 0.1) !important;
    border-color: rgba(0, 168, 181, 0.3) !important;
    color: #00d2e0 !important;
}
.about-redesign-section.about-hero .about-redesign-hero-badge-card {
    background-color: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}
.about-redesign-section.about-hero .about-redesign-hero-badge-title {
    color: var(--white) !important;
}
.about-redesign-section.about-hero .about-redesign-hero-badge-desc {
    color: rgba(255, 255, 255, 0.6) !important;
}
.about-redesign-section.about-hero .about-redesign-hero-badge-icon {
    color: #00d2e0 !important;
}
.about-redesign-doctor-tag {
    background-color: rgba(11, 26, 29, 0.8) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.about-redesign-doctor-tag h4 {
    color: var(--white) !important;
}
.about-redesign-doctor-tag p {
    color: rgba(255, 255, 255, 0.8) !important;
}
.about-redesign-curve-wrapper svg {
    fill: #0b1a1d !important;
}

/* ==========================================================================
   HORIZONTAL STILL HAVE QUESTIONS SECTION (IMPROVEMENTS)
   ========================================================================== */
.faq-still-questions {
    padding: 2rem 0 5rem 0;
    background-color: var(--white);
}
.faq-still-card {
    background: hsl(184, 100%, 96%) !important;
    border: 1px solid var(--border-teal);
    border-radius: var(--radius-xl);
    padding: 1.75rem 3.5rem !important; /* reduced height */
    box-shadow: var(--shadow-sm);
    max-width: 1140px !important; /* increased width */
    margin: 0 auto;
}
.faq-still-card__grid {
    display: grid;
    grid-template-columns: 220px 1fr; /* slick compact columns */
    gap: 3rem;
    align-items: center;
}
.faq-still-card__left {
    display: flex;
    justify-content: center;
    align-items: center;
}
.faq-still-card__right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.faq-still-card__title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--dark);
}
.faq-still-card__desc {
    font-size: 1.05rem;
    color: var(--slate);
    line-height: 1.6;
}
.faq-still-card__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(0, 168, 181, 0.1);
    border-bottom: 1px solid rgba(0, 168, 181, 0.1);
    padding: 1.5rem 0;
}
.faq-still-card__contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.faq-still-card__contact-icon {
    color: var(--primary);
    font-size: 1.6rem;
}
.faq-still-card__contact-details {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.faq-still-card__contact-label {
    font-size: 0.8rem;
    color: var(--slate-light);
    font-weight: 600;
}
.faq-still-card__contact-value {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 700;
}
.faq-still-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.95rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1rem;
    align-self: flex-start;
    transition: var(--transition);
}
.faq-still-card__btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.faq-still-card__image {
    max-height: 220px !important; /* compact height */
    width: 100%;
    max-width: 220px !important;
    object-fit: contain;
    opacity: 0.95;
    animation: floatBrain 6s ease-in-out infinite;
}

@keyframes floatBrain {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (min-width: 1024px) {
    .faq-main__grid {
        align-items: stretch !important; /* parallel height stretch */
    }
    .faq-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        min-height: 440px; /* matches sidebar card height when collapsed */
        gap: 1.5rem !important;
    }
    .faq-section__header {
        padding: 1.65rem 2rem !important; /* taller collapsed category cards */
    }
}

@media (max-width: 1024px) {
    .faq-still-card {
        padding: 2.25rem !important;
    }
    .faq-still-card__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .faq-still-card__left {
        order: 2;
        align-items: center;
        justify-content: center;
    }
    .faq-still-card__right {
        order: 1;
        align-items: center;
        text-align: center;
    }
    .faq-still-card__contacts {
        justify-content: center;
        gap: 1.5rem;
    }
    .faq-still-card__btn {
        align-self: center;
    }
    .faq-still-card__image {
        max-height: 200px !important;
        max-width: 200px !important;
    }
}

/* ==========================================================================
   MASTER MOBILE OPTIMIZATION & CLEANUP (768px and down)
   ========================================================================== */
@media (max-width: 768px) {
    /* 1. Header Spacing Fixes */
    .about-redesign-section.about-hero {
        padding-top: 6.5rem !important; /* Perfect spacing below fixed header */
    }
    
    /* 2. Global Heading Font Size Reductions for mobile compactness */
    h1, .new-hero__title, .about-redesign-title, .faq-hero__title, .services-page-hero__title-centered {
        font-size: 2rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.5px !important;
    }
    h2, .services-title, .expert-title, .faq-section__title, .about-redesign-divider-heading h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    h3 {
        font-size: 1.25rem !important;
    }
    h4 {
        font-size: 1.05rem !important;
    }
    
    /* 3. Make Section-level Cards Full-Screen and Light Blue */
    /* A. Homepage: Ready to Seek Help? (cta-zone) */
    .cta-zone {
        background: #e6f6f8 !important; /* Premium light blue-teal bg */
        padding: 3rem 0 !important;
    }
    .cta-zone__card {
        background: transparent !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        border: none !important;
        max-width: 100% !important;
    }
    .cta-zone__title {
        color: var(--dark) !important;
    }
    .cta-zone__description {
        color: var(--slate) !important;
    }
    .cta-zone__icon {
        background-color: var(--primary-light) !important;
        color: var(--primary) !important;
        box-shadow: none !important;
    }
    .cta-zone__contacts .contact-card {
        background-color: var(--white) !important;
        border: 1px solid var(--border-teal) !important;
        box-shadow: var(--shadow-sm) !important;
    }
    .cta-zone__contacts .contact-card__icon {
        color: var(--primary) !important;
        background-color: var(--light-teal) !important;
    }
    .cta-zone__contacts .contact-card__label {
        color: var(--slate-light) !important;
    }
    .cta-zone__contacts .contact-card__value {
        color: var(--dark) !important;
    }
    .cta-zone__actions .cta-btn--outline {
        border-color: var(--primary) !important;
        color: var(--primary) !important;
    }
    
    /* B. About Page: Booking Card as a Premium Compact Card */
    .about-redesign-section:has(.about-redesign-booking-card) {
        background-color: #e6f6f8 !important;
        padding: 2.5rem 0 !important;
    }
    
    .about-redesign-booking-card {
        background-color: var(--white) !important;
        background: var(--white) !important;
        border-radius: 1.25rem !important;
        box-shadow: 0 8px 24px rgba(0, 77, 86, 0.08) !important;
        grid-template-columns: 1fr !important;
        border: 1px solid rgba(13, 148, 136, 0.12) !important;
        padding: 1.5rem !important;
        width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }
    .about-redesign-booking-card::after {
        display: none !important;
    }
    .about-redesign-booking-img {
        height: 180px !important;
        min-height: auto !important;
        width: 100% !important;
        border-radius: 1rem !important;
        overflow: hidden !important;
        margin-bottom: 1.25rem !important;
    }
    .about-redesign-booking-contacts {
        border-bottom: 1px solid rgba(13, 148, 136, 0.1) !important;
        padding: 0 0 1.25rem 0 !important;
        border-right: none !important;
        box-sizing: border-box !important;
        width: 100% !important;
        gap: 1rem !important;
    }
    .about-redesign-booking-contacts h4 {
        color: #004d56 !important;
        margin-top: 0;
        margin-bottom: 0.85rem !important;
        font-size: 1.1rem !important;
    }
    .about-redesign-booking-contact-item {
        color: #1e293b !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        gap: 0.75rem !important;
    }
    .about-redesign-booking-contact-icon {
        background-color: rgba(13, 148, 136, 0.08) !important;
        color: #0d9488 !important;
        width: 38px !important;
        height: 38px !important;
        font-size: 1.25rem !important;
        flex-shrink: 0 !important;
    }
    .about-redesign-booking-contact-details {
        max-width: calc(100% - 50px) !important;
        box-sizing: border-box !important;
    }
    .about-redesign-booking-contact-label {
        color: #64748b !important;
        font-size: 0.75rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.03em !important;
    }
    .about-redesign-booking-contact-value {
        color: #0f172a !important;
        font-size: 0.95rem !important;
        word-break: break-all !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        font-weight: 700 !important;
    }
    .about-redesign-booking-cta {
        padding: 1.25rem 0 0 0 !important;
        box-sizing: border-box !important;
        width: 100% !important;
        gap: 0.75rem !important;
    }
    .about-redesign-booking-cta-title {
        color: #0f172a !important;
        font-size: 1.25rem !important;
        margin-top: 0;
        line-height: 1.3;
        font-weight: 700 !important;
    }
    .about-redesign-booking-cta-desc {
        color: #475569 !important;
        font-size: 0.85rem !important;
        line-height: 1.45;
        margin-bottom: 0.75rem !important;
    }
    .about-redesign-booking-btn {
        width: auto !important;
        align-self: flex-start !important;
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
        box-sizing: border-box !important;
    }
    
    /* C. FAQ Page: Still Have Questions Card */
    .faq-still-card {
        background: hsl(184, 100%, 96%) !important;
        border: 1px solid var(--border-teal) !important;
        border-radius: var(--radius-xl) !important;
        box-shadow: var(--shadow-sm) !important;
        padding: 1.5rem 1.25rem !important;
        margin: 0 auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .faq-still-card__title {
        color: var(--dark) !important;
        font-size: 1.4rem !important;
        text-align: center !important;
        width: 100% !important;
    }
    .faq-still-card__desc {
        color: var(--slate) !important;
        font-size: 0.9rem !important;
        text-align: center !important;
        line-height: 1.5 !important;
        margin-bottom: 0.5rem !important;
    }
    .faq-still-card__right {
        align-items: center !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .faq-still-card__contacts {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border-top: 1px solid rgba(0, 168, 181, 0.1) !important;
        border-bottom: 1px solid rgba(0, 168, 181, 0.1) !important;
        padding: 1rem 0 !important;
        margin: 0.5rem 0 !important;
    }
    .faq-still-card__contact-item {
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }
    .faq-still-card__contact-label {
        color: var(--slate-light) !important;
        font-size: 0.75rem !important;
    }
    .faq-still-card__contact-value {
        color: var(--dark) !important;
        font-size: 0.95rem !important;
        word-break: break-all !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    .faq-still-card__contact-icon {
        color: var(--primary) !important;
        font-size: 1.4rem !important;
    }
    .faq-still-card__btn {
        width: 100% !important;
        justify-content: center !important;
    }
    .faq-still-card__left {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }
    .faq-still-card__image {
        max-height: 140px !important;
        max-width: 140px !important;
    }

    /* FAQ Page: Mobile Category Accordions and Questions */
    .faq-section {
        border-radius: var(--radius-lg) !important;
        margin-bottom: 1rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .faq-section__header {
        padding: 0.85rem 1rem !important;
        gap: 0.5rem !important;
    }
    .faq-section__header-left {
        flex: 1 !important;
        min-width: 0 !important;
        gap: 0.5rem !important;
    }
    .faq-section__title {
        font-size: 1rem !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        margin: 0 !important;
    }
    .faq-section__icon {
        display: none !important;
    }
    .faq-section__letter-badge {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.85rem !important;
        flex-shrink: 0 !important;
    }
    .faq-section__header-right {
        gap: 0.5rem !important;
        flex-shrink: 0 !important;
    }
    .faq-section__count {
        font-size: 0.75rem !important;
    }
    @media (max-width: 480px) {
        .faq-section__count {
            display: none !important;
        }
    }
    .faq-section__questions {
        padding: 0.75rem !important;
        gap: 0.5rem !important;
    }
    .faq-accordion {
        border-radius: var(--radius-md) !important;
    }
    .faq-accordion__trigger {
        padding: 0.75rem 0.85rem !important;
        gap: 0.75rem !important;
    }
    .faq-accordion__trigger-left {
        flex: 1 !important;
        min-width: 0 !important;
        gap: 0.75rem !important;
    }
    .faq-accordion__question {
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        line-height: 1.4 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    .faq-accordion__number {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.75rem !important;
        flex-shrink: 0 !important;
    }
    .faq-accordion__content-inner {
        padding: 0 0.85rem 0.85rem 2.25rem !important;
        font-size: 0.85rem !important;
    }
    
    /* D. About Page: Specialties Card */
    .about-redesign-specialties-layout {
        background-color: #004D56 !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 1.25rem !important;
        padding: 1.5rem 1.25rem !important;
        box-shadow: 0 10px 20px rgba(0, 77, 86, 0.2) !important;
    }
    .about-redesign-specialties-heading-v {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* E. About Page: Education Card Wrapper */
    .about-redesign-education-card-wrapper {
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
        padding: 1.5rem 0 0 0 !important;
        background: transparent !important;
    }
    .about-redesign-education-card-header-v {
        padding-bottom: 1rem !important;
        margin-bottom: 1.5rem !important;
        border-bottom: 2px solid var(--border-teal) !important;
    }
    .about-redesign-timeline-item-v {
        margin-left: 1.5rem !important;
        padding-left: 1.25rem !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .about-redesign-timeline-item-v:not(:last-child) {
        padding-bottom: 1.5rem !important;
    }
    .about-redesign-timeline-year-v {
        position: static !important;
        width: auto !important;
        text-align: left !important;
        font-size: 0.95rem !important;
        margin-bottom: 0.25rem !important;
        display: block !important;
        color: var(--primary) !important;
    }
    .about-redesign-education-top-grid-v {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .about-redesign-education-divider-pane-v {
        display: none !important; /* Hide vertical divider in vertical layout */
    }
    
    /* 4. White Sections to Lighter Shade of Blue (#f3fafd) */
    .expert-section,
    .why-section,
    .gallery-section,
    .testimonials-faq-section,
    .about-redesign-section:not(.about-hero):nth-child(even),
    .faq-main {
        background-color: #f3fafd !important; /* Softest icy blue */
    }
    
    /* 5. Make Small Cards Compact & Beautiful */
    /* A. About Page badges under title */
    .about-redesign-hero-badges {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }
    .about-redesign-hero-badge-card {
        padding: 0.65rem 0.5rem !important;
        gap: 0.25rem !important;
        border-radius: var(--radius) !important;
    }
    .about-redesign-hero-badge-title {
        font-size: 0.8rem !important;
    }
    .about-redesign-hero-badge-desc {
        font-size: 0.65rem !important;
    }
    .about-redesign-hero-badge-icon {
        font-size: 1.2rem !important;
    }
    
    /* B. About Page Expertise small cards */
    .about-redesign-expertise-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.65rem !important;
        padding: 0 0.5rem !important; /* Minimal margins from screen edge */
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .about-redesign-expertise-card {
        padding: 1rem 0.5rem !important;
        border-radius: var(--radius-lg) !important;
        gap: 0.5rem !important;
        height: 125px !important; /* Uniform height for all cards */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }
    .about-redesign-expertise-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.6rem !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
    }
    .about-redesign-expertise-title {
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        color: var(--dark) !important;
        line-height: 1.3 !important;
    }
    
    /* C. Why Choose Us cards */
    .why-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    .why-card-item {
        padding: 1rem !important;
        border-radius: var(--radius-lg) !important;
    }
    
    /* D. Expert Section stats cards */
    .expert-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }
    .expert-stat-box {
        padding: 0.65rem !important;
        border-radius: var(--radius) !important;
    }
    .expert-stat-box h3 {
        font-size: 1.25rem !important;
    }
    .expert-stat-box p {
        font-size: 0.7rem !important;
    }
    
    /* E. About Page Clinical Exp and Professional Association cards */
    .about-redesign-education-bottom-grid-v {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
        margin-bottom: 0 !important;
    }
    .about-redesign-exp-association-card-v {
        padding: 0.75rem !important;
        border-radius: var(--radius-lg) !important;
    }
    .about-redesign-card-icon-box-v {
        width: 42px !important;
        height: 42px !important;
    }
    .about-redesign-card-icon-box-v .card-icon-v {
        font-size: 1.35rem !important;
    }
    .about-redesign-card-text-box-v h4 {
        font-size: 0.95rem !important;
    }
    .about-redesign-card-text-box-v p {
        font-size: 0.75rem !important;
    }
    
    /* F. About Page Practice grid cards */
    .about-redesign-practice-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    .about-redesign-practice-bottom-grid-v {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    .about-redesign-practice-card {
        border-radius: 1.25rem !important;
    }
    .about-redesign-practice-card-content {
        padding: 1.5rem 1.25rem !important;
    }
    .about-redesign-practice-icon-wrapper {
        width: 48px !important;
        height: 48px !important;
        margin-bottom: 1rem !important;
    }
    .about-redesign-practice-icon-wrapper span {
        font-size: 1.4rem !important;
    }
    .about-redesign-practice-card-title {
        font-size: 1.05rem !important;
    }
    .about-redesign-practice-underline {
        margin-bottom: 0.85rem !important;
    }
    .about-redesign-practice-card-image {
        height: 160px !important;
    }
    .about-redesign-practice-card-horizontal {
        border-radius: 1.25rem !important;
        flex-direction: column !important;
    }
    .about-redesign-practice-card-content-horizontal {
        grid-template-columns: 48px 1fr !important;
        column-gap: 1rem !important;
        row-gap: 0.25rem !important;
        padding: 1.5rem 1.25rem !important;
    }
    .about-redesign-practice-card-content-horizontal .about-redesign-practice-icon-wrapper {
        grid-row: 1 / span 3 !important;
    }
    .about-redesign-practice-card-image-horizontal {
        display: block !important;
        width: 100% !important;
        height: 160px !important;
        border-top: 1px solid #f1f5f9;
    }
    .about-redesign-practice-card-image-horizontal img {
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }
    .about-redesign-practice-card-image-horizontal::before,
    .about-redesign-practice-card-image-horizontal::after {
        display: none !important;
    }
    
    /* G. Contact Cards on Homepage */
    .cta-zone__contacts {
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }
    .contact-card {
        padding: 0.65rem 0.85rem !important;
        width: 100% !important;
        justify-content: flex-start !important;
    }
    
    /* H. Testimonial and Video Cards */
    .testimonial-card, .video-card {
        padding: 1.25rem !important;
        border-radius: var(--radius-lg) !important;
    }
    
    /* I. Service Grid items */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    .service-block {
        padding: 1.25rem !important;
        border-radius: var(--radius-lg) !important;
    }

    /* J. Ready to Seek Help CTA buttons full width */
    .cta-zone__actions {
        flex-direction: column !important;
        width: 100% !important;
        gap: 0.75rem !important;
    }
    .cta-zone__actions .cta-btn {
        width: 100% !important;
        justify-content: center !important;
    }
    
    /* K. Approach Section Card mobile padding */
    .approach-step-card {
        padding: 1.25rem !important;
    }
    
    /* L. Locations Tagline left alignment on mobile */
    .locations-notice-under {
        align-items: flex-start !important;
    }
    .locations-notice-line {
        align-items: flex-start !important;
    }
    
    /* M. Ensure OUR SERVICES section keeps desktop styling on mobile */
    .services-section .services-title {
        font-size: 1.5rem !important;
    }
    .service-block__icon-wrapper {
        width: 60px !important;
        height: 60px !important;
        background-color: var(--primary-light) !important;
    }
    .service-block__icon-wrapper span {
        font-size: 1.8rem !important;
        color: var(--primary) !important;
    }
    .service-block__list li {
        font-size: 0.75rem !important;
        padding: 0.35rem 0.75rem !important;
        border-radius: 50px !important;
    }
    /* Prevent sticky hover bg change on mobile tap */
    .service-block:hover .service-block__icon-wrapper {
        background-color: var(--primary-light) !important;
    }
    .service-block:hover .service-block__icon-wrapper span {
        color: var(--primary) !important;
    }
    /* Active scroll state bg change for mobile view */
    .service-block.scroll-active .service-block__icon-wrapper {
        background-color: var(--primary) !important;
    }
    .service-block.scroll-active .service-block__icon-wrapper span {
        color: var(--white) !important;
    }
    
    /* N. Ensure Outpatient Clinics keeps desktop icon styling on mobile */
    .outpatient-pill .pill-icon {
        font-size: 2.4rem !important;
    }
    .outpatient-pill {
        padding: 1.25rem 1rem !important;
    }
    
    /* O. Ensure OUR EXCELLENCE keeps desktop styling on mobile */
    .excellence-section {
        background-color: #004D56 !important;
    }
    .excellence-title {
        color: var(--white) !important;
        font-size: 1.5rem !important;
    }
    .excellence-title span.teal-highlight {
        color: var(--secondary) !important;
    }
    .excellence-tag {
        color: var(--secondary) !important;
    }
    .excellence-subtitle {
        color: rgba(255, 255, 255, 0.75) !important;
    }
    .excellence-list-text h3 {
        color: var(--white) !important;
        font-size: 1.05rem !important;
    }
    .excellence-list-text p {
        color: rgba(255, 255, 255, 0.7) !important;
    }
    .excellence-icon-box {
        width: 55px !important;
        height: 55px !important;
        background-color: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
    }
    .excellence-icon-box span {
        font-size: 1.6rem !important;
        color: var(--secondary) !important;
    }
    .gallery-card img {
        height: 100px !important;
    }
    
    /* P. Ensure OUR APPROACH keeps desktop styling on mobile */
    .approach-steps {
        position: relative !important;
    }
    .approach-line {
        display: block !important;
        position: absolute !important;
        left: 48px !important; /* Center of the 56px icon (padding 1.25rem + 28px) */
        top: 48px !important; /* Center of first step icon */
        bottom: 100px !important; /* Stops near center of last card's icon */
        width: 2px !important;
        height: auto !important;
        background-color: var(--border-teal) !important;
        z-index: 1 !important;
    }
    .approach-step-card {
        background-color: var(--white) !important;
        border: 1px solid var(--border) !important;
        border-radius: var(--radius-lg) !important;
        box-shadow: var(--shadow-sm) !important;
        z-index: 2 !important; /* Run card on top of the vertical line */
    }
    .step-icon-wrapper {
        width: 56px !important;
        height: 56px !important;
        background-color: var(--primary-light) !important;
        border-radius: 12px !important;
        z-index: 3 !important;
    }
    .step-icon-wrapper span.material-symbols-outlined {
        font-size: 1.6rem !important;
        color: var(--primary) !important;
    }
    .step-num {
        width: 22px !important;
        height: 22px !important;
        font-size: 0.75rem !important;
        background-color: #0F2D4A !important;
    }
    .step-title {
        font-size: 1.1rem !important;
        color: #0F2D4A !important;
    }
    .step-desc {
        font-size: 0.85rem !important;
    }
    .step-bullets li {
        font-size: 0.82rem !important;
    }

    /* Q. Fixed size for rating card on mobile */
    .testimonial-card-fixed-wrapper {
        height: 255px !important;
    }
    .testimonial-slide-content {
        padding: 1.25rem 1.5rem !important;
    }
}

/* Global FAQ top reviews button alignment override */
.faq-reviews-btn {
    margin-right: 0 !important;
}

/* ==========================================
   ACADEMIC CONTRIBUTIONS SECTION (COMPACTED)
   ========================================== */

.about-redesign-academic-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.25rem auto;
}

.about-redesign-academic-badge {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #0d9488;
    display: inline-block;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.about-redesign-academic-flourish {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.25rem 0 0.75rem 0;
}

.about-redesign-academic-flourish::before,
.about-redesign-academic-flourish::after {
    content: '';
    height: 1px;
    width: 50px;
    background: linear-gradient(90deg, transparent, #BA974A, transparent);
    margin: 0 0.75rem;
}

.about-redesign-academic-flourish span {
    color: #BA974A;
    font-size: 1.15rem;
}

.about-redesign-academic-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.about-redesign-academic-header h2 span {
    color: #0d9488;
}

.about-redesign-academic-subtitle {
    font-size: 1rem;
    color: #475569;
    line-height: 1.5;
}

/* Stats card container - Compacted */
.about-redesign-academic-stats-card {
    background-color: var(--white);
    border: 1px solid rgba(13, 148, 136, 0.12);
    border-radius: 1.25rem;
    padding: 1.5rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.03);
    margin-bottom: 2.25rem;
}

.about-redesign-academic-stat-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 0.75rem;
}

.about-redesign-academic-stat-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.about-redesign-academic-stat-icon-box span {
    font-size: 1.2rem;
}

.about-redesign-academic-stat-icon-box.teal-icon {
    background-color: rgba(13, 148, 136, 0.06);
    border: 1px solid rgba(13, 148, 136, 0.15);
    color: #0d9488;
}

.about-redesign-academic-stat-icon-box.gold-icon {
    background-color: rgba(186, 151, 74, 0.06);
    border: 1px solid rgba(186, 151, 74, 0.15);
    color: #BA974A;
}

.about-redesign-academic-stat-value {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.about-redesign-academic-stat-value.teal-text {
    color: #004D56;
}

.about-redesign-academic-stat-value.gold-text {
    color: #BA974A;
}

.about-redesign-academic-stat-desc {
    font-size: 0.85rem;
    color: #0f172a;
    font-weight: 600;
    line-height: 1.3;
    max-width: 200px;
}

.about-redesign-academic-stat-divider {
    width: 1px;
    height: 45px;
    background-color: rgba(13, 148, 136, 0.15);
    flex-shrink: 0;
}

/* Cards grid - Compacted */
.about-redesign-academic-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.25rem;
}

.about-redesign-academic-card {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-redesign-academic-card:hover {
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.06);
    transform: translateY(-3px);
    border-color: rgba(13, 148, 136, 0.2);
}

.about-redesign-academic-card-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.about-redesign-academic-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-redesign-academic-card:hover .about-redesign-academic-card-img img {
    transform: scale(1.03);
}

.about-redesign-academic-card-body {
    padding: 1.25rem;
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    flex-grow: 1;
}

.about-redesign-academic-card-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-redesign-academic-card-icon-wrapper span {
    font-size: 1.2rem;
}

.about-redesign-academic-card-icon-wrapper.teal-circle {
    background-color: rgba(13, 148, 136, 0.06);
    border: 1px solid rgba(13, 148, 136, 0.15);
    color: #0d9488;
}

.about-redesign-academic-card-icon-wrapper.gold-circle {
    background-color: rgba(186, 151, 74, 0.06);
    border: 1px solid rgba(186, 151, 74, 0.15);
    color: #BA974A;
}

.about-redesign-academic-card-text {
    flex-grow: 1;
}

.about-redesign-academic-card-text h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #004D56;
    margin-bottom: 0.35rem;
}

.about-redesign-academic-card-text h4.gold-title {
    color: #BA974A;
}

.about-redesign-academic-card-text p {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.45;
}

/* Bottom Banner - Compacted */
.about-redesign-academic-banner {
    background-color: #f0fafb;
    border: 1px solid rgba(13, 148, 136, 0.15);
    border-radius: 1rem;
    padding: 1rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-redesign-academic-banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    flex-grow: 1;
}

.about-redesign-academic-banner-icon {
    font-size: 1.65rem !important;
    color: #0d9488;
    background-color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 77, 86, 0.05);
    flex-shrink: 0;
    border: 1px solid rgba(13, 148, 136, 0.1);
}

.about-redesign-academic-banner-content p {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
}

.about-redesign-academic-banner-leaves {
    position: absolute;
    right: 0;
    bottom: -15px;
    color: #0d9488;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.about-redesign-academic-banner-leaves svg {
    width: 100px;
    height: 100px;
    transform: rotate(-10deg);
}

/* Mobile responsive media queries - Compacted */
@media (max-width: 991px) {
    .about-redesign-academic-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .about-redesign-academic-header h2 {
        font-size: 1.85rem;
    }
    
    .about-redesign-academic-stats-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
        padding: 1.5rem 1rem;
    }
    
    .about-redesign-academic-stat-divider {
        display: none;
    }
    
    .about-redesign-academic-stat-col {
        padding: 0;
        width: 100%;
    }
    
    .about-redesign-academic-stat-desc {
        max-width: 100%;
        font-size: 0.8rem;
    }
    
    .about-redesign-academic-banner {
        padding: 1rem 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .about-redesign-academic-banner-content {
        flex-direction: row;
        align-items: center;
        width: 100%;
    }
    
    .about-redesign-academic-banner-content p {
        font-size: 0.88rem;
    }
    
    .about-redesign-academic-banner-leaves {
        display: none;
    }
}

/* View All Images Button styling */
.about-redesign-academic-action-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
    margin-top: -1rem;
}

.about-redesign-academic-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--white);
    color: #0d9488 !important;
    border: 1px solid rgba(13, 148, 136, 0.25);
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.05);
    text-decoration: none;
}

.about-redesign-academic-view-btn:hover {
    background-color: #f0fafb;
    border-color: #0d9488;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.1);
    color: #0d9488 !important;
}

.about-redesign-academic-view-btn span {
    font-size: 1.15rem;
}

@media (max-width: 768px) {
    .about-redesign-academic-action-row {
        justify-content: center;
        margin-top: -0.5rem;
        margin-bottom: 1.25rem;
    }
}

/* ==========================================================================
   GALLERY PAGE STYLES (MATCHING MOCKUP)
   ========================================================================== */

/* Gallery Hero styles are removed as they are obsolete. Gallery page uses the shared faq-hero styling. */

/* Section Title Flourish */
.gallery-section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0.75rem 0 2.5rem 0;
}

.gallery-section-divider__line {
    height: 1.5px;
    background: linear-gradient(to right, transparent, var(--secondary), transparent);
    width: 120px;
}

.gallery-section-divider__icon {
    color: var(--secondary);
    font-size: 1.25rem;
    font-variation-settings: 'FILL' 1;
}

/* Gallery Filter Section */
.gallery-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3.5rem;
}

.gallery-filter-btn {
    background-color: var(--white);
    border: 1px solid var(--border);
    color: var(--slate);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.65rem 1.65rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-bounce);
}

.gallery-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--primary-light);
    transform: translateY(-1px);
}

.gallery-filter-btn.is-active {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
    box-shadow: var(--shadow);
}

/* Gallery Cards Grid */
.gallery-page-grid {
    column-count: 3;
    column-gap: 2rem;
    width: 100%;
}

.gallery-page-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    position: relative;
    cursor: pointer;
    break-inside: avoid;
    margin-bottom: 2rem;
    display: inline-block;
    width: 100%;
}

.gallery-page-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-slow);
    display: block;
}

.gallery-page-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 1.25rem 1rem 1.25rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
    color: var(--white);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.gallery-page-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.gallery-page-card__category {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-light);
    letter-spacing: 0.05em;
}

.gallery-page-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.gallery-page-card:hover img {
    transform: scale(1.05);
}

.gallery-page-card:hover .gallery-page-card__overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Quote Card Styling */
.gallery-quote-card {
    background: linear-gradient(135deg, #f0fafb 0%, #ffffff 100%);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-teal);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    break-inside: avoid;
    margin-bottom: 2rem;
    width: 100%;
    min-height: 250px;
}

.gallery-quote-card::before {
    content: '“';
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 10rem;
    color: rgba(0, 168, 181, 0.07);
    font-family: Georgia, serif;
    line-height: 1;
}

.gallery-quote-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    z-index: 1;
    font-family: var(--font-heading);
}

.gallery-quote-text span {
    color: var(--primary);
}

.gallery-quote-author {
    font-size: 0.9rem;
    color: var(--slate);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1;
}

.gallery-quote-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    background: linear-gradient(135deg, #e0f6f8 0%, #ffffff 100%);
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .gallery-page-grid {
        column-count: 2;
        column-gap: 1.5rem;
    }
    
    .gallery-page-card, .gallery-quote-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575px) {
    .gallery-section {
        padding: 3.5rem 0;
    }
    
    .gallery-filters {
        gap: 0.5rem;
        margin-bottom: 2.25rem;
    }
    
    .gallery-filter-btn {
        padding: 0.5rem 1.15rem;
        font-size: 0.85rem;
    }
    
    .gallery-page-grid {
        column-count: 2;
        column-gap: 1rem;
    }
    
    .gallery-page-card, .gallery-quote-card {
        margin-bottom: 1rem;
    }
}

/* ==========================================================================
   REVIEWS PAGE - PATIENT STORIES MARQUEE (AUTOPLAY LOOP)
   ========================================================================== */
.reviews-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

/* Gradient fades on left and right for smooth entry/exit */
.reviews-marquee-wrapper::before,
.reviews-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.reviews-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.reviews-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.reviews-marquee {
    display: flex;
    width: max-content;
    animation: marquee-scroll-left 50s linear infinite;
}

.reviews-marquee-group {
    display: flex;
    gap: 1.5rem;
    padding-right: 1.5rem; /* Ensure gap between groups */
}

.reviews-marquee-card {
    width: 320px;
    height: 250px; /* Fixed height for perfect horizontal alignment */
    flex-shrink: 0;
    background: var(--light-teal);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0, 168, 181, 0.03);
    border: 1px solid var(--border-teal);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    position: relative;
    white-space: normal; /* Ensure text wraps correctly */
}

.reviews-marquee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 168, 181, 0.08);
    border-color: var(--primary);
}

.reviews-marquee-card .quote-icon {
    color: var(--primary);
    opacity: 0.08;
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    line-height: 1;
}

.reviews-marquee-card .quote-icon span {
    font-size: 2.25rem;
}

.reviews-marquee-card .testimonial-text {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--slate);
    margin-bottom: 0.75rem;
    font-style: italic;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Clamps text to 4 lines for compact height */
    -webkit-box-orient: vertical;
}

.reviews-marquee-card .testimonial-rating {
    display: flex;
    gap: 0.15rem;
    margin-bottom: 0.75rem;
}

.reviews-marquee-card .testimonial-rating span {
    color: #ffb800;
    font-size: 1rem;
}

.reviews-marquee-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid var(--border-teal);
    padding-top: 0.75rem;
}

.reviews-marquee-card .author-photo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--primary-light);
}

.reviews-marquee-card .author-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
}

.reviews-marquee-card .author-treatment {
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 600;
}

@keyframes marquee-scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .reviews-marquee-card {
        width: 290px;
        height: 230px;
        padding: 1.25rem;
    }
    .reviews-marquee-card .testimonial-text {
        -webkit-line-clamp: 3;
    }
    .reviews-marquee-wrapper::before,
    .reviews-marquee-wrapper::after {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .reviews-marquee-card {
        width: 260px;
        height: 220px;
        padding: 1.25rem 1rem;
    }
    .reviews-marquee-card .testimonial-text {
        -webkit-line-clamp: 3;
    }
    .reviews-marquee-wrapper::before,
    .reviews-marquee-wrapper::after {
        width: 40px;
    }
}



