@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ==========================================================================
   1. ROOT VARIABLES & PREMIUM BRAND PALETTE
   ========================================================================== */
:root {
    /* Colors */
    --bg-main: #0A0A0A;
    --bg-surface: #141414;
    --bg-accent: #1A1A1A;
    --brand-gold: #C5A859;
    --brand-dark: #FFFFFF;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --border-light: rgba(255, 255, 255, 0.05);

    /* Typography & Animation */
    --font-main: "Montserrat", sans-serif;
    --font-editorial: "Playfair Display", serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   2. GLOBAL RESETS & TYPOGRAPHY
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2 {
    font-family: var(--font-editorial);
    font-weight: 400;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

h3 {
    font-family: var(--font-main);
    font-weight: 600;
    color: var(--text-main);
}

/* ==========================================================================
   3. PREMIUM SCROLL ANIMATIONS (INTERSECTION OBSERVER)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   SITE HEADER WRAPPER (Fixes Overlaps and Gaps)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    display: flex;
    flex-direction: column; /* This naturally stacks the strip and navbar */
}

/* ==========================================================================
   TOP URGENCY STRIP (Red Promo Theme + Links)
   ========================================================================== */
.top-promo-strip {
    background: #dc2626; /* Strong, high-conversion crimson red */
    color: #FFFFFF;
    height: 40px; /* Slightly taller to accommodate clickable links comfortably */
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 1000;
}

.tps-marquee-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.tps-marquee-track {
    display: flex;
    width: max-content;
    /* 30s controls the speed. Smooth and readable. */
    animation: promo-scroll 30s linear infinite;
}

/* Pauses the scrolling if a user hovers their mouse so they can click the link */
.tps-marquee-track:hover {
    animation-play-state: paused;
}

.tps-marquee-content {
    display: flex;
    align-items: center;
    gap: 20px; 
    padding-right: 20px; 
}

.tps-msg {
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

/* The Clickable 'Check Availability' Link */
.tps-link {
    color: var(--brand-gold);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-left: 10px;
    transition: opacity 0.3s ease;
}

.tps-link:hover {
    opacity: 0.7;
}

/* Dot separator */
.tps-divider {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    line-height: 1;
}

/* The seamless loop math */
@keyframes promo-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .top-promo-strip { height: 40px; }
    .tps-msg { font-size: 0.75rem; }
    .tps-link { margin-left: 6px; }
    .tps-marquee-content { gap: 20px; padding-right: 20px; }
    .tps-marquee-track { animation-duration: 22s; } /* Slightly faster on small screens */
}



/* ==========================================================================
   MAIN NAVBAR
   ========================================================================== */
.navbar {
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
    padding: 10px 5%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-link { text-decoration: none; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-main { font-weight: 700; font-size: clamp(1.4rem, 2vw, 1.6rem); letter-spacing: 1px; color: var(--text-main); }
.brand-sub { font-size: clamp(0.55rem, 1vw, 0.65rem); letter-spacing: 4px; color: var(--brand-gold); margin-top: 2px; font-weight: 600; }

.nav-links {
    list-style: none;
    display: flex;
    gap: clamp(1rem, 2vw, 2.5rem);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover { color: var(--brand-gold); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Primary Navigation CTA (WhatsApp) */
.nav-cta-wa {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25d365d8;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    min-height: 40px;
}

.nav-cta-wa svg { width: 16px; height: 16px; }
.nav-cta-wa:hover { background: #1da851; transform: translateY(-2px); }

/* Secondary Navigation CTA (Call) */
.nav-cta-call {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: var(--transition);
}

.nav-cta-call svg { width: 16px; height: 16px; }
.nav-cta-call:hover { background: var(--brand-gold); color: #000; }

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #FFF;
    cursor: pointer;
    padding: 5px;
    min-width: 44px; 
    min-height: 44px;
}

.mobile-toggle svg { width: 28px; height: 28px; transition: var(--transition); }

/* ==========================================================================
   NAVBAR RESPONSIVE FIXES (TABLET & MOBILE)
   ========================================================================== */

@media (max-width: 950px) {
    .mobile-toggle { display: block; }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        gap: 30px;
        border-bottom: 1px solid var(--border-light);
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s ease;
    }

    /* JavaScript trigger class */
    .nav-links.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .nav-links a { font-size: 1.2rem; }
}

/* Very Small Screens */
@media (max-width: 450px) {
    .top-urgency-strip p {
        font-size: 0.75rem;
    }
    
    .nav-cta-text { display: none; }
    
    .nav-cta-wa {
        padding: 0;
        width: 40px;
        height: 40px;
        justify-content: center;
        border-radius: 50%;
    }
    
    .nav-cta-wa svg { margin: 0; width: 20px; height: 20px; }
}

/* ==========================================================================
   5. HERO SECTION (Fixed Overlap)
   ========================================================================== */
.hero {
    position: relative;
    /* Changed from height: 90vh to min-height to prevent squishing on small phones */
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    /* THE OVERLAP FIX: Massive padding-top to clear the fixed header */
    padding: 160px 5% 60px; 
    margin-top: 0; /* Removed margin to ensure background image touches the top */
    
    background: url('https://res.cloudinary.com/dnmzvjmzy/image/upload/f_auto,q_auto/v1773942622/hero_section_main_imagejpg_o9yrmb.webp') center/cover no-repeat;
}

/* Adjust the padding for mobile where the header might be slightly taller due to text wrapping */
@media (max-width: 650px) {
    .hero {
        padding-top: 180px; 
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #FFF;
}

.badge {
    display: inline-block;
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFF;
}

.highlight {
    color: var(--brand-gold);
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
/* --- NEW HERO UI ELEMENTS --- */

.urgency-badge {
    display: inline-block;
    background: rgba(220, 38, 38, 0.15); 
    border: 1px solid #dc2626;
    color: #fca5a5;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366; 
    color: #FFF;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #FFF;
    border: 2px solid var(--brand-gold);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--brand-gold);
    color: #0A0A0A;
    transform: translateY(-3px);
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust-badges span {
    font-size: 0.85rem;
    color: #E0E0E0;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 14px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

/* Mobile Fixes for the New Hero Layout */
@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .btn-whatsapp, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .hero-trust-badges {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        border-top: none;
        padding-top: 10px;
    }
}

.btn-primary {
    display: inline-block;
    background: var(--brand-gold);
    color: #0A0A0A;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(197, 168, 89, 0.2);
}

.btn-primary:hover {
    background: #FFF;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}


/* --- REFINED HERO TYPOGRAPHY --- */
.premium-headline {
    font-family: var(--font-editorial);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.15; /* Tighter line height prevents floating text */
    margin-bottom: 24px;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.premium-headline .highlight {
    color: var(--brand-gold);
    /* font-style: italic; Adds an editorial, high-end magazine feel */
    font-weight: 600;
}

.hero-subtext {
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
}

/* --- REFINED WHATSAPP BUTTON --- */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1EBE5D; /* Slightly deeper, richer green */
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(30, 190, 93, 0.25);
}

.btn-whatsapp:hover {
    background: #179B4A;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 190, 93, 0.35);
}

/* --- RESTORED SOCIAL PROOF STRIP --- */
.social-proof-strip {
    background: var(--bg-surface);
    padding: 20px 5%;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Helps separate from the hero image */
}

.proof-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.proof-item {
    font-family: var(--font-main);
    font-weight: 500;
    color: #E0E0E0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Ensure mobile layout still stacks nicely */
@media (max-width: 768px) {
    .proof-content {
        gap: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* --- 1. OVERLAY & CONTAINER (Contrast & Focus) --- */
.hero-overlay {
    position: absolute;
    inset: 0;
    /* Darker, smooth linear gradient ensures text pops effortlessly */
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.80) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px; /* Reduced width to force a clean, readable text block */
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* --- 2. URGENCY BADGE (Rhythm & Placement) --- */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #E0E0E0;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px; /* Tighter connection to the headline */
    backdrop-filter: blur(5px);
}

/* --- 3. HEADLINE HIERARCHY (Two Lines & Size Adjustment) --- */
.premium-headline {
    font-family: var(--font-editorial); /* Uses your Playfair Display serif font */
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 400; /* Standard, elegant weight (not bold) */
    color: #FDFBF7; /* A very soft off-white to soften the contrast slightly */
    letter-spacing: -0.5px;
}

.premium-headline .highlight {
    font-family: var(--font-editorial);
    color: var(--brand-gold); /* The elegant copper/rust color from your image */
    font-weight: 400; 
    font-style: italic; /* The true italic slant seen in "chosen by top doctors"*/
    font-size: .8em; /* Kept the same size so it flows naturally like a sentence */
    display: inline-block;
    margin-top: 8px;
}

.hero-subtext {
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px; /* Generous breathing room before the action buttons */
    max-width: 550px; /* Narrower than the headline to create a visual funnel */
    font-weight: 400;
}

/* --- 4. BALANCED CTA BUTTONS (Color Strategy) --- */
.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.btn-primary-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d365ef; /* Deep premium dark to maintain luxury feel */
    color: #FFFFFF;
    border: 1px solid rgba(37, 211, 102, 0.4); /* Subtle WhatsApp green hint */
    padding: 15px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary-wa:hover {
    background: #1A1A1A; /* Fills with green on hover for clear interactive feedback */
    color: var(--text-main);
    border-color: #25D366;
    transform: translateY(-2px);
}

.btn-primary-wa:hover svg {
    fill: var(--text-main); /* Icon adapts to hover state */
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.25); /* Muted border so it doesn't fight the primary */
    padding: 15px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 550;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--brand-gold);
    color: #0A0A0A;
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .btn-primary-wa, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}



/* ==========================================================================
   6. GLOBAL SECTIONS & SOCIAL PROOF STRIP
   ========================================================================== */
.services-section,
.location-section,
.gallery-section,
.google-reviews-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.social-proof-strip {
    background: var(--bg-accent);
    padding: 20px 5%;
    border-bottom: 1px solid var(--border-light);
}

.proof-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.proof-item {
    font-weight: 500;
    color: #CCCCCC;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   7. LOOKBOOK GALLERY (LOOPING MARQUEE & CONVERSION)
   ========================================================================== */
.gallery-section {
    padding: 50px 0; /* Removed side padding so marquee touches screen edges */
    max-width: 100%;
    background: var(--bg-main);
}

.gallery-section .section-header {
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollGallery 30s linear infinite; /* Slightly slower for better viewing */
    gap: 20px;
    padding-left: 20px; /* Prevents jumping loop */
}

/* Image Card Container */
.gallery-card {
    position: relative;
    width: 280px;
    height: 360px;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-light);
    overflow: hidden;
    cursor: pointer;
}

/* Real Image Tag for SEO */
.gallery-img-tag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover Context Overlay */
.gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    z-index: 2;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
}

/* Hover Interactions */
.gallery-card:hover .gallery-img-tag {
    transform: scale(1.08);
}

.gallery-card:hover::after,
.gallery-card:hover .gallery-overlay-text {
    opacity: 1;
    transform: translateY(0);
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); }
}

/* Post-Gallery CTA */
.gallery-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    padding: 0 5%;
}

.gallery-cta-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
    text-align: center;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .gallery-card {
        width: 240px;
        height: 320px;
    }
    
    /* Make text always slightly visible on mobile since there is no hover */
    .gallery-card::after {
        opacity: 0.7;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 40%);
    }
    .gallery-overlay-text {
        opacity: 1;
        transform: translateY(0);
        font-size: 1rem;
        bottom: 15px;
        left: 15px;
    }
}

/* Post-Gallery CTA Formatting */
.gallery-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    padding: 0 5%;
}

.gallery-cta-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.gallery-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

/* Inherits your existing .btn-primary-wa and .btn-secondary styles from the Hero section */

/* Mobile Adjustments for Dual Buttons */
@media (max-width: 600px) {
    .gallery-btns {
        flex-direction: column;
        width: 100%;
        max-width: 350px; /* Keeps buttons from stretching too wide on tablets */
        margin: 0 auto;
    }
    
    .gallery-btns .btn-primary-wa, 
    .gallery-btns .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   LOOKBOOK HEADLINE (Crash-Proof Fluid Scaling)
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 5%;
    width: 100%;
    overflow: hidden; /* Failsafe: Prevents anything inside from breaking page width */
}

.lookbook-heading {
    font-family: var(--font-editorial);
    /* This is the magic line. 
       Minimum size: 1.2rem
       Preferred size: 6vw (scales with screen)
       Maximum size: 2.5rem
    */
    font-size: clamp(1.2rem, 6vw, 2.5rem); 
    color: var(--text-main);
    line-height: 1.2;
    margin: 0 auto;
    letter-spacing: -0.5px;
}

.lookbook-heading .highlight-gold {
    color: var(--brand-gold);
    font-style: normal; /* Ensures it stays clean and readable */
}

/* ==========================================================================
   8. LUXURY EDITORIAL SERVICE CARDS
   ========================================================================== */
.services-section {
    position: relative;
    overflow: hidden;
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 50px; }
.eyebrow-text { display: block; color: var(--brand-gold); font-size: 0.85rem; font-weight: 700; text-transform: capitalize; letter-spacing: 2.5px; margin-bottom: 12px; }
.services-heading { font-family: var(--font-editorial); font-size: clamp(2.2rem, 5vw, 3rem); margin-bottom: 15px; line-height: 1.2; }
.services-heading .highlight-gold { color: var(--brand-gold); font-style: normal; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
    align-items: start;
}

/* Card Structure - Sharp, Elegant, Minimalist */
.luxury-card {
    background: #111111; /* Deepest grey, nearly black */
    border-radius: 12px; /* Sharper, more elegant corners */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.luxury-card:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 168, 89, 0.3); /* Subtle gold glow on hover */
}

