@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- Brand CSS Variables --- */
:root {
    --primary-navy: #0D1B3D;
    --navy-light: #24385D;
    --champagne-gold: #C8A782;
    --deep-gold: #A98258;
    --white: #FFFFFF;
    --soft-ivory: #F7F3EE;
    --warm-cream: #FBF8F4;
    --text-primary: #17233D;
    --text-muted: #4B5563;
    --border-color: #E8EAED;
    --shadow-sm: 0 2px 4px rgba(13, 27, 61, 0.04);
    --shadow-md: 0 10px 20px rgba(13, 27, 61, 0.06);
    --shadow-lg: 0 20px 40px rgba(13, 27, 61, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --header-height: 80px;
}

/* --- Base & Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-navy);
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 12px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--champagne-gold);
}

h2.align-left::after {
    left: 0;
    transform: none;
}

p {
    color: var(--text-muted);
    font-size: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* --- Shared Layout Classes --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-bg-cream {
    background-color: var(--warm-cream);
}

.section-bg-ivory {
    background-color: var(--soft-ivory);
}

.section-bg-navy {
    background-color: var(--primary-navy);
    color: var(--white);
}

.section-bg-navy h2 {
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-header p {
    margin-top: 16px;
    font-size: 1.125rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600; /* Increased for better legibility and professional contrast */
    font-size: 0.95rem;
    line-height: 1.2; /* Fixed line height to prevent horizontal size drift */
    letter-spacing: 0.8px; /* More premium spacing */
    border-radius: 4px;
    white-space: nowrap; /* Prevent word-wrapping and line breakage */
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary-navy);
    color: var(--white);
    border-color: var(--primary-navy);
}

.btn-primary:hover {
    background-color: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md); /* Premium subtle shadow on hover */
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-navy);
    border-color: var(--primary-navy);
}

.btn-secondary:hover {
    background-color: var(--soft-ivory); /* Distinct soft fill to separate from primary hover */
    color: var(--primary-navy);
    border-color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-gold {
    background-color: var(--champagne-gold);
    color: var(--primary-navy);
    font-weight: 600;
}

.btn-gold:hover {
    background-color: var(--deep-gold);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--champagne-gold);
    border-color: var(--champagne-gold);
}

.btn-outline-gold:hover {
    background-color: var(--champagne-gold);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

/* --- Header & Navigation --- */
header {
    background: linear-gradient(to right, var(--white), var(--warm-cream));
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    fill: var(--primary-navy);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-navy);
    line-height: 1.1;
    margin: 0;
    padding: 0;
}

.logo-text h2::after {
    display: none;
}

.logo-tagline {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--champagne-gold);
    font-weight: 600;
    line-height: 1;
    margin-top: 2px;
    white-space: nowrap;
}

/* Desktop Navigation */
nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 28px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy-light);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--champagne-gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-navy);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-navy);
    font-weight: 600;
}

.mobile-only {
    display: none;
}

/* Desktop Header CTA */
.header-cta {
    display: inline-flex;
    padding: 11px 22px !important; /* Sleeker size for header integration */
    font-size: 0.9rem !important;
    background-color: var(--champagne-gold) !important;
    color: var(--primary-navy) !important;
    border-color: var(--champagne-gold) !important;
    box-shadow: 0 4px 10px rgba(200, 167, 130, 0.15);
}

.header-cta:hover {
    background-color: var(--deep-gold) !important;
    border-color: var(--deep-gold) !important;
    color: var(--white) !important;
    box-shadow: 0 6px 14px rgba(169, 130, 88, 0.25);
    transform: translateY(-2px);
}

/* Mobile Nav Drawer CTA */
.btn-mobile-cta {
    background-color: var(--champagne-gold) !important;
    color: var(--primary-navy) !important;
    border-color: var(--champagne-gold) !important;
    box-shadow: 0 4px 10px rgba(200, 167, 130, 0.15);
}

.btn-mobile-cta:hover {
    background-color: var(--deep-gold) !important;
    border-color: var(--deep-gold) !important;
    color: var(--white) !important;
    box-shadow: 0 6px 14px rgba(169, 130, 88, 0.25);
    transform: translateY(-2px);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}

.mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-navy);
    margin: 5px 0;
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 48px 0 64px; /* Reduced by another 10% */
    min-height: 550px; /* Reduced by another 10% */
    display: flex;
    align-items: center;
    background-color: var(--white);
    /* Faint precision grid lines pattern overlay */
    background-image: 
        linear-gradient(to right, rgba(230, 213, 184, 0.16) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(230, 213, 184, 0.16) 1px, transparent 1px);
    background-size: 40px 40px;
    color: var(--primary-navy);
    overflow: hidden; /* Prevent background elements from creating scrollbars */
}

/* Background elements styling */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.hero-glow-1 {
    top: -5%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 213, 184, 0.48) 0%, rgba(255, 255, 255, 0) 70%);
}

.hero-glow-2 {
    bottom: -15%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(245, 240, 230, 0.72) 0%, rgba(255, 255, 255, 0) 70%);
}

.hero-glow-3 {
    top: 25%;
    left: 45%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(220, 227, 235, 0.56) 0%, rgba(255, 255, 255, 0) 70%); /* Soft clinical-hydration blue glow */
}

