:root {
    --gold-soft: #E6C76A;
    /*--champagne: #E7D7C1; Secondary accent*/
    --gold-primary: #D4AF37;
    /*--terracotta: #B36A5E; primary accent*/
    --gold-softer: #f3e5ab;
    /* Fallback for older browsers */
    --charcoal: #1C1C1C;
    /*--espresso: #2D2926;*/
    --soft-gray: #F5F5F5;
    /*light base silk*/
    --white: #ffffff;
    --pink-accent: #E1008C;
    /*hot pink highlight CTA/Button*/
    --pink-soft: #F4A1C8;
    --pink-softer: #fadeed;


}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--charcoal);
    line-height: 1.7;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.brand-logo {
    height: 90px;
    /* Increase this number (e.g., from 50px to 70px or 80px) */
    width: auto;
    /* Maintains the original aspect ratio */
    display: block;
    /* Removes any weird bottom spacing */
    transition: height 0.3s ease;
    /* Makes it smooth if you resize the window */
}

/* Ensure the navbar gives enough room for the bigger logo */
.navbar {
    padding: 0.5rem 5%;
    /* Reduced top/bottom padding to keep the header slim */
    min-height: 80px;
    /* Ensures the navbar is at least as tall as your logo */
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    /* Allows the logo to fill the height of the navbar */
}

@media (max-width: 768px) {
    .brand-logo {
        height: 55px;
        /* Slightly smaller on phones so the hamburger menu fits nicely */
    }
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.btn-book {
    background: var(--gold-primary);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Hero */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(45, 41, 38, 0.5), rgba(45, 41, 38, 0.5)), url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?q=80&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.btn-primary {
    background: var(--pink-accent);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    display: inline-block;
}

.btn-outline {
    border: 1px solid white;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    margin-left: 10px;
    display: inline-block;
}

/* Service Spotlight (Galleries) */
.section-padding {
    padding: 100px 0;
}

.bg-silk {
    background-color: var(--soft-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-spotlight {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
     background-color: var(--pink-softer);
}

.service-spotlight.reversed {
    flex-direction: row-reverse;
    background-color: var(--pink-softer);
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--pink-accent);
}

.service-perks {
    list-style: none;
    margin-top: 20px;
}

.service-perks li::before {
    content: "— ";
    color: var(--pink-accent);
}

/* The permanent image on the right/left */
.service-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* THE FIX: The Hidden Gallery Styling */
/* Update this specific block in your CSS */
/* Make images inside hidden gallery behave */
.hidden-gallery img {
    width: 100%;
    height: 260px;
    /* Increase this number (e.g., 300px, 350px) to make them taller */
    object-fit: cover;
    /* This ensures the photos don't look squashed */
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: block;
    /* Prevents small gaps at the bottom */
}


/* Show gallery when JS adds the 'active' class */
.hidden-gallery.active {
    display: grid;
    /* Becomes a grid when clicked */
}

/* Button styling to match your theme */
.btn-view-more {
    background: none;
    border: 1px solid var(--pink-accent);
    color: var(--pink-accent);
    padding: 8px 16px;
    cursor: pointer;
    margin-top: 15px;
    font-weight: 600;
}


.btn-view-more:hover {
    background: var(--pink-accent);
    color: white;
}

.sub-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.sub-imgs img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Pricing */
.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.price-category h3 {
    border-bottom: 1px solid var(--gold-soft);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.price-disclaimer {
    text-align: center;
    font-style: italic;
    margin-top: 30px;
    color: #777;
}

/* Footer */
footer {
    background: var(--charcoal);
    color: var(--soft-gray);
    padding: 60px 0;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.social-links a {
    color: var(--gold-soft);
    margin: 0 10px;
    text-decoration: none;
}

.copyright {
    margin-top: 30px;
    font-size: 0.8rem;
    opacity: 0.6;
}

.experience-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.experience-intro {
    font-size: 1.2rem;
    color: var(--charcoal);
    font-style: italic;
    line-height: 1.8;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.exp-pillar {
    padding: 30px;
    background: var(--pink-softer);
    border-radius: 4px;
    transition: 0.3s;
}

.exp-pillar:hover {
    background: var(--pink-soft);
    transform: translateY(-5px);
}

.pillar-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--pink-soft);
    opacity: 0.3;
    display: block;
    margin-bottom: 10px;
}

.exp-pillar h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--charcoal);
}

.experience-quote {
    text-align: center;
    max-width: 700px;
    margin: 80px auto 0;
    border-top: 1px solid var(--gold-soft);
    padding-top: 40px;
}

.experience-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--pink-accent);
    font-style: italic;
}