/* Edge-to-Edge Image */
.lc-img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.lc-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.luxury-card:hover .lc-img-wrapper img {
    transform: scale(1.04);
}



/* ==========================================================================
   FLOATING URGENCY BADGES (Pill-Shaped & Animated)
   ========================================================================== */
.lc-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-main);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px; /* Fully rounded pill shape */
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px; /* Space between the dot and text */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* High-Urgency Variant (Red & Eye-Catching) */
.lc-badge.urgent {
    background: rgba(220, 38, 38, 0.85); /* Strong, urgent crimson */
    color: #FFFFFF;
    border: 1px solid #ef4444;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4); /* Red glow */
}

/* Standard Premium Variant (Gold & Understated) */
.lc-badge.info {
    background: rgba(10, 10, 10, 0.8);
    color: var(--brand-gold);
    border: 1px solid rgba(197, 168, 89, 0.4);
}

/* The "Heartbeat" Pulse Dot for Urgent Badges */
.lc-badge .dot {
    width: 6px;
    height: 6px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: inline-block;
    animation: badgePulse 1.5s infinite;
}

@keyframes badgePulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8); }
    70% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Content Area - Focus on Readability */
.lc-content {
    padding: 24px 24px 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.lc-title {
    font-family: var(--font-main);
    font-size: 1.35rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.lc-desc {
    color: #999999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ==========================================================================
   STATIC INCLUSIONS LIST (Permanently Visible)
   ========================================================================== */
.lc-inclusions {
    margin-top: auto; /* Pushes the list to the bottom, aligning all card heights */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.lc-check-list { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
}

.lc-check-list li { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    color: #BBBBBB; 
    font-size: 0.9rem; 
    line-height: 1.4;
}

.lc-check-list svg { 
    width: 16px; 
    height: 16px; 
    color: var(--brand-gold); 
    flex-shrink: 0;
}

/* Footer - Stacked Pricing & Button */
.lc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px 24px;
    background: #111111; 
}

.lc-price-block {
    display: flex;
    flex-direction: column;
}

.lc-price-label {
    font-size: 0.75rem;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.lc-price-value {
    font-size: 1.25rem;
    font-weight: 500; 
    color: #FFFFFF;
    line-height: 1;
}

.lc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1EBE5D; 
    color: #FFFFFF;
    padding: 10px 18px;
    border-radius: 6px; 
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.lc-cta-btn svg { width: 16px; height: 16px; }
.lc-cta-btn:hover { background: #179B4A; transform: translateY(-2px); }

/* ==========================================================================
   HOW TO BOOK BANNER
   ========================================================================== */
.how-to-book-section {
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.htb-title {
    font-family: var(--font-editorial);
    font-size: 2rem;
    color: #FFF;
    margin-bottom: 30px;
    font-weight: 400;
}

.htb-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.htb-step {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.htb-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--brand-gold);
    color: #0A0A0A;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(197, 168, 89, 0.3);
}

.htb-step p {
    color: #E0E0E0;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .lc-footer { flex-direction: column; align-items: flex-start; gap: 15px; padding: 16px 20px 20px;}
    .lc-cta-btn { width: 100%; justify-content: center; padding: 12px; }
    
    .how-to-book-section { padding: 30px 20px; }
    .htb-steps { flex-direction: column; gap: 10px; }
    .htb-step { padding: 10px; flex-direction: row; gap: 15px; text-align: left; }
    .htb-number { margin-bottom: 0; width: 35px; height: 35px; font-size: 1rem; flex-shrink: 0; }
}

/* Footer - Muted Price & Structured Button */
.lc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px 24px;
    background: #111111; /* Seamless blend */
}

.lc-price-block {
    display: flex;
    flex-direction: column;
}

.lc-price-label {
    font-size: 0.75rem;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.lc-price-value {
    font-size: 1.25rem;
    font-weight: 500; /* Less bold, more elegant */
    color: #FFFFFF;
    line-height: 1;
}

.lc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1EBE5D; 
    color: #FFFFFF;
    padding: 10px 18px;
    border-radius: 6px; /* Structured rectangle instead of bubbly pill */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.lc-cta-btn svg { width: 16px; height: 16px; }
.lc-cta-btn:hover { background: #179B4A; transform: translateY(-2px); }

/* Mobile Adjustments */
@media (max-width: 400px) {
    .lc-footer { flex-direction: column; align-items: flex-start; gap: 15px; padding: 16px 20px 20px;}
    .lc-cta-btn { width: 100%; justify-content: center; padding: 12px; }
}

/* ==========================================================================
   SERVICE HIGHLIGHT TEXT
   ========================================================================== */
.lc-highlight {
    color: var(--brand-gold);
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Adjust the title margin slightly to accommodate the new line */
.lc-title { margin-bottom: 4px; }


/* ==========================================================================
   INTEGRATED "HOW TO BOOK" CTA
   ========================================================================== */
.htb-bottom-cta {
    margin-top: 40px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08); /* Subtle separator inside the box */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.htb-cta-title {
    font-family: var(--font-editorial);
    font-size: 1.6rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Reusing the urgency text class, but centering it for this layout */
.htb-urgency {
    justify-content: center;
    margin-top: 16px;
    font-size: 0.9rem;
}

/* Mobile Adjustments for the Bottom CTA */
@media (max-width: 600px) {
    .htb-bottom-cta {
        margin-top: 25px;
        padding-top: 25px;
    }
    
    .htb-cta-title {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }
}


/* ==========================================================================
   TRUST & PROCESS FUNNEL (Middle Funnel Sections)
   ========================================================================== */
.trust-funnel-wrapper {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 60px; /* Generous breathing room between sections */
}

.funnel-heading {
    font-family: var(--font-editorial);
    font-size: 2.2rem;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 400;
}

.funnel-heading.text-left {
    text-align: left;
    margin-bottom: 25px;
}

/* 1. Why Choose Us (Grid) */
.wu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.wu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.wu-item:hover {
    transform: translateY(-3px);
    border-color: rgba(197, 168, 89, 0.3);
}

.wu-item svg { width: 24px; height: 24px; flex-shrink: 0; }
.wu-item span { color: #E0E0E0; font-size: 1.05rem; font-weight: 500; }


/* 2. Who This Is For (Exclusive Glass Card) */
.who-for-section {
    display: flex;
    justify-content: center;
}

.who-for-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(197, 168, 89, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(197, 168, 89, 0.05);
    padding: 40px 50px;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
}

.who-for-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.who-for-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 400;
}

.who-for-list svg {
    width: 22px;
    height: 22px;
    color: var(--brand-gold);
    flex-shrink: 0;
}


/* 3. Signature Process (Horizontal Flow) */
.process-grid {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    gap: 20px;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-num {
    font-family: var(--font-editorial);
    font-size: 3.5rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(197, 168, 89, 0.6); /* Outline gold style */
    font-weight: 300;
    line-height: 1;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.process-step:hover .step-num {
    color: rgba(197, 168, 89, 0.15); /* Fills in slightly on hover */
}

.step-title {
    font-family: var(--font-main);
    color: #E0E0E0;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    max-width: 180px;
}

/* Connecting lines for Desktop */
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(197, 168, 89, 0.5), transparent);
    z-index: -1;
}

/* Mobile Adjustments for the Funnel */
@media (max-width: 768px) {
    .funnel-heading { font-size: 1.8rem; }
    
    .wu-grid { grid-template-columns: 1fr; gap: 15px; }
    
    .who-for-card { padding: 30px 25px; }
    .who-for-list li { font-size: 1rem; align-items: flex-start; }
    .who-for-list svg { margin-top: 2px; } /* Aligns icon with multi-line text */
    
    .process-grid { flex-direction: column; gap: 30px; align-items: flex-start; padding-left: 20px;}
    .process-step { flex-direction: row; gap: 20px; align-items: center; text-align: left; }
    .step-num { margin-bottom: 0; font-size: 3rem; }
    .step-title { max-width: 100%; }
    
    /* Remove horizontal lines and add vertical connecting lines for mobile */
    .process-step:not(:last-child)::after {
        top: 100%;
        left: 25px;
        width: 1px;
        height: 30px;
        background: linear-gradient(to bottom, rgba(197, 168, 89, 0.5), transparent);
    }
}


/* ==========================================================================
   9. AUTHENTIC GOOGLE REVIEWS SECTION
   ========================================================================== */
.google-reviews-section {
    max-width: 100%;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gr-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.gr-header-left h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.gr-header-left p {
    color: var(--text-main);
    font-size: 1.1rem;
}

.gr-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gr-aggregate {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gr-score {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1;
}

.gr-stars svg {
    width: 22px;
    height: 22px;
}

.gr-see-all {
    color: #8AB4F8;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 5px;
    display: inline-block;
    transition: var(--transition);
}

.gr-see-all:hover {
    color: #aecbfa;
    text-decoration: underline;
}

.reviews-slider-wrapper {
    position: relative;
    width: 100%;
}

.gr-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--bg-main);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.gr-arrow:hover {
    background-color: var(--brand-gold);
    color: #0A0A0A;
    border-color: var(--brand-gold);
}

.prev-arrow {
    left: -20px;
}

.next-arrow {
    right: -20px;
}

.gr-scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 15px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gr-scroll-container::-webkit-scrollbar {
    display: none;
}

.gr-card {
    min-width: 340px;
    max-width: 340px;
    scroll-snap-align: start;
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gr-card:hover {
    border-color: rgba(197, 168, 89, 0.4);
    transform: translateY(-3px);
}

.gr-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.gr-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gr-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.gr-name-date h4 {
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 2px;
}

.gr-name-date span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.gr-g-logo svg {
    width: 24px;
    height: 24px;
}

.gr-card-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
}

.gr-card-stars svg {
    width: 18px;
    height: 18px;
}

.gr-card-text {
    font-size: 0.95rem;
    color: #DDDDDD;
    line-height: 1.6;
}

/* ==========================================================================
   CLEAN REVIEWS CTA (Borderless)
   ========================================================================== */
.reviews-clean-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 70px; /* Generous space to separate it from the videos above */
    padding: 0 20px;
}

.rv-clean-title {
    font-family: var(--font-editorial);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #FFF;
    margin-bottom: 25px;
    font-weight: 400;
}

.rv-clean-btn {
    font-family: var(--font-main);
    display: inline-flex;
    justify-content: center;
    width: 100%;
    max-width: 380px; /* Keeps the button sleek */
    margin-bottom: 18px;
    font-size: 1.05rem;
    padding: 16px 24px;
}

.rv-clean-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fca5a5;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .reviews-clean-cta {
        margin-top: 50px;
    }
    .rv-clean-title {
        margin-bottom: 20px;
    }
    .rv-clean-urgency {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   ULTRA-CLEAN LOCATION SECTION (Borderless & Balanced)
   ========================================================================== */
.location-clean {
    padding: 100px 5%;
    background: var(--bg-main);
}

.loc-clean-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

/* --- Left Column: Content --- */
.loc-clean-content {
    display: flex;
    flex-direction: column;
}

.loc-clean-header {
    margin-bottom: 25px;
}

.loc-clean-header h2 {
    font-family: var(--font-editorial);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: #FFF;
    margin-bottom: 12px;
    line-height: 1.1;
}

.loc-clean-header .highlight-gold{
    color: var(--brand-gold);
}

.loc-clean-subline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #A0A0A0;
    font-size: 1.1rem;
    font-weight: 400;
}

.loc-clean-subline svg { width: 20px; height: 20px; flex-shrink: 0; }

.loc-clean-trust {
    font-family: var(--font-main);
    color: #E0E0E0;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.dot-gold {
    color: var(--brand-gold);
    margin: 0 8px;
}

.loc-clean-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #CCC;
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 40px;
}

.loc-clean-hours svg { width: 18px; height: 18px; color: var(--brand-gold); }

/* --- CTA Strategy --- */
.loc-clean-ctas {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 450px; /* Keeps the buttons from stretching too wide on massive screens */
}

.width-full {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1.05rem;
}

.loc-secondary-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-subtle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: #E0E0E0;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-subtle svg { width: 16px; height: 16px; color: #A0A0A0; transition: color 0.3s ease; }

.btn-subtle:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #FFF;
}
.btn-subtle:hover svg { color: var(--brand-gold); }

/* --- Right Column: Map --- */
.loc-clean-map {
    width: 100%;
    height: 400px; /* Perfectly balances the height of the left content */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    /* Notice: No dark-mode filter applied here. Clean, bright, highly readable map. */
}

/* --- Mobile Adjustments --- */
@media (max-width: 900px) {
    .loc-clean-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .loc-clean-content { align-items: center; text-align: center; }
    
    .loc-clean-subline { justify-content: center; }
    .loc-clean-hours { justify-content: center; }
    
    .loc-clean-ctas { max-width: 100%; }
    
    .loc-clean-map { height: 320px; }
}

@media (max-width: 400px) {
    /* Stack the secondary buttons on extremely narrow phones */
    .loc-secondary-actions { grid-template-columns: 1fr; }
}

/* ==========================================================================
   MINIMALIST PREMIUM FOOTER
   ========================================================================== */
.site-footer {
    background: #050505; /* Darker than the rest of the site for distinct ending */
    color: #E0E0E0;
    padding: 60px 5% 30px; /* Compress the top padding to pull it closer to the content above */
    font-family: var(--font-main);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* 1. Mini CTA & 2. Trust Line */
.footer-top-cta {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.ft-cta-head {
    font-size: 1.2rem;
    color: #FFF;
    font-weight: 500;
    margin-bottom: 12px;
}

.ft-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-gold);
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 25px;
}

.ft-cta-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.ft-cta-link:hover {
    color: #FFFFFF;
}

.ft-cta-link:hover svg {
    transform: translateX(4px);
}

.ft-trust-line {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Allows wrapping gracefully on tiny phones */
    gap: 12px;
    font-size: 0.9rem;
    color: #A0A0A0;
}

.ft-dot {
    color: var(--brand-gold);
    font-size: 1.2rem;
    line-height: 0;
}

/* 3, 4, 5, 6. Grid Area */
.footer-middle-grid {
    display: grid;
    /* Auto-fit forces columns side-by-side if they fit, preventing massive vertical walls */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.ft-col-title {
    color: #FFF;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ft-links a {
    color: #A0A0A0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.ft-links a:hover {
    color: var(--brand-gold);
}

.ft-text {
    color: #A0A0A0;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.ft-text a{
    text-decoration: none;
    color: var(--text-muted);
}

.ft-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.ft-socials a {
    color: #888;
    transition: color 0.3s ease, transform 0.3s ease;
}

.ft-socials svg {
    width: 22px;
    height: 22px;
}

.ft-socials a:hover {
    color: var(--brand-gold);
    transform: translateY(-2px);
}

/* 7. Brand Line & 8. Copyright */
.footer-bottom-line {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ft-brand-statement {
    color: #FFF;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0;
}

.ft-copyright {
    color: #666;
    font-size: 0.8rem;
    margin: 0;
}

.ft-copyright a{
    color: #999;
    text-decoration: none;
}

/* Ultra-Compact Mobile Overrides */
@media (max-width: 600px) {
    .site-footer {
        padding: 50px 5% 25px;
    }
    
    .footer-top-cta {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    
    /* Make the trust line look like a neat stack instead of a broken inline row on small screens */
    .ft-trust-line {
        flex-direction: column;
        gap: 6px;
    }
    
    .ft-dot { display: none; } /* Hide the bullets when stacked vertically */

    .footer-middle-grid {
        grid-template-columns: 1fr; /* Force 1 column on phones */
        text-align: center; /* Center everything to save visual weight */
        gap: 30px;
        margin-bottom: 40px;
    }

    .ft-socials {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    /* Sliding Mobile Menu */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 25px;
        border-bottom: 1px solid var(--border-light);
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .proof-content {
        gap: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .gallery-img {
        width: 240px;
        height: 300px;
    }

    .gr-arrow {
        display: none;
    }

    /* Hide arrows on touch devices */
    .gr-card {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
    }
}

/* Hide CTA text on tiny screens */
@media (max-width: 400px) {
    .nav-cta-text {
        display: none;
    }

    .nav-cta {
        padding: 12px;
        border-radius: 50%;
    }

    .nav-cta svg {
        margin: 0;
    }
}

/* ==========================================================================
   REVIEWS CTA & VIDEO REVIEWS SECTION
   ========================================================================== */
.reviews-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.video-reviews-section {
    max-width: 100%;
    background: var(--bg-main); /* Deep black to contrast the grey reviews above it */
    padding: 80px 5%;
}

.vr-header{
    justify-content: center;
    text-align: center;
}

.video-review-heading .highlight-gold{
    color: var(--brand-gold);
}

/* Video Card Structure (9:16 Aspect Ratio) */
.vr-card {
    min-width: 280px;
    max-width: 280px;
    height: 480px; 
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.336);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.vr-card:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 168, 89, 0.4);
}

.vr-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.9;
}

.vr-card:hover video,
.vr-card.is-playing video {
    transform: scale(1.03);
    opacity: 1;
}

/* Glassmorphism Play Icon */
.vr-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.vr-play-icon svg {
    width: 22px;
    height: 22px;
    margin-left: 4px; /* Optical centering for the triangle */
}

/* Hide play button when video is hovered or actively playing */
.vr-card:hover .vr-play-icon,
.vr-card.is-playing .vr-play-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .vr-card {
        min-width: 240px;
        max-width: 240px;
        height: 420px;
    }
}

/* ==========================================================================
   VIDEO CARD INFO OVERLAY (Reels Style)
   ========================================================================== */
.vr-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Generous top padding ensures the gradient fades smoothly into the video */
    padding: 60px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #FFF;
    z-index: 2; /* Sits below the play icon */
    pointer-events: none; /* Clicks pass right through it to play the video */
    
    /* Desktop State: Hidden until hovered */
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Trigger overlay on hover, OR when the video is actively playing */
.vr-card:hover .vr-info-overlay,
.vr-card.is-playing .vr-info-overlay {
    opacity: 1;
    transform: translateY(0);
}

.vr-info-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.vr-client-name {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.vr-client-stars {
    display: flex;
    gap: 2px;
}

.vr-client-stars svg {
    width: 14px;
    height: 14px;
}

.vr-client-review {
    font-size: 0.9rem;
    color: #E0E0E0;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

/* Mobile Adjustments: Overlay always visible */
@media (max-width: 768px) {
    .vr-info-overlay {
        opacity: 1;
        transform: translateY(0);
        padding: 50px 16px 16px;
    }
    
    .vr-client-name {
        font-size: 1rem;
    }
    
    .vr-client-review {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   VIDEO REVIEWS CTA & URGENCY TEXT
   ========================================================================== */
.vr-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

/* Strict No-Wrap Button Styling */
.nowrap-btn {
    white-space: nowrap; /* Forces text to stay on one line */
    /* Fluid typography ensures the text shrinks gracefully on tiny screens */
    font-size: clamp(0.85rem, 4vw, 1.05rem); 
    padding: 15px clamp(16px, 5vw, 32px);
    width: auto;
    max-width: 95vw; /* Prevents it from bleeding off the screen edge */
}

/* Urgency Text & Pulse Dot */
.vr-urgency-text {
    margin-top: 16px;
    color: #fca5a5; /* Soft, urgent red */
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.pulse-dot-red {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ef4444; /* Strong crimson */
    border-radius: 50%;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* ==========================================================================
   MOBILE OVERRIDES: FORCING ARROWS TO SHOW
   ========================================================================== */
@media (max-width: 768px) {
    /* Override the previous 'display: none' for the arrows */
    .gr-arrow {
        display: flex !important; 
        width: 38px;
        height: 38px;
        font-size: 1rem;
        background-color: rgba(10, 10, 10, 0.85); /* Semi-transparent to not block video */
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 10;
    }

    /* Pull arrows slightly inward so they float over the scroll container edges */
    .prev-arrow { left: 5px; }
    .next-arrow { right: 5px; }

    /* Give the scroll container padding so the first/last cards aren't hidden behind the arrows */
    .gr-scroll-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Extra safety for the CTA on the absolute smallest phones (e.g. iPhone SE) */
@media (max-width: 360px) {
    .nowrap-btn {
        padding: 14px 12px;
        gap: 6px;
    }
    .nowrap-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* ==========================================================================
   VIDEO CATEGORY LABELS (Permanent Top Badge)
   ========================================================================== */
.vr-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(10, 10, 10, 0.581);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--brand-gold);
    font-family: var(--font-main);
    font-size: 0.65rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 50px;
    z-index: 10; /* Keeps it above the video and the hover overlay */
    border: 1px solid rgba(255, 255, 255, 0.084);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    pointer-events: none; /* Prevents the label from blocking clicks to play the video */
}

.vr-cta-wrapper-question{
    font-size: 1.2em;
    font-family: var(--font-main);
    font-weight: 500;
    color: var(--brand-gold);
    padding: 15px 12px;
}

/* Ensure the label scales slightly on very small mobile screens */
@media (max-width: 360px) {
    .vr-label {
        font-size: 0.7rem;
        padding: 5px 12px;
        top: 12px;
        left: 12px;
    }
}

/* ==========================================================================
   PREMIUM FAQ SECTION (Smooth Accordion)
   ========================================================================== */
.faq-section {
    padding: 100px 5%;
    background: var(--bg-main); /* Blends seamlessly with the dark theme */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* The Clickable Question Row */
.faq-toggle {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question-text {
    font-family: var(--font-main);
    font-size: 1.15rem;
    font-weight: 500;
    color: #E0E0E0;
    padding-right: 20px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-toggle:hover .faq-question-text, 
.faq-toggle[aria-expanded="true"] .faq-question-text {
    color: var(--brand-gold);
}

/* Premium Icon Button */
.faq-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-chevron {
    width: 18px;
    height: 18px;
    color: #A0A0A0;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-toggle:hover .faq-icon-wrapper {
    background: rgba(197, 168, 89, 0.1);
    border-color: rgba(197, 168, 89, 0.3);
}

.faq-toggle:hover .faq-chevron {
    color: var(--brand-gold);
}

.faq-toggle[aria-expanded="true"] .faq-icon-wrapper {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
}

.faq-toggle[aria-expanded="true"] .faq-chevron {
    color: #000;
    transform: rotate(180deg);
}

/* Smooth Accordion Animation via CSS Grid */
.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-toggle[aria-expanded="true"] + .faq-answer-wrapper {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden; /* Crucial for the grid trick to work */
}

.faq-answer-inner p {
    color: #999999;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    padding-bottom: 24px; /* Padding inside the inner div prevents animation jumping */
}

/* Elegant FAQ CTA */
.faq-bottom-cta {
    margin-top: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.faq-bottom-cta p {
    color: #888;
    font-size: 0.95rem;
    margin: 0;
}

/* Elegant WhatsApp FAQ CTA */
.faq-bottom-cta {
    margin-top: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.faq-bottom-cta p {
    color: #999;
    font-size: 0.95rem;
    margin: 0;
    font-family: var(--font-main);
}

.faq-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d365ca; /* Official WhatsApp Green */
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.faq-wa-btn:hover {
    background: #1da851;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
}

.faq-wa-btn svg {
    margin-top: -2px; /* Optical alignment */
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .faq-question-text { font-size: 1.05rem; }
    .faq-toggle { padding: 20px 0; }
    .faq-answer-inner p { font-size: 0.95rem; }
}

/* ==========================================================================
   FINAL CTA & FALLBACK FORM
   ========================================================================== */
.final-cta-section {
    padding: 100px 5%;
    background: var(--bg-main);
    text-align: center;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.cta-headline {
    font-family: var(--font-editorial);
    font-size: 2.5rem;
    color: #FFF;
    margin-bottom: 15px;
}

.cta-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.1);
    color: #fca5a5;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 30px;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.cta-massive-btn {
    font-size: 1.1rem;
    padding: 18px 36px;
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
}

.cta-reassurance {
    color: #888;
    font-size: 0.85rem;
}

.cta-divider {
    margin: 40px 0;
    position: relative;
    text-align: center;
}

.cta-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.cta-divider span {
    background: var(--bg-main);
    padding: 0 15px;
    color: #666;
    font-size: 0.85rem;
    position: relative;
    font-weight: 600;
}

/* Fallback Form Styling */
.fallback-form-block {
    background: var(--bg-surface);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.fallback-headline {
    font-size: 1.1rem;
    color: #FFF;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 15px;
}

.wa-form input, .wa-form select {
    width: 100%;
    background: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFF;
    padding: 14px 16px;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.wa-form input:focus, .wa-form select:focus {
    border-color: var(--brand-gold);
}

.wa-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.btn-submit-form {
    width: 100%;
    background: transparent;
    color: var(--brand-gold);
    border: 1px solid var(--brand-gold);
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-form:hover {
    background: var(--brand-gold);
    color: #000;
}

/* Mobile */
@media (max-width: 600px) {
    .cta-headline { font-size: 2rem; }
    .fallback-form-block { padding: 20px; }
}

/* Helper Text Styling */
.form-helper-text {
    color: #888;
    font-size: 0.85rem;
    margin-top: -12px;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Forces the native calendar popup to match the dark theme */
.wa-form input[type="date"] {
    color-scheme: dark;
    font-family: var(--font-main);
}

/* Adjusting the fallback block padding slightly for perfect visual balance */
.fallback-form-block {
    text-align: left; /* Ensures the form feels structured */
}




/* ==========================================================================
   FLOATING WHATSAPP BUTTON (Persistent Contact)
   ========================================================================== */
.floating-wa-btn {
    position: fixed;
    bottom: 20px;
    right: 20px; /* Anchored to bottom-left corner */
    width: 51px;
    height: 50px;
    background-color: #25D366; /* Official WhatsApp Green */
    color: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999; /* Guarantees it sits on top of everything */
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: wa-pulse 2s infinite;
}

.floating-wa-btn svg {
    width: 30px;
    height: 30px;
    margin: 2px 1px 1px 2px; /* Optical center alignment */
}

.floating-wa-btn:hover {
    background-color: #1da851;
    transform: scale(1.1);
    animation: none; /* Stops pulsing when the user hovers to click */
}

/* Subtle glowing pulse animation */
@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .floating-wa-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .floating-wa-btn svg {
        width: 28px;
        height: 28px;
    }
}