.hero-bg-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-watermark {
    position: absolute;
    top: -5%;
    left: -2%;
    font-family: var(--font-heading);
    font-size: clamp(243px, 30.8vw, 445px); /* Reduced by another 10% */
    font-weight: 700;
    color: rgba(230, 213, 184, 0.14);
    line-height: 0.8;
    user-select: none;
    pointer-events: none;
    z-index: 1;
}

.hero-bg-left-circles {
    position: absolute;
    top: 5%;
    left: -5%;
    width: 365px; /* Reduced by another 10% */
    height: 365px; /* Reduced by another 10% */
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 500px 470px; /* Increased content column width to match visual weight of the image */
    column-gap: 72px; /* Increased gap for better balance */
    justify-content: space-between; /* Align content left and visual right */
    align-items: center; /* Vertically center columns to span whole text height */
    width: 100%;
    /* Max-width is inherited from .container (1200px) to align perfectly with the logo */
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 100%; /* Spans the full width of the 500px grid column */
}

.hero-tagline {
    font-size: 0.9rem; /* Increased size to match visual scale */
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--deep-gold);
    font-weight: 700;
    margin-bottom: 16px; /* Restored spacing */
    display: inline-block;
}

.hero h1 {
    font-size: 3.15rem; /* Increased size to balance visual weight */
    margin-bottom: 24px; /* Restored spacing */
    color: var(--primary-navy);
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.1rem; /* Increased description size for readability and premium feel */
    margin-bottom: 32px; /* Restored spacing */
    color: var(--navy-light);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center; /* Guarantee perfect vertical alignment of buttons */
    gap: 16px;
    margin-bottom: 39px; /* Reduced by another 10% */
}

/* --- Trust Strip --- */
.trust-strip {
    background-color: var(--primary-navy);
    border-top: 1px solid rgba(200, 167, 130, 0.3);
    border-bottom: 1px solid rgba(200, 167, 130, 0.3);
    padding: 16px 0; /* Sleeker vertical height */
    position: relative;
    z-index: 10;
}

.trust-strip-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Inherits standard .container max-width of 1200px for perfect alignment with header and hero columns */
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 10px; /* Tighter gap for balanced horizontal layout */
}

.trust-strip-title {
    font-family: var(--font-heading);
    font-size: 1.25rem; /* Elegant, scaled-down size */
    color: var(--champagne-gold);
    font-weight: 700;
    line-height: 1;
}

.trust-strip-desc {
    font-family: var(--font-body);
    font-size: 0.75rem; /* Matches tagline typography scale */
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    white-space: nowrap;
}

.hero-visual-wrapper {
    width: 470px; /* Reduced by another 10% */
    height: 470px; /* Reduced by another 10% */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0 12px 24px;
    box-sizing: border-box;
}

.hero-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center -10%;
    transform: translateY(-40px); /* Moderate upward translate to align top of head with tagline, keeping bottom aligned */
    
    /* CSS Linear Mask Gradient to smoothly fade out the bottom straight cutoff edge */
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 78%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 78%, transparent 100%);
}

.hero-analytics-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .hero {
        min-height: auto;
        padding: 48px 0 48px; /* Reduced by another 10% */
    }
    .hero-container {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        column-gap: 40px;
    }
    .hero-content {
        max-width: 500px; /* Increased content width on tablet viewports */
    }
    .hero-visual-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }
    .hero-portrait-img {
        transform: translateY(-20px); /* Rebalanced translation on tablet viewports */
    }
}



/* --- Home Quick Features --- */
.quick-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 0; /* Reset top margin to prevent overlapping with the trust strip directly above */
    position: relative;
    z-index: 10;
}

.feature-card {
    background-color: var(--white);
    padding: 38px 32px;
    border-radius: 12px; /* Smoother premium border-radius */
    border: 1px solid rgba(200, 167, 130, 0.18); /* Elegant structural outline */
    box-shadow: var(--shadow-md);
    border-bottom: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 167, 130, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 167, 130, 0.4);
    border-bottom-color: var(--champagne-gold);
    box-shadow: 0 15px 30px rgba(13, 27, 61, 0.07);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px; /* Modern squircle geometry */
    background-color: rgba(200, 167, 130, 0.12); /* Warm gold tint background */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--deep-gold);
}

.feature-card:hover .feature-card-icon {
    background-color: var(--primary-navy);
    color: var(--champagne-gold);
    transform: scale(1.05); /* Straight hover scale effect without rotation */
}

.feature-card-icon svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
    transition: stroke 0.3s ease;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--navy-light);
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* --- Doctor Section / Intro --- */
.section-doctor-intro {
    position: relative;
    overflow: hidden;
    background-color: var(--warm-cream); /* Solid luxury warm cream background */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Elegant clinical technical grid-line watermark overlay */
.section-doctor-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(200, 167, 130, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(200, 167, 130, 0.03) 1px, transparent 1px);
    z-index: 1;
    pointer-events: none;
}

/* Corner framing accents */
.doctor-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid transparent;
    pointer-events: none;
    z-index: 2;
    opacity: 0.35;
    transition: var(--transition);
}

.doctor-corner-tl {
    top: 40px;
    left: 40px;
    border-top-color: var(--champagne-gold);
    border-left-color: var(--champagne-gold);
}

.doctor-corner-br {
    bottom: 40px;
    right: 40px;
    border-bottom-color: var(--champagne-gold);
    border-right-color: var(--champagne-gold);
}