.hidden-gallery {
    display: none;
    /* Hidden by default */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.hidden-gallery.active {
    display: grid;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.brand-story {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
    border-top: 1px solid var(--champagne);
    padding-top: 80px;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 2rem;
    color: var(--pink-accent);
    margin-bottom: 20px;
}

.story-text p {
    margin-bottom: 15px;
    color: var(--charcoal);
    opacity: 0.9;
}

.values-list {
    list-style: none;
    margin-top: 25px;
}

.values-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.values-list li strong {
    color: var(--pink-accent);
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
    /* Optional: slight rounding for 'comfort' feel */
    box-shadow: 20px 20px 0px var(--silk);
    /* Decorative shadow */
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .brand-story {
        flex-direction: column;
        text-align: center;
    }

    .story-image img {
        height: 300px;
    }
}

/* Booking Section */
.booking-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    background: var(--soft-gray);
    padding: 60px;
    border-radius: 4px;
}

.booking-text {
    flex: 1;
}

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 25px;
    border-radius: 2px;
}

.booking-form-card {
    flex: 1;
    background: var(--white);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-family: inherit;
}

@media (max-width: 768px) {
    .booking-wrapper {
        flex-direction: column;
        padding: 30px;
    }
}

.social-links {
    margin: 20px 0;
}

.social-links a {
    color: var(--gold-primary);
    font-size: 1.8rem;
    /* Makes the icons a nice size */
    margin: 0 15px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--soft-gray);
    /* Changes to your brand accent color */
    transform: translateY(-3px);
    /* Gentle lift effect */
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(231, 215, 193, 0.2);
    padding-top: 20px;
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--gold-primary);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 40px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
    }

    .nav-menu ul li {
        margin: 15px 0;
    }

    .nav-cta {
        display: none;
    }

    /* Hide the big button on mobile to save space */

    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Map stacks under text on mobile */
}

.whatsapp-float {
    position: fixed;
    /* This makes it stay on screen while scrolling */
    bottom: 30px;
    /* Distance from the bottom of the screen */
    right: 30px;
    /* Distance from the right of the screen */
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    /* This ensures it stays on top of the footer and all other content */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Ensure the image inside stays centered */
.whatsapp-float img {
    width: 35px;
    height: 35px;
}

#contact {
    background-color: var(--charcoal);
    color: var(--soft-gray);
    padding: 80px 0 40px;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    height: 70px;
    margin-bottom: 25px;
}

.footer-address {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-tagline {
    opacity: 0.8;
    font-style: italic;
    margin-bottom: 30px;
}

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(231, 215, 193, 0.1);
    padding-top: 30px;
}

/* Tablet and Mobile Adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .service-spotlight {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    /* Stack Service Rows vertically */
    .service-spotlight,
    .service-spotlight.reversed {
        flex-direction: column;
        text-align: center;
        margin-bottom: 60px;
    }

    .service-gallery {
        width: 100%;
    }

    .main-img {
        height: 300px;
    }

    /* Stack Price Columns */
    .price-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Adjust Experience Pillars */
    .experience-grid {
        grid-template-columns: 1fr;
    }

    /* Hide the floating button if it blocks important things on very small screens (optional) */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

.footer-contact-info {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    /* Space between location and phone */
}

.contact-item {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-primary);
    opacity: 0.9;
}

.contact-item i {
    color: var(--gold-primary);
    /* Your brand color for icons */
    width: 20px;
    /* Ensures icons align vertically */
    text-align: center;
}

.phone-link {
    color: var(--gold-primary);
    text-decoration: none;
    transition: opacity 0.3s;
}

.phone-link:hover {
    opacity: 0.7;
    color: var(--soft-gray);
}

/* Slimmer footer padding */
#contact {
    padding: 30px 0 15px;
}

#contact {
    background-color: var(--charcoal);
    color: var(--gold-primary);
    padding: 30px 0 15px;
    /* Very slim padding */
}

.footer-row {
    display: flex;
    justify-content: space-between;
    /* Spreads content to left, center, and right */
    align-items: center;
    /* Vertically centers everything in the row */
    flex-wrap: wrap;
    /* Allows stacking on very small screens */
    gap: 20px;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center content within their columns */
}

.logo-col {
    align-items: flex-start;
}

/* Logo on the left */
.social-col {
    align-items: flex-end;
}

/* Socials on the right */

.footer-logo {
    height: 40px;
    /* Smaller logo for the row layout */
    margin-bottom: 0;
}

.footer-contact-info {
    margin-bottom: 0;
}

.contact-item {
    font-size: 0.85rem;
    white-space: nowrap;
    /* Prevents text from breaking into two lines */
}

.social-links {
    margin: 0;
    /* Remove top/bottom margin to keep row height low */
}

.social-links a {
    font-size: 1.4rem;
    margin-left: 15px;
    /* Space between icons */
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid rgba(231, 215, 193, 0.1);
    padding-top: 10px;
}

