/* Base Reset and Tokens */
:root {
    /* Color Strategy: Blush & Terracotta Nude Palette with High Contrast */
    --accent: #8E6357; /* Vibrant terracotta/rose to pop */
    --accent-hover: #6E493F;
    
    /* Background: Warm Off-White for clean breathing room */
    --surface: #FDFBFA; 
    
    /* Alternate Background: Distinct Soft Blush for section contrast */
    --surface-alt: #F4EAE8; 
    
    /* Ink: Very dark warm charcoal for high legibility */
    --ink: #3A2B27;
    --ink-muted: #755F5A;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spacing & Sizes */
    --spacing-sm: 1rem;
    --spacing-md: 2.5rem;
    --spacing-lg: 5rem;
    --spacing-xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px; /* Not over-rounded */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--surface);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.1;
    color: var(--ink);
    text-wrap: balance;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.01em;
}

em {
    font-style: italic;
    color: var(--accent);
}

p {
    font-size: 1.125rem;
    color: var(--ink-muted);
    max-width: 65ch;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
}

.section-header p {
    margin-top: 1rem;
    font-size: 1.25rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--accent);
    color: #fff;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 1.125rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: transparent;
    color: var(--ink);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 1.125rem;
    border: 1px solid var(--ink);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--ink);
    color: var(--surface);
}

/* Hero Inspired Wrap */
.hero-wrapper {
    padding: 1.5rem;
    background-color: var(--surface); /* Matching site background */
}

.hero-inspired {
    background: linear-gradient(135deg, #7A5B53 0%, #B89083 40%, #E6C5BE 100%);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    color: #FFF;
    display: flex;
    flex-direction: column;
    min-height: 90vh; /* Allow it to breathe within the wrapper */
}

/* Ambient Blobs for Glassmorphism */
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(230, 197, 190, 0.25) 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(138, 90, 68, 0.3) 0%, transparent 50%);
    z-index: 0;
}

.hero-glass-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.02); /* Subtle white frost */
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    z-index: 1; /* Above blobs, below content */
    pointer-events: none; /* No interaction */
}

/* Nav Pill Style */
.nav-pill-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    position: relative;
    z-index: 10;
}

.nav-group-left, .nav-group-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pill-btn {
    padding: 0.75rem 1.75rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
    color: #FFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pill-btn.active {
    background: #FFF;
    color: #7A5B53;
}

.pill-btn.ghost {
    background: rgba(255, 255, 255, 0.15);
}

.pill-btn.ghost:hover {
    background: rgba(255, 255, 255, 0.3);
}

.icon-btn {
    padding: 0;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    border-radius: 50%;
    color: #FFF;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.circle-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.circle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.active-circle {
    background: #FFF;
    color: #7A5B53;
    border-color: #FFF;
}

/* Hero Layout */
.hero-grid {
    display: flex;
    flex-grow: 1;
    position: relative;
    padding: 0 4rem;
    align-items: center; /* Vertically center */
    justify-content: center; /* Horizontally center */
}

/* Left Content becomes Center Content */
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items */
    text-align: center; /* Center text */
    max-width: 850px; /* Allow text to breathe */
    margin: 0 auto;
    position: relative;
    z-index: auto; /* Remove stacking context trap so children can layer with model */
}

@media (max-width: 768px) {
    .hero-left {
        padding: 2rem 1.5rem;
    }
}

.hero-headline {
    font-size: clamp(8rem, 22vw, 18rem); /* Increased size drastically */
    line-height: 0.9;
    font-weight: 500; 
    margin-top: -6rem; /* Shifted higher up */
    margin-bottom: -1rem; 
    letter-spacing: -0.04em;
    font-family: var(--font-heading); 
    position: relative;
    z-index: 2; /* Below the model */
    color: var(--surface);
    text-transform: uppercase;
    transform: scaleY(1.15); /* Stretched to make the letters physically taller */
}

.text-accent {
    color: var(--accent);
    font-family: var(--font-body); /* Clean sans-serif for the accent words to pop */
    font-weight: 700; /* Bold variation requested by the user */
}

.hero-subtext {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-top: 15vh; /* Pushes everything below the headline further down */
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 4; /* Above the model */
}

.text-accent {
    font-family: var(--font-heading);
    font-weight: 700; /* Bold variation requested by the user */
}