/* Wave graphic style */
.doctor-bg-wave {
    position: absolute;
    top: 22%;
    right: 3%;
    width: 280px;
    height: 60px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center; /* Center vertically to align text content and image perfectly */
    position: relative;
    z-index: 2;
}

.about-intro-visual-wrapper {
    position: relative;
    width: 100%;
    padding: 0 20px 20px 0; /* Space for the offset gold frame */
    box-sizing: border-box;
}

.about-intro-img-frame {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--champagne-gold);
    border-radius: 12px;
    z-index: 1;
    pointer-events: none;
    transform: translate(20px, 20px); /* Offset down and right in background */
    transition: var(--transition);
}

.about-intro-visual-wrapper:hover .about-intro-img-frame {
    transform: translate(12px, 12px); /* Parallax shift on hover */
    border-color: var(--deep-gold);
}

.about-intro-img {
    position: relative;
    z-index: 2; /* Sits on top of background frame */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
    background-color: var(--soft-ivory);
    transition: var(--transition);
    width: 100%;
    box-sizing: border-box;
}

.about-intro-visual-wrapper:hover .about-intro-img {
    transform: translateY(-4px); /* Lift image on hover */
    box-shadow: 0 30px 60px rgba(13, 27, 61, 0.14);
}

.about-intro-img img {
    width: 100%;
    height: auto; /* Fluid height scaling */
    aspect-ratio: 480/500; /* Lock to aspect ratio of the portrait frame */
    display: block;
    object-fit: cover; /* Fill frame container completely for JPEG photos */
}

/* Background elements for Doctor Section */
.doctor-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    z-index: 1;
    pointer-events: none;
}

.doctor-glow-1 {
    top: -15%;
    left: -15%;
    width: 450px;
    height: 450px;
    /* Soft champagne gold glow */
    background: radial-gradient(circle, rgba(200, 167, 130, 0.16) 0%, rgba(255, 255, 255, 0) 70%);
}

.doctor-glow-2 {
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    /* Warm rose/peach skin-health glow */
    background: radial-gradient(circle, rgba(230, 204, 191, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
}

.doctor-watermark {
    position: absolute;
    bottom: -5%;
    left: 42%;
    font-family: var(--font-heading);
    font-size: clamp(320px, 38vw, 550px);
    font-weight: 700;
    color: rgba(200, 167, 130, 0.04);
    line-height: 0.8;
    user-select: none;
    pointer-events: none;
    z-index: 1;
}

.doctor-bg-rings {
    position: absolute;
    top: -5%;
    right: 40%;
    width: 320px;
    height: 320px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.85;
}

.doctor-bg-molecule {
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 220px;
    height: 220px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
}

.about-intro-content h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.doc-credentials {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--deep-gold);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.about-intro-content p {
    margin-bottom: 20px;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Generous gap between flat text items */
    margin: 28px 0 0;
}

.credential-item {
    display: flex;
    align-items: center; /* Center icon and text vertically */
    gap: 16px;
    background: transparent; /* Remove card container backgrounds */
    padding: 0; /* Remove card padding */
    border-radius: 0;
    border: none; /* Remove card outlines */
    box-shadow: none; /* Remove card shadows */
    transition: none;
}

.credential-item:hover {
    transform: none;
    box-shadow: none;
}

.credential-icon-wrapper {
    width: 36px;
    height: 36px;
    background-color: rgba(200, 167, 130, 0.1); /* Subtle flat squircle badge background */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-gold);
    flex-shrink: 0;
}

.credential-icon-wrapper svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.credential-text h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.credential-text p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* --- Clinic About Section --- */
/* --- Clinic About Section --- */
.clinic-about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px; /* Generous gap for premium editorial layout */
    align-items: stretch; /* Stretch columns to match height and align perfectly */
    position: relative;
    z-index: 2;
}

.clinic-about-visual-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 20px 20px 0; /* Space for the offset frame */
    box-sizing: border-box;
}

.clinic-about-img-frame {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--champagne-gold);
    border-radius: 12px;
    z-index: 1;
    pointer-events: none;
    transform: translate(20px, 20px); /* Offset down and right in background */
    transition: var(--transition);
}

.clinic-about-visual-wrapper:hover .clinic-about-img-frame {
    transform: translate(12px, 12px); /* Parallax shift on hover */
    border-color: var(--deep-gold);
}

.clinic-about-img {
    position: relative;
    z-index: 2; /* Sits on top of background frame */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
    background-color: var(--soft-ivory);
    transition: var(--transition);
    height: 100%; /* Match content column height */
    width: 100%;
    box-sizing: border-box;
}

.clinic-about-visual-wrapper:hover .clinic-about-img {
    transform: translateY(-4px); /* Lift top element */
    box-shadow: 0 30px 60px rgba(13, 27, 61, 0.14);
}

.clinic-about-img img {
    width: 100%;
    height: 100%; /* Fill container height to align top and bottom with text content */
    object-fit: cover;
}

/* Background elements styling */
.about-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
}

.about-glow-1 {
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 167, 130, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
}

.about-glow-2 {
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 167, 130, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
}

.about-watermark {
    position: absolute;
    top: -10%;
    left: 35%;
    font-family: var(--font-heading);
    font-size: clamp(300px, 35vw, 500px);
    font-weight: 700;
    color: rgba(200, 167, 130, 0.05);
    line-height: 0.8;
    user-select: none;
    pointer-events: none;
    z-index: 1;
}