/* Responsive: Stack them on mobile */
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        text-align: center;
    }

    .logo-col,
    .social-col {
        align-items: center;
    }

    .social-links a {
        margin: 0 10px;
    }
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--pink-softer);
    padding: 40px;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 3px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--pink-soft);
}

.stars {
    color: var(--pink-accent);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--charcoal);
    line-height: 1.8;
}

.client-info strong {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--pink-accent);
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px;
    }
}

/* Compact Form Styles */
.compact-form .form-group {
    margin-bottom: 12px;
    /* Reduced from likely 20px */
}

.compact-form label {
    font-size: 0.75rem;
    /* Slightly smaller label */
    margin-bottom: 4px;
    /* Tighten gap between label and input */
    display: block;
}

.compact-form input,
.compact-form select {
    padding: 8px 12px;
    /* Slimmer internal padding */
    height: 38px;
    /* Explicitly setting a smaller height */
    font-size: 0.9rem;
}

/* Specific adjustment for the card padding if the form is inside a card */
.booking-form-card {
    padding: 25px !important;
    /* Reduces the white space around the form */
}

.bg-dark {
    background-color:#e2dfdf;
    /* Dark elegant background to make videos pop */
}

/* THE SLIDER CONTAINER */
.video-grid {
    display: flex;
    overflow-x: auto;
    /* Enables horizontal scrolling */
    gap: 20px;
    padding: 20px 0 30px 0;

    /* Smooth locking effect */
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    /* Hide scrollbar for a cleaner look (optional) */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* For Chrome, Safari and Opera: Style the scrollbar to be Gold */
.video-grid::-webkit-scrollbar {
    height: 6px;
}

.video-grid::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 10px;
}

/* THE SLIDER CARDS */
.tiktok-card {
    flex: 0 0 280px;
    /* Each video is exactly 280px wide */
    scroll-snap-align: start;

    background: var(--charcoal);
    border-radius: 12px;
    border: 1px solid var(--charcoal);

    /* Fixed height to prevent "long" videos */
    height: 450px;
    overflow: hidden;

    transition: transform 0.3s ease;
}

.tiktok-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-soft);
}

/* Ensures the TikTok embed sits correctly inside the cropped box */
.tiktok-card blockquote {
    margin-top: -20px !important;
}

/* Styling for the TikTok containers */
.tiktok-card {
    border: 1px var(--charcoal);
    /* Subtle Gold border */
    transition: transform 0.4s ease;
}

.tiktok-card:hover {
    transform: scale(1.02);
    border-color: #D4AF37;
    /* Brighter gold on hover */
}

/* Ensure the grid looks good on all screens */
#extra-videos {
    transition: all 0.5s ease-in-out;
}

/* Slider Navigation with gold soft Accents */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background:var(--gold-soft);
    /* gold-soft */
    color: var(--charcoal);
    /*text */
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.slider-nav:hover {
    background: var(--pink-accent);
    /* Turns primary pink on hover */
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

/* Video Cards with Champagne Borders */
.tiktok-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--charcoal);
    /* Espresso */
    border-radius: 12px;
    border: 1px solid var(--gold-soft);
    /* Soft Champagne border */
    height: 450px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s;
}

.tiktok-card:hover {
    border-color: var(--pink-accent);
    /* Terracotta highlight on hover */
    transform: translateY(-5px);
}

/* The Follow Button - Bold Terracotta */
.tiktok-follow-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color:var(--pink-accent);
    /* Terracotta */
    color: #ffffff !important;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tiktok-follow-pill:hover {
    background-color: transparent;
    border-color: var(--pink-accent);
    /* Champagne border on hover */
    color: var(--pink-accent) !important;
    box-shadow:none;
}

/* =========================
   Booking Popup (On Load)
========================= */

.booking-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 41, 38, 0.7);
    /* Espresso overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.booking-popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.booking-popup-card {
    background: var(--white);
    max-width: 420px;
    width: 90%;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);

}

.booking-popup-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.booking-popup-card p {
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.85;
    margin-bottom: 30px;
    line-height: 1.7;
}

.booking-popup-btn {
    padding: 14px 30px;
    display: block;
    width: 100%;
    margin-top: 12px;
}

.booking-popup-close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--charcoal);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.booking-popup-close:hover {
    opacity: 1;
}

/* Mobile refinement */
@media (max-width: 480px) {
    .booking-popup-card {
        padding: 35px 25px;
    }

    .booking-popup-card h2 {
        font-size: 1.8rem;
    }
}

.btn-call {
    background: var(--pink-soft);
    border: 1px solid var(--pink-soft);
    color: var(--charcoal);
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-call:hover {
    background: var(--soft-gray);
    color: var(--pink-accent);
}

/* Popup card initial (hidden) state */
.booking-popup-card {
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

/* Slide + fade in when popup is active */
.booking-popup-overlay.active .booking-popup-card {
    transform: translateY(0);
    opacity: 1;
}