/* Pill Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 1rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 4; 
}

.badge-pill {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08); 
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s, transform 0.3s;
}

.badge-pill:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Right Model Container - Centered between headline and subtext */
.hero-model-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%; 
    z-index: 3; /* Above the headline (2), but below subtext/buttons (4) */
    pointer-events: none;
    opacity: 1; /* Removed transparency to block the text completely */
}

.hero-main-model {
    height: 100%;
    width: auto;
    object-fit: contain;
    opacity: 1; /* Removed transparency */
    mask-image: linear-gradient(to top, transparent 0%, black 15%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 15%);
}

/* Gallery Section - Glassmorphism Grid */
.gallery {
    background-color: transparent; /* Changed from surface so blobs are visible */
    position: relative;
    overflow: hidden;
}

.gallery-asymmetric {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 neat columns */
    gap: 2rem;
    max-width: 1050px; /* Constrain the width so cards remain compact */
    margin: 0 auto;
}

/* Override the old asymmetric spans to force a clean, organized row */
.item-large { grid-column: span 1; }
.item-portrait { grid-column: span 1; }
.item-square { grid-column: span 1; }

.gallery-item {
    background: rgba(255, 255, 255, 0.4); /* Stronger frosted glass for light bg */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 1); /* Crisp edge */
    border-radius: 30px; /* Reduced for smaller cards */
    padding: 1rem; /* Much smaller padding like a real polaroid */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Softer shadow */
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
}

.gallery-image-wrapper {
    flex-grow: 1;
    overflow: hidden;
    border-radius: 20px; /* Tighter inner radius */
    position: relative;
    aspect-ratio: 4/5 !important; /* Uniform, compact portrait shape for all images */
}

/* Remove asymmetric aspect ratios */
.item-large .gallery-image-wrapper { aspect-ratio: 4/5; }
.item-portrait .gallery-image-wrapper { aspect-ratio: 4/5; }
.item-square .gallery-image-wrapper { aspect-ratio: 4/5; }

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 1rem 0.5rem 0.2rem 0.5rem;
    color: var(--ink);
    text-align: center;
}

.gallery-caption h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem; /* Smaller font */
    margin-bottom: 0.2rem;
}

.gallery-caption p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ink-muted);
}

/* About Section - Rich Layout */
.about {
    background-color: var(--surface-alt);
    position: relative;
    overflow: hidden; /* Contain ambient blobs */
}

.ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

.blob-white {
    top: -10%;
    right: 10%;
    width: 600px;
    height: 600px;
    background-color: #FFFFFF;
}

.blob-rose {
    bottom: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background-color: #E6C5BE;
}

.blob-accent {
    width: 600px;
    height: 600px;
    background-color: var(--accent);
}

.about-layout-rich {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 3rem;
    align-items: center;
    /* Massive Glass Frame wrapping everything */
    background: rgba(255, 255, 255, 0.25); /* More translucent (was 0.45) */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 60px; /* Highly rounded for the large container */
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
    position: relative;
    z-index: 2; /* Content above blobs */
}

.about-visual {
    position: relative;
    padding: 2rem 0;
}

.about-img-main img {
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 60px 200px 60px 200px; /* Highly stylized organic/rounded look */
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.about-stamp {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: var(--surface);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stamp-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    fill: var(--accent);
}

.center-icon {
    position: absolute;
    font-size: 2.5rem;
    color: var(--ink);
    animation: counter-rotate 20s linear infinite;
}

@keyframes counter-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* Glassmorphism Card for Text */
.about-text-rich {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
}

.about-text-rich h2 {
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.5rem;
    color: var(--ink);
    font-weight: 300; /* Cleaner font weight */
    margin-bottom: 1.5rem;
    font-family: var(--font-body); /* Changed to body font for cleaner look */
    line-height: 1.4;
}

.about-text-rich p {
    margin-bottom: 2.5rem;
}

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

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.trust-item i {
    color: var(--accent);
    font-size: 1.75rem;
    background: oklch(from var(--accent) l c h / 0.08);
    padding: 1.25rem;
    border-radius: 50%; /* Completely round */
}

.trust-item h4 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.trust-item span {
    color: var(--ink-muted);
    font-size: 1rem;
}

/* Procedures Section */
.procedures {
    background-color: var(--surface);
    position: relative;
    overflow: hidden; /* Contain ambient blobs */
}

.procedures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.procedure-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 3rem 2.5rem;
    border-radius: 40px; /* Highly rounded matching the rest of the site */
    box-shadow: 0 15px 30px rgba(0,0,0,0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.procedure-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
    background: rgba(255, 255, 255, 0.65);
}

.card-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.procedure-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.procedure-desc {
    font-size: 1.125rem;
    color: var(--ink-muted);
    flex-grow: 1;
}

/* Testimonials Section - Masonry */
.testimonials {
    background-color: var(--ink);
    color: var(--surface);
    position: relative;
    overflow: hidden; /* Contain ambient blobs */
}

/* Force light text inside dark section */
.testimonials h2, 
.testimonials p, 
.testimonials .author-name, 
.testimonials .quote-text,
.testimonials .section-header p {
    color: var(--surface);
}

.testimonials .quotes-icon {
    color: rgba(255, 255, 255, 0.4);
}

.testimonials .author-proc {
    color: rgba(255, 255, 255, 0.7);
}

/* Old radial gradient removed since we use ambient blobs now */

/* Minimalist Glass Card Design */
.testimonials-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem; /* Tighter gap for smaller footprint */
    padding-top: 1rem;
    max-width: 1000px; /* Constrain grid width so cards don't become giant on wide screens */
    margin: 0 auto;
}