.about-bg-rings {
    position: absolute;
    bottom: -5%;
    right: -5%;
    width: 350px;
    height: 350px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.85;
}

.clinic-about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    line-height: 1.25;
}

.clinic-about-content p {
    margin-bottom: 28px;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Supporting points styling */
.supporting-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 28px;
}

.point-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.point-icon {
    width: 20px;
    height: 20px;
    color: var(--champagne-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.point-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.point-text h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.point-text p {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* --- Services Grid / Treatment Categories --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 48px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: var(--transition);
    text-align: left;
    text-decoration: none;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: transparent;
    transition: var(--transition);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    z-index: 10;
}

.service-card-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background-color: var(--soft-ivory);
}

.service-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card-content {
    padding: 34px 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--champagne-gold);
    box-shadow: var(--shadow-md);
}

.service-card:hover .service-card-img-wrapper img {
    transform: scale(1.04);
}

.service-card:hover::before {
    background-color: var(--champagne-gold);
}

.service-card:focus-visible {
    outline: 2px solid var(--champagne-gold);
    outline-offset: 4px;
}

.service-card-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: var(--warm-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    margin-bottom: 26px;
    transition: var(--transition);
}

.service-card:hover .service-card-icon-wrapper {
    background-color: var(--soft-ivory);
    color: var(--deep-gold);
}

.service-card-icon-wrapper svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 18px;
    line-height: 1.3;
}

.service-card-description {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.62;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card-link-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--primary-navy);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    margin-top: auto;
}

.service-card-link-arrow svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: var(--transition);
    margin-left: 4px;
}

.service-card:hover .service-card-link-arrow {
    color: var(--deep-gold);
}

.service-card:hover .service-card-link-arrow svg {
    transform: translateX(4px);
}

/* Page-level editorial spacing for treatments page grid */
#skin-disorders .services-grid,
#hair-scalp .services-grid,
#nail-disorders .services-grid,
#cosmetic-aesthetic .services-grid,
#clinical-procedures .services-grid {
    margin-top: 56px;
    margin-bottom: 56px;
}

/* Tablet Grid Override (768px - 1199px) */
@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }
}

.section-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--deep-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.services-cta-wrapper {
    text-align: center;
    margin-top: 16px;
}

.btn-treatments-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 2px solid var(--champagne-gold);
    padding: 6px 0;
    transition: var(--transition);
}

.btn-treatments-more:hover {
    color: var(--deep-gold);
    border-bottom-color: var(--deep-gold);
}

/* --- Treatments Page Custom Styles --- */
.treatments-page-hero {
    padding: 100px 0 80px;
    background-color: var(--soft-ivory);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.treatments-page-hero .container {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.treatments-page-hero h1 {
    font-size: 2.75rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
    line-height: 1.25;
}

.treatments-page-hero .hero-tagline {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--deep-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: inline-block;
}

.treatments-page-hero p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.treatments-page-hero .hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.treatments-category-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 48px 0 24px;
}

.category-nav-btn {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-navy);
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.category-nav-btn:hover {
    border-color: var(--champagne-gold);
    color: var(--deep-gold);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.category-nav-btn:focus-visible {
    outline: 2px solid var(--champagne-gold);
    outline-offset: 2px;
}

.treatments-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.treatment-detail-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.treatment-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: transparent;
    transition: var(--transition);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.treatment-detail-card:hover {
    transform: translateY(-4px);
    border-color: var(--champagne-gold);
    box-shadow: var(--shadow-md);
}

.treatment-detail-card:hover::before {
    background-color: var(--champagne-gold);
}

.treatment-detail-card:focus-visible {
    outline: 2px solid var(--champagne-gold);
    outline-offset: 4px;
}

.treatment-detail-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background-color: var(--warm-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    margin-bottom: 20px;
    transition: var(--transition);
}

.treatment-detail-card:hover .treatment-detail-card-icon {
    background-color: var(--soft-ivory);
    color: var(--deep-gold);
}

.treatment-detail-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2;
}

.treatment-detail-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
    line-height: 1.35;
}

.treatment-detail-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.clinic-note-box {
    background-color: var(--warm-cream);
    border-left: 4px solid var(--champagne-gold);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.clinic-note-box h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.clinic-note-box p {
    font-family: var(--font-body);
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.consultation-cta-section {
    text-align: center;
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 80px 0;
}

.consultation-cta-section h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 12px;
}

.consultation-cta-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--champagne-gold);
}

.consultation-cta-section p {
    color: var(--soft-ivory);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 20px auto 32px;
    opacity: 0.95;
    line-height: 1.6;
}

.consultation-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 36px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 15px;
    right: 25px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--soft-ivory);
    line-height: 1;
}

.star-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star-rating svg {
    width: 16px;
    height: 16px;
    fill: var(--champagne-gold);
}

.testimonial-text {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--soft-ivory);
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--champagne-gold);
}

.author-info h4 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.author-info p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Google Reviews Ticker (Homepage) --- */
.google-reviews-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.google-brand-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.google-logo-svg {
    width: 28px;
    height: 28px;
}

.google-stats h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
}

.google-stats p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Infinite Marquee Loop Carousel */
.marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0 20px;
}

/* Gradient fades at the edges for premium look */
.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--soft-ivory), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--soft-ivory), transparent);
}

