/* ========================================
   BIONIKA HOME PAGE - PREMIUM GLASS & GOLD
   ======================================== */

:root {
    --premium-gold: #D4AF37;
    --premium-gold-light: #F3E5AB;
    --premium-teal: #0F766E;
    --premium-dark: #1A202C;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --blur-strength: 12px;
}

body.homepage {
    background-color: #F8FAFC !important;
}

/* ========================================
   PREMIUM HERO SECTION
   ======================================== */
/* ========================================
   PREMIUM HERO SECTION
   ======================================== */
.premium-home-hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* CRITICAL: Static background image as ultimate fallback for Facebook WebView */
    background: #0F172A url('../images/hero-bg.webp') center center / cover no-repeat;
    margin-top: -80px;
    padding-top: 80px;
    color: white;
    overflow: hidden;
}

/* Video Background Styles */
.video-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    /* Fallback background in case video doesn't load (Facebook WebView) */
    background: url('../images/hero-bg.webp') center center / cover no-repeat;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    /* Ensure poster shows immediately */
    background: transparent;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Simplified overlay for better Facebook WebView compatibility */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Card Interaction Enhancements */
.premium-service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1), 0 10px 20px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(212, 175, 55, 0.4);
}

.hero-home-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 220px;
    /* More top padding to clear header completely */
    justify-content: flex-start;
    /* Use gap for spacing instead of spreading */
    min-height: 85vh;
    /* Taller area to ensure gaps */
    gap: 24px;
    /* Base gap for title/subtitle/pill */
}

/* ... existing code ... */

.home-logo-large {
    width: 120px;
    height: 120px;
    margin-bottom: -10px;
    /* Pull tighter to text */
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    animation: fadeInDown 1s ease-out;
}

.hero-brand-name {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 4px;
    /* Reduced from 10px */
    /* Reduced from 10px */
    animation: fadeInDown 1s ease-out 0.1s both;
}

.home-title {
    font-family: 'Inter', sans-serif;
    /* Apple Style Sans-Serif */
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
    /* Tighter letter spacing for Inter */
    /* Tighter letter spacing for Inter */
    background: linear-gradient(180deg, #FFFFFF 20%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    /* Fix Lint */
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);

    /* ... */

    /* Section Dividers */
    .premium-services-section,
    .premium-section {
        position: relative;
    }

    .premium-services-section::before {
        content: '';
        position: absolute;
        top: -50px;
        left: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient(to bottom, transparent, #F8FAFC);
        z-index: 1;
        pointer-events: none;
    }

    animation: fadeInUp 1s ease-out 0.2s both;
    max-width: 900px;
}

.home-title span {
    display: block;
    color: #F8D57E;
    /* Soft Gold */
    -webkit-text-fill-color: #F8D57E;
    font-weight: 800;
}

/* ... existing code ... */

/* AI Feature Card Spacing Update */
.ai-feature-card {
    /* ... other props ... */
    margin: 8px 0 8px 0;
    /* Reduced from 24px 0 12px 0 */
    /* ... other props ... */
}

/* Chips Container Spacing */
.hero-badges-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 8px;
    /* Reduced from 16px */
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 32px;
    /* Increased for symmetry */
    flex-direction: column;
    align-items: center;
    /* Fix centering on mobile */
    width: 100%;
    max-width: 320px;
    /* Constrain width on mobile */
    /* Constrain width on mobile */
    animation: fadeInUp 1s ease-out 0.6s both;
    animation: fadeInUp 1s ease-out 0.6s both;
    margin-top: 0;
    /* Reset auto margin, let allow space-within handle it or keep it for extra push */
    margin-bottom: 40px;
    /* More bottom styling space */
}

.home-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    line-height: 1.4;
    /* Slightly tighter line height */
    animation: fadeInUp 1s ease-out 0.4s both;
    margin-bottom: 32px;
    /* Explicit gap for symmetry with buttons */
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        max-width: none;
        justify-content: center;
    }
}