.testimonial-clean-card {
    background: rgba(255, 255, 255, 0.08); /* Increased white tint so it's visibly glass */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15); /* Stronger glass edge */
    border-radius: 30px; /* Reduced radius to match smaller size */
    padding: 2rem 1.5rem; /* Much smaller padding */
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* Softer shadow */
    transition: transform 0.4s ease, border-color 0.4s, background 0.4s;
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 100%; /* Ensures equal heights for organization */
}

.testimonial-clean-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.quote-text {
    font-family: var(--font-body); /* Sans-serif for maximum readability */
    font-size: 1rem; /* Smaller, more compact font */
    line-height: 1.5;
    margin-bottom: 1.5rem; /* Tighter margin */
    font-style: normal; /* Normal text is more legible than italic for paragraphs */
    color: var(--surface);
    font-weight: 300;
    flex-grow: 1; /* Pushes the author info perfectly to the bottom for even organization */
}

.author-info {
    margin-top: auto;
}

.author-info h4 {
    font-family: var(--font-heading); /* Serif for an elegant name signature */
    font-size: 1.2rem; /* Slightly smaller */
    font-weight: 600;
    color: var(--surface);
    margin-bottom: 0.1rem;
}

.author-info span {
    font-family: var(--font-body); /* Sans-serif for procedure */
    font-size: 0.85rem; /* Smaller secondary text */
    color: #E6C5BE; 
    font-style: italic;
}

.featured-testimonial .quote-text {
    font-size: 1.75rem;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--surface);
}