.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused; /* Pause scrolling on hover so users can read reviews */
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 12px)); /* Shift by exactly half the track width (plus half the gap) to loop seamlessly */
    }
}

/* Authentic Google Review Card Styles */
.google-review-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
    width: 380px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(13, 27, 61, 0.02);
    transition: var(--transition);
    flex-shrink: 0;
}

.google-review-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 167, 130, 0.25);
    transform: translateY(-2px);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}

.reviewer-info h4 {
    font-size: 0.925rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 2px;
}

.reviewer-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.google-badge {
    color: #4285F4; /* Google Blue */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.review-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.review-stars {
    display: flex;
    gap: 2px;
    color: #F4B400; /* Google Star Gold */
}

.review-stars svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-text {
    font-size: 0.875rem;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
    font-family: var(--font-body);
}

/* Tablet & Mobile Override for Google Reviews Ticker */
@media (max-width: 768px) {
    .google-reviews-summary {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 16px;
    }
    
    .google-brand-block {
        flex-direction: column;
        gap: 8px;
    }
    
    .google-stats h3 {
        justify-content: center;
    }
    
    .marquee-container::before,
    .marquee-container::after {
        width: 60px; /* Slimmer fade grids on mobile */
    }
    
    .google-review-card {
        width: 310px; /* Slimmer cards on mobile to fit the viewport comfortably */
        padding: 16px;
    }
}

/* --- Gallery Layout --- */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    background-color: var(--soft-ivory);
}

.gallery-item-img {
    height: 280px;
}

.gallery-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-img img {
    transform: scale(1.04);
}

.gallery-item-caption {
    padding: 16px 20px;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

.gallery-item-caption h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
}