/* Desktop Hero Layout Improvements */
@media (min-width: 992px) {
    .premium-home-hero {
        min-height: 100vh;
    }

    .hero-home-content {
        padding-top: 120px;
        padding-bottom: 60px;
        justify-content: center;
        min-height: 100vh;
        gap: 20px;
    }

    .home-title {
        font-size: 5rem;
        margin-bottom: 16px;
    }

    .home-subtitle {
        font-size: 1.35rem;
        max-width: 650px;
        margin-bottom: 40px;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 0;
        max-width: none;
        justify-content: center;
        align-items: center;
    }

    /* Make secondary actions inline with primary button on desktop */
    .hero-secondary-actions {
        display: contents;
        /* This makes children flow into parent flex */
    }
}

/* ========================================
   PREMIUM SERVICE GRID
   ======================================== */
.premium-services-section {
    padding: 100px 0;
    position: relative;
    background: #F8FAFC;
}

.premium-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.premium-service-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--premium-teal), var(--premium-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(15, 118, 110, 0.15);
}

.premium-service-card:hover::before {
    opacity: 1;
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(15, 118, 110, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--premium-teal);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.premium-service-card:hover .service-icon-box {
    background: var(--premium-teal);
    color: white;
    transform: scale(1.1) rotate(3deg);
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--premium-dark);
    margin-bottom: 12px;
}

.service-card-desc {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-price-tag {
    background: #F1F5F9;
    padding: 8px 16px;
    border-radius: 12px;
    color: var(--premium-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ========================================
   PREMIUM TRUST SECTION
   ======================================== */
.premium-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.trust-stat-card {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.trust-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--premium-teal);
    margin-bottom: 8px;
    display: block;
}

.trust-stat-label {
    color: #64748B;
    font-weight: 500;
}

/* ========================================
   CONTACT AND BUTTONS (SHARED)
   ======================================== */
/* ENHANCED BUTTONS */
/* ENHANCED BUTTONS - BORDER BEAM & GLOW */
.btn-premium-primary {
    position: relative;
    padding: 18px 48px;
    font-size: 1.1rem;
    font-weight: 500;
    /* Variant 2: Medium */
    color: black;
    background: linear-gradient(90deg, #F8D57E 0%, #D4AF37 100%);
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    /* Strong Glow */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    isolation: isolate;
    overflow: hidden;
    letter-spacing: 1.5px;
    /* Variant 2: Wide spacing */
    text-transform: uppercase;
    text-align: center;
    /* Explicit centering */
    font-family: 'Inter', sans-serif;
}

/* Border Beam / Shine Animation */
.btn-premium-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.btn-premium-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.8);
}

/* Secondary Actions - Glass Pills */
.hero-secondary-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-text-only {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 12px 28px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    /* Prevent wrapping */
}

.btn-text-only:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .btn-premium-primary {
        width: auto;
        padding: 14px 36px;
        font-size: 1rem;
        font-weight: 600;
        white-space: nowrap;
    }
}

.btn-premium-primary:hover {
    background: linear-gradient(135deg, #FFE44D, #C59300);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-premium-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.btn-premium-primary:hover::after {
    left: 150%;
}

.btn-premium-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .btn-premium-glass {
        width: auto;
    }
}

.btn-premium-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Contact Modal Styles */
.booking-section-wrapper {
    background: #F8FAFC;
    padding: 0 0 100px;
}

.booking-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(15, 118, 110, 0.15);
    overflow: hidden;
    border: 1px solid rgba(15, 118, 110, 0.05);
}

/* Override Booking Widget Inner Styles to blend seamlessly if needed */
#bionika-booking-widget {
    min-height: auto;
    box-shadow: none;
}

.contact-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    /* Darker backdrop */
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal-content {
    background: rgba(255, 255, 255, 0.98);
    width: 90%;
    max-width: 420px;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
    transform: translateY(30px);
    /* Start lower */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    /* Eloquent bounce */
    border: 1px solid rgba(255, 255, 255, 1);
    position: relative;
    text-align: center;
}

.contact-modal-backdrop.active .contact-modal-content {
    transform: translateY(0);
}

.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #F1F5F9;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #64748B;
    cursor: pointer;
    transition: all 0.2s;
}

.contact-modal-close:hover {
    background: #E2E8F0;
    color: #0F172A;
    transform: rotate(90deg);
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--premium-dark);
    margin-bottom: 8px;
}

.modal-subtitle {
    color: #64748B;
    font-size: 1rem;
    margin-bottom: 32px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 18px 24px;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    text-decoration: none;
    color: var(--premium-dark);
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    font-size: 1.05rem;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background: #F8FAFC;
    border-color: var(--premium-teal);
}