.author-proc {
    font-size: 0.875rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* FAQ Section */
.faq {
    background-color: var(--surface);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid oklch(from var(--ink) l c h / 0.1);
}

.accordion-trigger {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 2rem 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-trigger::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-trigger[aria-expanded="true"]::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content p {
    padding-bottom: 2rem;
}

/* Footer Section */
.footer {
    background-color: var(--surface-alt);
    text-align: center;
}

.footer-content h2 {
    margin-bottom: 1.5rem;
}

.footer-content p {
    margin: 0 auto 2.5rem;
}

.footer-legal {
    margin-top: var(--spacing-xl);
    font-size: 0.875rem;
    color: var(--ink-muted);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 100;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Motion / Reveals */
.motion-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.motion-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Reduced Motion fallback */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .motion-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Responsive */
/* Responsive Overrides for Inspired Hero */
@media (max-width: 1024px) {
    .hero-grid {
        text-align: center;
        padding: 0 1.5rem;
        flex-direction: column; 
        justify-content: center; /* Center everything vertically to fix the offset */
    }
    
    .hero-left {
        display: contents; /* Dissolve the container so children join the main grid */
    }
    
    .hero-badges {
        justify-content: center;
        order: 5;
    }
    
    .hero-cta-container {
        order: 4;
        margin-top: 0.5rem; /* Tighter */
    }
    
    .hero-subtext {
        margin: 0.5rem auto 0.5rem; 
        order: 3;
        font-size: 1.15rem; /* Increased size for better readability */
        line-height: 1.5;
    }
    
    .hero-model-container {
        position: relative;
        height: 50vh; 
        left: auto;
        right: auto;
        transform: none; 
        margin-top: -8rem; /* Dramatically pulled up to compensate for object-position: bottom */
        z-index: 3;
        order: 2; 
    }
    
    .hero-main-model {
        object-position: bottom; /* Pin to bottom so the gradient mask perfectly hits the edge of the photo */
        -webkit-mask-image: linear-gradient(to top, transparent 0%, black 20%);
        mask-image: linear-gradient(to top, transparent 0%, black 20%);
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        padding: 0;
    }
    
    .hero-inspired {
        border-radius: 0;
    }
    
    .nav-pill-container {
        padding: 1.5rem 1.5rem 0 1.5rem; /* Better top padding for the left alignment */
        justify-content: flex-start; /* Move logo to the top left */
    }
    
    .nav-group-left {
        display: none;
    }
    
    .hero-headline {
        font-size: clamp(5rem, 18vw, 8rem); 
        margin-top: 5rem; /* Pushed much further down to meet her lowered head */
        margin-bottom: 0; 
        order: 1; 
        width: 100%;
        text-align: center;
    }
    
    .hero-inspired {
        min-height: 100vh; /* Force exactly screen height */
        justify-content: center;
        padding-bottom: 3rem; /* Leave space for the arrow */
    }
    
    .scroll-indicator {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        color: #FFF;
        font-size: 1.5rem;
        opacity: 0.7;
        animation: subtleBounce 2s infinite ease-in-out;
        z-index: 10;
    }
    
    @keyframes subtleBounce {
        0%, 100% { transform: translate(-50%, 0); }
        50% { transform: translate(-50%, 8px); }
    }
    
    .hide-desktop {
        display: block; /* Only visible on mobile */
    }
    
    .hide-mobile {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .about-layout-rich {
        display: flex;
        flex-direction: column; 
        gap: 1.5rem; /* Neat vertical spacing */
        padding: 0; 
        border-radius: 0; 
        border: none; 
        background: transparent; 
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        align-items: center; /* Center the main structure */
    }
    
    .about-text-rich {
        display: contents; /* Keep DOM flat */
    }
    
    .about-text-rich h2 {
        order: 1; /* Headline top */
        text-align: center; /* Center headline */
        margin-bottom: 0; 
        font-size: 2rem; 
    }
    
    .lead-text {
        order: 2; /* Subhead immediately below headline */
        text-align: center; /* Center subheadline */
        margin-top: 0; 
        margin-bottom: 0;
        font-size: 1rem; 
    }
    
    .about-visual {
        order: 3; /* Photo exactly below subheadline */
        width: 320px; /* Increased size significantly for more impact */
        max-width: 90vw; /* Ensure it doesn't overflow very small screens */
        height: auto; 
        margin: -0.5rem auto 1rem auto; /* Negative top margin to pull it closer to the text */
    }
    
    .about-img-main img {
        border-radius: 20px 60px 20px 60px; 
        width: 100%;
        height: 380px; /* Made the photo much taller to show more detail */
        object-fit: cover;
    }
    
    .trust-grid {
        order: 4; /* List at the bottom */
        width: 100%; 
        text-align: left;
        gap: 1.5rem; 
        margin-top: 0;
    }
    
    .trust-item {
        flex-direction: row; /* Icon beside text */
        text-align: left; 
        align-items: flex-start; 
        padding: 0; 
        background: transparent; 
        backdrop-filter: none; 
        -webkit-backdrop-filter: none;
        border-radius: 0; 
        box-shadow: none; 
        border: none; 
        gap: 1rem; /* Space between icon and text */
    }
    
    .trust-item i {
        font-size: 1.75rem; /* Readable icon size */
        background: transparent; 
        padding: 0; 
        margin-bottom: 0;
        margin-top: 0;
    }
    
    .trust-item h4 {
        font-size: 1.1rem; 
        margin-bottom: 0.2rem;
    }
    
    .trust-item span {
        font-size: 0.9rem; 
    }
    
    .section-header {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .procedure-card {
        text-align: center;
        align-items: center;
    }
    
    /* Refined Mobile Glass Cards with Rich Details */
    .testimonials-grid-new {
        display: grid;
        grid-template-columns: 1fr; /* Force perfect single column */
        gap: 1.5rem; /* Slightly more space to accommodate rich details */
        padding: 0;
        margin: 0;
    }
    
    .testimonial-clean-card {
        min-width: 100%;
        border-radius: 24px; 
        background: rgba(255, 255, 255, 0.05); /* Flat, simple translucent color, NO glass blur */
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: 1px solid rgba(255, 255, 255, 0.1); 
        box-shadow: none; /* No deep shadow */
        padding: 2.5rem 1.5rem 2rem; 
        text-align: center; 
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        overflow: hidden;
    }
    
    /* Giant decorative quotation watermark */
    .testimonial-clean-card::before {
        content: "“";
        font-family: Georgia, serif;
        position: absolute;
        top: 10px; /* Safely inside the card to prevent being chopped by overflow:hidden */
        left: 15px;
        font-size: 5.5rem; /* Adjusted size to fit elegantly */
        color: rgba(255, 255, 255, 0.08);
        line-height: 1;
        pointer-events: none;
    }
    
    .testimonial-clean-card:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .testimonial-clean-card:hover {
        transform: translateY(-4px); 
        background: rgba(255, 255, 255, 0.08);
    }
    
    /* Remove injected stars */
    .testimonial-clean-card .author-info::before {
        display: none;
    }
    
    .testimonial-clean-card .author-info,
    .testimonial-clean-card .author-info h4,
    .testimonial-clean-card .author-info span {
        text-align: center; 
        position: relative;
        z-index: 2; /* Keep above watermark */
    }
    
    .quote-text {
        position: relative;
        z-index: 2;
        font-size: 1.05rem; /* Slightly larger text for readability */
        line-height: 1.6;
    }
}

@media (max-width: 900px) {
    .gallery-asymmetric {
        grid-template-columns: 1fr;
    }
    
    .item-large, .item-portrait, .item-square {
        grid-column: span 1;
    }

    .gallery-image-wrapper {
        aspect-ratio: auto !important;
        height: 250px; /* Reduced uniform height to make cards smaller on mobile */
    }
}

@media (max-width: 600px) {
    :root {
        --spacing-lg: 2.5rem; /* Significantly tighter spacing */
        --spacing-xl: 3rem; 
    }
    
    h2 {
        font-size: clamp(2rem, 4.5vw, 2.5rem) !important; /* Smaller section headers */
    }
    
    p {
        font-size: 1rem !important; /* Smaller body text */
    }
    
    .procedures-grid {
        grid-template-columns: 1fr; /* Stack procedures entirely */
    }

    .hero {
        padding-top: calc(var(--spacing-lg) * 2);
    }
    
    .badge-1, .badge-2 {
        position: static;
        width: 100%;
        margin-bottom: 1rem;
        justify-content: center;
    }
    
    .hero-badges {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100%; height: 100%;
        margin: 0;
        background: transparent;
        border: none;
        pointer-events: none; /* Let clicks pass through the container */
        z-index: auto; /* Remove strict stacking context so children can interleave */
        display: block;
    }
    
    .badge-pill {
        position: absolute;
        border-radius: 50px !important;
        background: rgba(255, 255, 255, 0.05) !important; /* Extremely transparent */
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2) !important; /* Very subtle border */
        padding: 0.7rem 1.4rem !important; /* Made larger */
        font-size: 0.95rem !important; /* Made larger */
        font-weight: 500;
        color: #FFF;
        pointer-events: auto;
        white-space: nowrap;
        margin: 0 !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        animation: floatingBubble 5s ease-in-out infinite; /* Slowed down for an elegant, gentle float */
        will-change: transform; 
    }
    
    @keyframes floatingBubble {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); } /* Smaller, softer movement */
    }
    
    /* Position them artistically around the model's portrait area, but closer to the center */
    /* Z-index interleaved with the model (which is z-index 3) to create 3D depth */
    /* Negative delays used so they start moving IMMEDIATELY on load without waiting */
    .badge-pill:nth-child(1) { top: 38%; left: 15%; animation-delay: 0s; z-index: 4; } 
    .badge-pill:nth-child(2) { top: 34%; right: 15%; animation-delay: -1.5s; z-index: 2; } 
    .badge-pill:nth-child(3) { top: 58%; left: 12%; animation-delay: -3s; z-index: 4; } 
    .badge-pill:nth-child(4) { top: 52%; right: 12%; animation-delay: -2s; z-index: 2; } 
    
    .btn-primary, .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem; /* Smaller padding */
        font-size: 1rem; /* Smaller text */
    }
    
    /* WhatsApp Mobile Hidden Default */
    .whatsapp-float {
        transform: scale(0);
        opacity: 0;
        pointer-events: none; /* Prevent accidental clicks when invisible */
    }
    
    .whatsapp-float.show-float {
        transform: scale(1);
        opacity: 1;
        pointer-events: auto;
    }
}