.gallery-item-caption p {
    font-size: 0.8rem;
    color: var(--deep-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Form Fields & Layouts --- */
.form-card {
    background-color: var(--white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--warm-cream);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-navy);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(13, 27, 61, 0.05);
}

textarea {
    height: 120px;
    resize: vertical;
}

.help-text {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 12px;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Contact Info Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
}

.contact-info-panel {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.contact-info-panel h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.contact-info-panel p {
    color: var(--soft-ivory);
    margin-bottom: 36px;
    font-size: 0.95rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: var(--navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--champagne-gold);
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.contact-item-text h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-item-text p {
    margin: 0;
    color: var(--soft-ivory);
    font-size: 0.95rem;
}

.contact-item-text a:hover {
    color: var(--champagne-gold);
}

.map-wrapper {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-wrapper iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* --- About Details Section --- */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 64px;
    align-items: start;
}

.about-bio-text {
    max-width: 100%;
}

.about-credentials-box {
    background-color: var(--warm-cream);
    padding: 32px 36px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--champagne-gold);
    box-shadow: var(--shadow-sm);
    height: auto;
    transition: var(--transition);
}

.about-credentials-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.about-credentials-timeline {
    position: relative;
    padding-left: 24px;
    border-left: 2px solid var(--border-color);
}

.timeline-item {
    margin-bottom: 32px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -29px; /* Centered precisely on the 2px line (24px padding + 5px offset) */
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--champagne-gold);
    border: 2px solid var(--warm-cream); /* Matches card background to prevent border clipping */
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.timeline-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.4;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- 404 Page Styles --- */
.error-page-wrapper {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-content {
    max-width: 500px;
}

.error-code {
    font-size: 6rem;
    font-family: var(--font-heading);
    color: var(--champagne-gold);
    line-height: 1;
    margin-bottom: 16px;
    font-weight: 700;
}

.error-content h1 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.error-content p {
    margin-bottom: 36px;
}

.error-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Footer --- */
footer {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 4px solid var(--champagne-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-about p {
    color: var(--soft-ivory);
    font-size: 0.9rem;
    margin-bottom: 24px;
    opacity: 0.8;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: var(--champagne-gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-services a {
    color: var(--soft-ivory);
    font-size: 0.95rem;
    opacity: 0.85;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--champagne-gold);
    padding-left: 4px;
    opacity: 1;
}

.footer-contact address {
    font-style: normal;
    color: var(--soft-ivory);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0.85;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--champagne-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item a:hover {
    color: var(--champagne-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--soft-ivory);
    opacity: 0.8;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--soft-ivory);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: var(--champagne-gold);
}

/* --- Mobile-First Media Queries --- */

/* Tablet Screen Breakpoint: 768px */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 16px;
    }
    .nav-link {
        font-size: 0.9rem;
    }
    header .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .hero h1 {
        font-size: 2.65rem; /* Rebalanced font size */
    }
    
    .quick-features-grid {
        grid-template-columns: 1fr;
        margin-top: 0;
        padding-top: 40px;
    }
    
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-intro-visual-wrapper {
        padding: 0 15px 15px 0; /* Align with tablet geometry */
    }
    
    .about-intro-img-frame {
        transform: translate(15px, 15px);
    }
    
    .about-intro-visual-wrapper:hover .about-intro-img-frame {
        transform: translate(10px, 10px);
    }
    
    .about-intro-img {
        height: auto; /* Reset stretched height */
    }
    
    .about-intro-img img {
        height: 400px;
    }
    
    .doctor-watermark {
        display: none; /* Hide large watermark */
    }
    
    .doctor-bg-rings,
    .doctor-bg-molecule,
    .doctor-bg-wave,
    .doctor-corner {
        display: none; /* Hide rings, molecule, wave, and corner accents on tablet/mobile */
    }
    
    /* Redundant services-grid media styles removed (cascades from @media (max-width: 1199px)) */
    
    .treatments-detail-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-credentials-box {
        padding: 32px 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .clinic-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .clinic-about-visual-wrapper {
        padding: 0 15px 15px 0; /* Match tighter mobile geometry */
    }
    
    .clinic-about-img-frame {
        transform: translate(15px, 15px);
    }
    
    .clinic-about-visual-wrapper:hover .clinic-about-img-frame {
        transform: translate(10px, 10px);
    }
    
    .clinic-about-img {
        height: auto; /* Reset stretched height on smaller viewports */
    }
    
    .clinic-about-img img {
        height: 400px;
    }
    
    .about-watermark {
        display: none; /* Hide large watermark on tablet/mobile */
    }
    
    .about-bg-rings {
        width: 250px;
        height: 250px;
    }
}

/* Mobile Screen Breakpoint: 767px and below */
@media (max-width: 767px) {
    :root {
        --header-height: 70px;
    }
    
    body {
        font-size: 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 48px 0 48px; /* Reduced by another 10% */
        min-height: auto;
        background-color: var(--white);
        background-image: none; /* Disable grid-line pattern on mobile viewports */
    }

    .hero-watermark {
        display: none; /* Hide large brand watermark letter on mobile viewports */
    }

    .hero-bg-left-circles {
        display: none; /* Hide decorative background circles on mobile viewports */
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center; /* Horizontally center content on mobile flex column */
        gap: 39px; /* Reduced by another 10% */
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-visual-wrapper {
        width: 100%;
        max-width: 388px; /* Reduced by another 10% */
        height: auto;
        aspect-ratio: 1/1;
        margin: 0 auto;
        transform: none; /* Reset vertical translation offset on mobile */
    }
    .hero-portrait-img {
        transform: none; /* Reset visual translation on mobile viewports */
    }
    
    .hero h1 {
        font-size: 2.0rem; /* Increased for mobile visual presence */
        margin-bottom: 16px;
    }

    .hero-desc {
        font-size: 0.95rem; /* Increased for better contrast and legibility on mobile */
        margin-bottom: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch; /* Stretch buttons to full width in mobile vertical stacks */
        gap: 12px;
        margin-bottom: 26px; /* Reduced by another 10% */
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .trust-strip {
        padding: 16px 0;
    }
    
    .trust-strip-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .trust-strip-item {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        width: 100%;
    }
    
    .trust-strip-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(200, 167, 130, 0.15);
        padding-bottom: 16px;
    }
    
    /* Navigation Hamburger Menu Drawer */
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 50px 30px 40px;
        gap: 18px;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
        transform: translateY(-15px);
        opacity: 0;
        pointer-events: none;
        box-shadow: 0 15px 35px rgba(13, 27, 61, 0.08);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(12px);
    }
    
    .nav-menu.active li {
        animation: slideInFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.06s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.12s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.18s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.24s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { animation-delay: 0.36s; }
    .nav-menu.active li:nth-child(7) { animation-delay: 0.42s; }
    
    @keyframes slideInFade {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-menu .nav-link {
        font-family: var(--font-heading);
        font-size: 1.45rem;
        font-weight: 600;
        color: var(--primary-navy);
        padding: 8px 0;
        display: inline-block;
        transition: var(--transition);
        position: relative;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--deep-gold);
        transform: scale(1.04);
    }
    
    .nav-menu .nav-link::after {
        display: none; /* Hide desktop underline */
    }
    
    /* Elegant active dot for mobile links */
    .nav-menu .nav-link.active::before {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 50%;
        transform: translateX(-50%);
        width: 6px;
        height: 6px;
        background-color: var(--deep-gold);
        border-radius: 50%;
    }
    
    .mobile-only {
        display: block;
    }
    
    .nav-menu .btn-mobile-cta {
        display: inline-flex !important;
        justify-content: center;
        align-items: center;
        background-color: var(--deep-gold) !important;
        border-color: var(--deep-gold) !important;
        color: var(--white) !important;
        font-size: 1rem;
        font-weight: 600;
        padding: 14px 28px;
        border-radius: 50px;
        width: 80%;
        margin-top: 15px;
        box-shadow: 0 4px 15px rgba(169, 130, 88, 0.20);
        transition: var(--transition);
    }
    
    .nav-menu .btn-mobile-cta:hover {
        background-color: var(--primary-navy) !important;
        border-color: var(--primary-navy) !important;
        box-shadow: 0 6px 20px rgba(13, 27, 61, 0.25);
        transform: translateY(-2px);
    }
    
    /* Clinic Details Footer inside the menu drawer */
    .nav-menu::after {
        content: "Korde Skin Clinic \A +91 72524 15040 \A Washim, Maharashtra";
        white-space: pre-wrap;
        display: block;
        text-align: center;
        font-size: 0.8rem;
        color: var(--text-muted);
        opacity: 0.7;
        margin-top: auto;
        padding-top: 25px;
        border-top: 1px solid var(--border-color);
        width: 75%;
        line-height: 1.6;
        font-weight: 500;
        font-family: var(--font-body);
    }
    
    .header-cta {
        display: none;
    }
    
    .services-grid,
    .testimonials-grid,
    .gallery-grid,
    .treatments-detail-grid,
    .quick-features-grid {
        grid-template-columns: 1fr;
    }
    
    .treatments-page-hero h1 {
        font-size: 2rem;
    }
    
    .treatments-page-hero {
        padding: 60px 0 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .form-card {
        padding: 24px;
    }
    
    .contact-info-panel {
        padding: 30px 24px;
    }
    
    .clinic-about-visual-wrapper {
        max-width: 388px;
        margin: 0 auto;
    }
    
    .clinic-about-img {
        height: auto; /* Reset stretched height on mobile viewport */
    }
    
    .clinic-about-img img {
        height: 300px;
    }
    
    .about-intro-visual-wrapper {
        max-width: 388px;
        margin: 0 auto;
    }
    
    .about-intro-img {
        height: auto; /* Reset stretched height on mobile viewport */
    }
    
    .about-intro-img img {
        height: 300px;
    }
    
    .supporting-points {
        gap: 16px;
        margin: 24px 0 32px;
        padding-top: 20px;
    }
}

/* Specific micro-fixes for extremely small mobile devices (320px) */
@media (max-width: 350px) {
    h1 {
        font-size: 1.85rem;
    }
    
    .hero h1 {
        font-size: 1.45rem; /* Reduced by another 10% */
    }
}

/* --- Before & After Section --- */
.before-after-section {
    background-color: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.before-after-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.before-after-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.ba-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: var(--warm-cream);
    border-bottom: 1px solid var(--border-color);
}

.ba-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: none;
}

.ba-badge {
    position: absolute;
    top: 12px;
    padding: 4px 10px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 2px 4px rgba(13, 27, 61, 0.15);
    pointer-events: none;
    text-transform: uppercase;
}

.ba-badge-before {
    left: 12px;
    background-color: rgba(75, 85, 99, 0.9); /* Clinical grey */
}

.ba-badge-after {
    right: 12px;
    background-color: var(--navy-light); /* Clinical navy */
}

.ba-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ba-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-navy);
    font-weight: 600;
    margin: 0;
}

.ba-card-content p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.before-after-cta {
    text-align: center;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.before-after-cta p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    margin: 0;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .before-after-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .before-after-section {
        padding: 60px 0;
    }
    
    .ba-image-container {
        aspect-ratio: 4 / 3; /* Keep visually large enough */
    }
}

/* --- Rebuilt Appointment Page Styles --- */
.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: stretch;
    margin-bottom: 40px;
}

.appointment-info-panel {
    background-color: var(--warm-cream);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.appointment-grid .form-card {
    padding: 40px;
}

.appointment-grid .section-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--champagne-gold);
    display: block;
    margin-bottom: 8px;
}

.info-heading {
    font-size: 1.6rem;
    color: var(--primary-navy);
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.info-heading::after {
    display: none; /* Remove default underline style if any */
}

.info-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.appointment-steps {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--champagne-gold);
    line-height: 1;
    width: 28px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.step-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.clinic-trust-box {
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.clinic-trust-box h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
    font-weight: 600;
}

.trust-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.trust-info-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.trust-icon {
    width: 16px;
    height: 16px;
    fill: var(--champagne-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.form-card-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--primary-navy);
    margin-bottom: 8px;
    text-align: left;
    font-weight: 700;
}

.form-card-title::after {
    display: none;
}

.form-card-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.5;
}

.form-section-group {
    margin-bottom: 28px;
}

.form-group-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary-navy);
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    font-weight: 600;
}