.contact-btn-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .premium-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-title {
        font-size: 2.5rem;
        /* Reduced from 2.75rem */
        text-wrap: balance;
        margin-bottom: 8px;
        /* Tighter spacing */
    }

    .home-subtitle {
        font-size: 1rem;
        /* Smaller subtitle */
        line-height: 1.3;
        margin-bottom: 0;
        max-width: 90%;
    }

    /* Reduce font size for RU/GE to prevent orphan words */
    html[lang="ru"] .home-title {
        font-size: 2.1rem !important;
        line-height: 1.2;
    }

    /* Force Georgian text to stay on lines as defined by <br> */
    html[lang="ka"] .home-title {
        font-size: 1.35rem !important;
        line-height: 1.4;
        white-space: nowrap !important;
        width: auto;
        max-width: 100%;
    }

    /* Keep brand name on one line on mobile */
    .hero-brand-name {
        font-size: 0.85rem;
        white-space: nowrap;
        letter-spacing: 1px;
    }

    /* Cat Framing Overrides */
    .hero-home-content {
        padding-top: 180px;
        /* Push down to clear header */
        justify-content: flex-start;
        gap: 24px;
        min-height: 85svh;
        /* Use SVH for better mobile height handling */
    }


    .premium-home-hero {
        align-items: flex-start;
        /* Let content fill height */
        padding-top: 0;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin-bottom: 32px;
        /* Bottom spacing */
    }

    .btn-premium-primary,
    .btn-premium-glass {
        width: 100%;
        justify-content: center;
    }

    .premium-trust-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   VISUAL REFINEMENTS (TITLES & FOOTER)
   ======================================== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--premium-dark);
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

/* Close Underline Style */
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    /* Much closer to text */
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--premium-teal), var(--premium-gold));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 24px;
}

/* Footer Visuals */
.footer-links h3,
.footer-contact h3 {
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--premium-gold);
    margin-bottom: 24px;
    position: relative;
    padding-left: 0;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    /* For SVGs */
}

.social-icon-box:hover {
    background: var(--premium-teal);
    border-color: var(--premium-teal);
    transform: translateY(-3px);
    color: white;
}

.social-icon-box svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ========================================
   AI ASSISTANT FEATURE CARD
   ======================================== */
/* Footer CTA */
.footer-cta-block {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-title {
    color: var(--premium-gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.btn-footer-cta {
    display: inline-flex;
    padding: 12px 32px;
    background: white;
    color: var(--premium-dark);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-footer-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
    background: var(--premium-gold-light);
}

/* ========================================
   PREMIUM FAQ SECTION
   ======================================== */
.faq-section {
    padding: 100px 0;
    background: #F8FAFC;
    position: relative;
    z-index: 2;
}

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

.faq-item {
    background: white;
    border-radius: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-header {
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--premium-dark);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--premium-gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::before {
    width: 2px;
    height: 14px;
}

.faq-icon::after {
    width: 14px;
    height: 2px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 24px;
    opacity: 0;
}

.faq-item.active .faq-content {
    padding-bottom: 24px;
    opacity: 1;
    max-height: 200px;
    /* Adjust as needed */
}

/* ========================================
   PROFESSIONAL FOOTER
   ======================================== */
.footer {
    background: #0F172A;
    /* Slate 900 */
    color: #E2E8F0;
    /* Slate 200 */
    padding: 80px 0 30px;
    font-family: 'Inter', sans-serif;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-desc {
    color: #94A3B8;
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #94A3B8;
    /* Slate 400 */
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.footer-links-list a:hover {
    color: var(--premium-gold);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #94A3B8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 0.9rem;
    color: #64748B;
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Premium Reviews Section */
.reviews-section {
    position: relative;
    padding: 100px 0;
    background: url('../images/staff.webp') center/cover no-repeat fixed;
    /* Parallax effect */
    color: white;
    overflow: hidden;
}

.reviews-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.45);
    /* Reduced opacity from 0.70 for better visibility */
    backdrop-filter: blur(4px);
    z-index: 1;
}

@media (max-width: 768px) {
    .reviews-section {
        background-attachment: scroll;
        /* Fix mobile browser issues with fixed background */
        background-position: center center;
    }

    .reviews-overlay {
        background: rgba(15, 23, 42, 0.40);
        /* Even lighter on mobile to compensate for screen dimming */
    }
}

.reviews-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.reviews-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #fff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reviews-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--premium-gold);
}

.reviewer-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: white;
}

.reviewer-info span {
    font-size: 0.9rem;
    color: var(--premium-gold);
}

.review-text {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .reviews-container {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }

    .reviews-content h2 {
        font-size: 2.2rem;
    }
}

/* ========================================
   PREMIUM FAQ SECTION
   ======================================== */
.faq-section {
    padding: 100px 0;
    background: #F8FAFC;
    position: relative;
    z-index: 2;
}

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

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.faq-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1e293b;
    /* Slate 800 */
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #D4AF37;
    /* Premium Gold */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::before {
    width: 2px;
    height: 14px;
}

.faq-icon::after {
    width: 14px;
    height: 2px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 24px;
    opacity: 0;
    color: #475569;
    /* Slate 600 */
    line-height: 1.6;
}

.faq-item.active .faq-content {
    padding-bottom: 24px;
    opacity: 1;
    max-height: 300px;
}

/* ========================================
   PROFESSIONAL FOOTER
   ======================================== */
/* ========================================
   PROFESSIONAL FOOTER - PREMIUM REDESIGN
   ======================================== */
.footer {
    background: linear-gradient(180deg, #0F172A 0%, #020617 100%);
    color: #E2E8F0;
    padding: 80px 0 40px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

/* Subtle background glow */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 60px;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: var(--premium-gold);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: 0.02em;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--premium-gold);
    opacity: 0.5;
}

.footer-desc {
    color: #94A3B8;
    line-height: 1.7;
    margin-top: 24px;
    margin-bottom: 32px;
    max-width: 320px;
    font-size: 0.95rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 16px;
}

.footer-links-list a {
    color: #CBD5E1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--premium-gold);
    font-size: 0.8em;
}

.footer-links-list a:hover {
    color: var(--premium-gold);
    padding-left: 4px;
}

.footer-links-list a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Glassmorphism Contact Items */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    color: #E2E8F0;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.03);
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.social-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon-box:hover {
    background: var(--premium-gold);
    border-color: var(--premium-gold);
    color: #0F172A;
}

.social-icon-box svg {
    fill: currentColor;
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    font-size: 0.85rem;
    color: #64748B;
    border-top: none;
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* AI PILL - BOARDING PASS STYLE */
.ai-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 24px;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: fadeInDown 1s ease-out 0.1s both;
}

.ai-pill:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.ai-pill-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.ai-pill-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Force Transparent Header on Homepage */
body.homepage .header {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    border-bottom: none !important;
}

body.homepage .header.scrolled {
    backdrop-filter: blur(12px) !important;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0.8;
    animation: bounce 2s infinite;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    transform: translateY(100px);
    /* Hidden initially */
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    visibility: hidden;
}

.sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.btn-sticky {
    background: var(--premium-gold);
    color: black;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-sticky:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* ========================================
   CHAT WITH AI BUTTON (Hero)
   ======================================== */
.btn-chat-ai {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 14px 24px;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-chat-ai:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-chat-text {
    white-space: nowrap;
}

.btn-chat-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-chat-icons img {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    opacity: 0.9;
}

/* Quick Action Icons (Hero) */
.hero-quick-icons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.quick-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.quick-icon svg {
    width: 20px;
    height: 20px;
}

.quick-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

/* ========================================
   NEW STICKY ICON BAR (4 buttons)
   ======================================== */
.sticky-cta-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: flex;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-cta-bar.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.sticky-icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.sticky-icon-btn svg {
    width: 22px;
    height: 22px;
}

.sticky-icon-btn:first-child {
    background: var(--premium-gold);
    color: black;
}

.sticky-icon-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.sticky-icon-btn:first-child:hover {
    background: #e5c04a;
}

/* Chat button pulse animation */
.sticky-chat-btn {
    position: relative;
}

.chat-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--premium-teal);
    opacity: 0;
    animation: chatPulse 2s ease-out infinite;
}

@keyframes chatPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Mobile adjustments for sticky bar */
@media (max-width: 768px) {
    .sticky-cta-bar {
        bottom: 16px;
        padding: 10px 16px;
        gap: 10px;
    }

    .sticky-icon-btn {
        width: 44px;
        height: 44px;
    }

    .sticky-icon-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   FACEBOOK / INSTAGRAM IN-APP BROWSER FIXES
   Detected via JS: html.is-facebook-webview
   ======================================== */
html.is-facebook-webview .premium-home-hero,
html.is-in-app-browser .premium-home-hero {
    /* Force static background - video won't play anyway */
    background: #0F172A url('../images/hero-bg.webp') center center / cover no-repeat !important;
}

html.is-facebook-webview .video-overlay,
html.is-in-app-browser .video-overlay {
    /* Remove any fancy gradient animations - keep simple dark overlay */
    background: rgba(0, 0, 0, 0.45) !important;
    animation: none !important;
}

html.is-facebook-webview .btn-text-only,
html.is-in-app-browser .btn-text-only {
    /* Disable backdrop-filter which can cause rendering issues */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255, 255, 255, 0.15) !important;
}

html.is-facebook-webview .contact-modal-backdrop,
html.is-in-app-browser .contact-modal-backdrop {
    /* Simpler modal backdrop for WebView */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(15, 23, 42, 0.9) !important;
}

/* Ensure hero content is always visible on top */
html.is-facebook-webview .hero-home-content,
html.is-in-app-browser .hero-home-content {
    z-index: 10 !important;
}

/* ========================================
   AI PILL - Non-clickable info display
   ======================================== */
.ai-pill {
    cursor: default;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ai-pulse {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: aiPulse 2s ease-in-out infinite;
}

@keyframes aiPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* ========================================
   FLOATING CHAT OPTIONS (Hero)
   ======================================== */
.chat-btn-wrapper {
    position: relative;
}

.floating-chat-options {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-chat-options::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(26, 32, 44, 0.95);
}

.floating-chat-options.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.chat-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.chat-option:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.chat-option img {
    border-radius: 6px;
}

/* ========================================
   FLOATING CHAT OPTIONS (Sticky Bar)
   ======================================== */
.sticky-chat-wrapper {
    position: relative;
}

.sticky-chat-options {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    display: flex;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-chat-options.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-chat-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.sticky-chat-option:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.sticky-chat-option img {
    border-radius: 4px;
}

/* ========================================
   LOCATION PILL & POPUP
   ======================================== */
.location-wrapper {
    position: relative;
    z-index: 20;
    margin-bottom: 24px;
    animation: fadeInDown 1s ease-out 0.2s both;
}

.location-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.location-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.location-popup {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.95);
    background: white;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: 200px;
    text-align: center;
    pointer-events: none;
}

.location-popup.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(12px) scale(1);
    pointer-events: auto;
}

/* Arrow for the popup */
.location-popup::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 2px;
}

.location-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: #F1F5F9;
    color: var(--premium-dark);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.location-popup-btn:hover {
    background: #E2E8F0;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .location-pill {
        font-size: 0.70rem;
        /* Smaller font to fit on one line */
        padding: 8px 12px;
        white-space: nowrap;
        /* Force single line */
        gap: 6px;
        /* Reduce gap */
        max-width: 95vw;
        /* Allow slightly more width */
    }

    .location-wrapper {
        margin-bottom: 16px;
    }
}

/* ========================================
   SERVICE CARD ENHANCEMENTS
   ======================================== */
.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    width: 100%;
    flex-grow: 1;
    /* Push button to bottom */
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #94A3B8;
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-features li img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Book Now Button in Card */
.service-book-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
    margin-top: auto;
    background: transparent;
    border: 1px solid var(--premium-gold);
    color: var(--premium-gold);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.premium-service-card:hover .service-book-btn {
    background: var(--premium-gold);
    color: #0F172A;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Ensure card is flex column for proper alignment */
.premium-service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Reset from center if needed, or keep center */
    padding: 30px;
    height: 100%;
    min-height: 420px;
    /* Taller cards to fit content */
}

/* Align text internally */
.premium-service-card .service-icon-box {
    align-self: center;
    margin-bottom: 20px;
}

.premium-service-card h3,
.premium-service-card .service-card-desc,
.premium-service-card .service-price-tag {
    align-self: center;
    text-align: center;
}

/* Make features list self-start for better list look, but centered block */
.service-features {
    align-self: center;
    max-width: 280px;
    /* Prevent too wide lists */
}