.required {
    color: #e11d48;
    margin-left: 2px;
}

.optional {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 4px;
}

.appointment-notice-box {
    background-color: var(--warm-cream);
    border-left: 3px solid var(--champagne-gold);
    padding: 16px;
    margin: 28px 0;
    border-radius: 4px;
}

.appointment-notice-box p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

.btn-booking-submit {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    background-color: var(--primary-navy);
    color: var(--white);
    border: 1px solid var(--primary-navy);
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-booking-submit:hover {
    background-color: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* --- Online Payment Card Styles --- */
.payment-card {
    background-color: var(--warm-cream);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    margin-top: 24px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--champagne-gold);
}

.payment-card .section-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--champagne-gold);
    display: block;
    margin-bottom: 8px;
}

.payment-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-navy);
    margin-bottom: 8px;
    font-weight: 700;
}

.payment-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.btn-payment-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    background-color: var(--champagne-gold);
    color: var(--primary-navy);
    border: 1px solid var(--champagne-gold);
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-payment-submit:hover {
    background-color: var(--deep-gold);
    border-color: var(--deep-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-payment-submit:focus-visible {
    outline: 2px solid var(--primary-navy);
    outline-offset: 2px;
}

.payment-support-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.4;
    text-align: center;
}

/* Responsive Overrides for Appointment Page */
@media (max-width: 1024px) {
    .appointment-grid {
        gap: 32px;
    }
    .appointment-info-panel {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .appointment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .appointment-info-panel {
        padding: 24px;
    }
    .form-card {
        padding: 24px;
    }
    .form-card-title {
        font-size: 1.5rem;
    }
    .payment-card {
        padding: 24px;
    }
    .payment-card-title {
        font-size: 1.4rem;
    }
    .btn-fast {
        width: 100%;
    }
}

/* --- Faster Booking Section Styles --- */
.faster-booking-card {
    margin-top: 48px;
    background-color: var(--warm-cream);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faster-booking-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--champagne-gold);
}

.faster-booking-content {
    text-align: left;
    max-width: 60%;
}

.faster-booking-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-navy);
    margin-bottom: 6px;
    font-weight: 700;
}

.faster-booking-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}

.faster-booking-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-fast {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    min-width: 150px;
    cursor: pointer;
}

.btn-fast-call {
    background-color: var(--primary-navy);
    color: var(--white);
    border: 1px solid var(--primary-navy);
}

.btn-fast-call:hover {
    background-color: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-fast-wa {
    background-color: #25D366;
    color: var(--white);
    border: 1px solid #25D366;
}

.btn-fast-wa:hover {
    background-color: #20BA5A;
    border-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Responsive overrides for Faster Booking Section */
@media (max-width: 991px) {
    .faster-booking-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
    }
    .faster-booking-content {
        text-align: center;
        max-width: 100%;
    }
    .faster-booking-buttons {
        width: 100%;
        justify-content: center;
    }
    .btn-fast {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .faster-booking-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .btn-fast {
        width: 100%;
        max-width: 100%;
    }
}

/* --- Rebuilt About Page Styles --- */
.about-meet-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-portrait-container {
    position: relative;
    padding: 16px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.about-portrait-container:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--champagne-gold);
}

.about-portrait-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
}

.about-portrait-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.doctor-key-highlights {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    background-color: var(--primary-navy);
    padding: 20px 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(200, 167, 130, 0.15);
}

.doctor-key-highlights .highlight-divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    height: 40px;
    align-self: center;
}

@media (max-width: 576px) {
    .doctor-key-highlights {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 24px 16px;
    }
    .doctor-key-highlights .highlight-divider {
        display: none;
    }
}

/* Horizontal Journey Timeline */
.journey-timeline-desktop {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 48px;
}

.journey-timeline-desktop::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.journey-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 15px;
    z-index: 2;
}

.journey-step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--champagne-gold);
    color: var(--primary-navy);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.journey-step:hover .journey-step-num {
    background-color: var(--champagne-gold);
    color: var(--white);
    transform: scale(1.1);
}

.journey-step h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.journey-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.journey-timeline-mobile {
    display: none;
}

/* Clinical Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.expertise-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--champagne-gold);
}

.expertise-card-icon {
    color: var(--champagne-gold);
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
}

.expertise-card-icon svg {
    width: 100%;
    height: 100%;
}

.expertise-card h4 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.expertise-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Consultation Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.approach-step {
    position: relative;
}

.approach-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--border-color);
    opacity: 0.5;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 12px;
    transition: var(--transition);
}

.approach-step:hover .approach-num {
    color: var(--champagne-gold);
    opacity: 0.8;
}

.approach-step h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.approach-step p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Philosophy Pillars */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.philosophy-pillar {
    text-align: center;
    padding: 32px 24px;
}

.philosophy-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--warm-cream);
    color: var(--deep-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.philosophy-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.philosophy-pillar h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.philosophy-pillar p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* About Clinic Layout */
.about-clinic-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 0;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
    cursor: pointer;
    outline: none;
}

.faq-question-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    color: var(--champagne-gold);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding-top: 0;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.faq-item.active .faq-question-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    padding-top: 12px;
}

/* Responsive overrides for rebuilt About page */
@media (max-width: 991px) {
    .about-meet-grid,
    .about-clinic-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .journey-timeline-desktop {
        display: none;
    }
    
    .journey-timeline-mobile {
        display: block;
        position: relative;
        padding-left: 32px;
        border-left: 2px solid var(--border-color);
        margin-top: 30px;
        margin-bottom: 20px;
    }
    
    .journey-step-mobile {
        margin-bottom: 32px;
        position: relative;
        text-align: left;
    }
    
    .journey-step-mobile:last-child {
        margin-bottom: 0;
    }
    
    .journey-step-mobile::before {
        content: '';
        position: absolute;
        left: -39px;
        top: 2px;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background-color: var(--white);
        border: 3px solid var(--champagne-gold);
    }
    
    .journey-step-mobile-num {
        font-family: var(--font-heading);
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--champagne-gold);
        margin-bottom: 4px;
        display: block;
    }
    
    .journey-step-mobile h4 {
        font-family: var(--font-body);
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--primary-navy);
        margin-bottom: 6px;
    }
    
    .journey-step-mobile p {
        font-size: 0.875rem;
        color: var(--text-muted);
        line-height: 1.45;
    }
    
    .expertise-grid,
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .philosophy-pillar {
        padding: 8px 0;
    }
}

@media (max-width: 480px) {
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 990;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1EA850;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 168, 80, 0.4);
    color: var(--white);
}

.whatsapp-icon {
    display: block;
    width: 20px;
    height: 20px;
}

.whatsapp-handset {
    fill: #25D366;
    transition: fill 0.3s ease;
}

.whatsapp-float:hover .whatsapp-handset {
    fill: #1EA850;
}

.whatsapp-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Mobile responsive styles */
@media (max-width: 767px) {
    .whatsapp-float {
        bottom: calc(16px + env(safe-area-inset-bottom));
        right: 16px;
        width: 52px;
        height: 52px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .whatsapp-float:hover {
        transform: scale(1.05);
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }
}
