/**
 * Halaba View Hotel - Main Stylesheet
 * Custom styles for the website
 */

:root {
    /* Color Palette - Enhanced Vibrant Colors */
    --primary-blue: #4FA3FF;
    --primary-blue-light: #79BFFF;
    --primary-blue-dark: #1E6CD6;
    --vibrant-purple: #8B5CF6;
    --vibrant-pink: #EC4899;
    --vibrant-orange: #F97316;
    --vibrant-teal: #14B8A6;
    --gold: #FFC857;
    --gold-light: #FFE096;
    --gold-dark: #D49C21;
    --coral: #FF6B6B;
    --mint: #10B981;
    --lavender: #A78BFA;
    --rose: #FB7185;
    --sunset: #FB923C;
    --ocean: #06B6D4;
    --earth-brown: #6B4F4F;
    --cream: #F4F8FF;
    --off-white: #F8FBFF;
    --light-gray: #E2ECFF;
    --charcoal: #1F2A37;
    
    /* Legacy support */
    --primary-green: var(--primary-blue);
    --primary-green-light: var(--primary-blue-light);
    --primary-green-dark: var(--primary-blue-dark);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    color: var(--charcoal);
    /* Match SolNetPI-style soft blue gradient background */
    background:
        radial-gradient(circle at 0% 0%, rgba(125, 211, 252, 0.6) 0, transparent 55%),
        radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.35) 0, transparent 60%),
        radial-gradient(circle at 50% 100%, rgba(16, 185, 129, 0.25) 0, transparent 65%),
        radial-gradient(circle at 100% 100%, rgba(245, 158, 11, 0.2) 0, transparent 50%),
        linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-green);
}

/* Navigation - Reference Site Style (Niseko Hakuunso-like) */
.site-navbar {
    /* No solid background – sits directly on top of the hero image/content */
    background: transparent !important;
    padding: 1.5rem 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: none !important;
    border: none !important;
    margin: 0 !important;
}

.site-navbar .container {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Brand + menu both aligned to the left */
    padding-left: 0.75rem !important; /* Very small left padding for spacing */
    padding-right: 1.5rem !important;
    margin-left: 0 !important; /* Remove Bootstrap's auto margin */
    margin-right: 0 !important;
    max-width: 100% !important; /* Override Bootstrap's max-width */
    width: 100% !important;
}

.navbar-nav-wrapper {
    display: flex;
    align-items: center;
    flex: 1; /* Grow to fill available space */
    justify-content: space-between; /* Space between menu and buttons */
    margin-left: 0.5rem; /* Very small gap between logo and first menu item */
    gap: 0;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    /* Push buttons to the right side */
    margin-left: auto;
    margin-right: 0;
    flex-wrap: wrap;
}

.site-navbar.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08) !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.site-navbar .navbar-nav {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
}

.site-navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

.site-navbar .navbar-collapse {
    flex-grow: 0;
    margin-left: 0;
    padding-left: 0;
    /* Ensure it's visible on mobile when show class is present */
}

.site-navbar .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-right: 0;
    margin-left: 0;
    padding-left: 0;
}

.site-navbar.scrolled .navbar-brand {
    color: #fff;
}

.site-navbar .site-logo {
    max-height: 50px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.site-navbar .nav-link {
    font-weight: 400;
    color: #fff !important;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
    display: block;
    visibility: visible !important;
    opacity: 1 !important;
    white-space: nowrap;
}

.site-navbar.scrolled .nav-link {
    color: #0f172a !important;
}

.site-navbar .nav-link:hover {
    color: #fff !important;
    opacity: 0.7;
}

.site-navbar.scrolled .nav-link:hover {
    color: var(--primary-blue-dark) !important;
    opacity: 0.7;
}

.nav-separator {
    color: rgba(255, 255, 255, 0.5);
    padding: 0 0.25rem;
    font-size: 0.9rem;
    visibility: visible !important;
    opacity: 1 !important;
    font-weight: 300;
}

.site-navbar.scrolled .nav-separator {
    color: rgba(15, 23, 42, 0.3);
}

/* Language Selector - Reference Site Style */
.language-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 2px;
    background: transparent;
    border: 1px solid transparent;
}

.lang-link.active {
    background: transparent;
    color: #fff;
    border: 1px solid #d4a574;
    padding: 0.25rem 0.5rem;
}

.site-navbar.scrolled .lang-link {
    color: #0f172a;
}

.site-navbar.scrolled .lang-link.active {
    background: transparent;
    color: #0f172a;
    border: 1px solid #d4a574;
}

.lang-link:hover {
    color: #fff;
    opacity: 0.8;
}

.site-navbar.scrolled .lang-link:hover {
    color: #fff;
    opacity: 0.8;
}

/* Manage Booking Button - Match Reservations Button Style */
.btn-manage-booking {
    background: #7cb342;
    color: #fff;
    padding: 0.6rem 1.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.btn-manage-booking:hover {
    background: #689F38;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.4);
    text-decoration: none;
}

.btn-manage-booking i {
    font-size: 0.85rem;
}

/* Reservations Button - Reference Site Style */
.btn-reservations {
    background: #7cb342;
    color: #fff;
    padding: 0.6rem 1.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.btn-reservations:hover {
    background: #689F38;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.4);
}

/* Mobile Navigation - Full Screen Overlay Menu (Reference Site Style) */
@media (max-width: 991px) {
    /* Prevent body scroll when mobile menu is open */
    body.mobile-menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
    }
    
    .site-navbar {
        background: transparent !important;
        backdrop-filter: none;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 10000 !important;
        transform: translate3d(0, 0, 0) !important;
        will-change: transform !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
    }
    
    /* Disable white background on scroll for mobile */
    .site-navbar.scrolled {
        background: transparent !important;
        box-shadow: none !important;
        border-bottom: none !important;
    }
    
    .site-navbar .container {
        padding-left: 0.75rem !important;
        padding-right: 1rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Show hotel name (text) on the left side on mobile - fixed position to prevent movement */
    .site-navbar .navbar-brand:not(.mobile-menu-logo) {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: fixed !important;
        top: 1.5rem !important;
        left: 0.75rem !important;
        transform: translate3d(0, 0, 0) !important;
        color: #fff !important;
        z-index: 10001 !important;
        margin-right: auto;
        order: 1;
        font-size: 1rem;
        font-weight: 500;
        will-change: transform !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
        isolation: isolate !important;
    }
    
    /* Hide logo image on mobile, show text only */
    .site-navbar .navbar-brand:not(.mobile-menu-logo) .site-logo {
        display: none;
    }
    
    /* Hamburger menu on the right side - fixed position to prevent movement */
    .site-navbar .navbar-toggler {
        order: 2;
        margin-left: auto;
        position: fixed !important;
        top: 1.5rem !important;
        right: 1rem !important;
        z-index: 10006 !important;
        transform: translate3d(0, 0, 0) !important;
        will-change: transform !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
    }
    
    /* Ensure close button (X) is visible when menu is open */
    .site-navbar .navbar-toggler:not(.collapsed) {
        z-index: 10006 !important;
    }
    
    /* Hide the navbar collapse by default on mobile */
    .site-navbar .navbar-collapse.collapse {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(255, 255, 255, 0.5) !important;
        backdrop-filter: blur(3px) !important;
        z-index: 10005 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.3s ease, visibility 0.3s ease !important;
        padding: 0 !important;
        overflow-y: auto !important;
        transform: translate3d(0, 0, 0) !important;
        will-change: transform !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
        pointer-events: none !important;
        height: auto !important;
    }
    
    .site-navbar .navbar-collapse.collapse.show,
    .site-navbar .navbar-collapse.collapsing {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: flex !important;
        height: 100vh !important;
    }
    
    /* Ensure hamburger button is always clickable, even when menu is open */
    .site-navbar .navbar-toggler {
        pointer-events: auto !important;
    }
    
    /* Make sure menu overlay doesn't block the button */
    .site-navbar .navbar-collapse.collapse.show ~ .navbar-toggler,
    .site-navbar .navbar-toggler:not(.collapsed) {
        pointer-events: auto !important;
        z-index: 10006 !important;
    }
    
    .navbar-nav-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        padding: 2rem;
        padding-top: 4rem;
        position: relative;
        display: flex;
    }
    
    /* Logo inside menu wrapper - HIDDEN BY DEFAULT */
    .navbar-nav-wrapper .mobile-menu-logo {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    /* Only show mobile-menu-logo on mobile when menu is open (home page only via PHP) */
    @media (max-width: 991px) {
        .navbar-collapse.show .navbar-nav-wrapper .mobile-menu-logo {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            height: auto !important;
            width: auto !important;
            position: relative !important;
            left: auto !important;
            margin: 0 auto 1.5rem auto !important;
            padding: 0 !important;
            text-align: center !important;
        }
        
        .navbar-nav-wrapper .mobile-menu-logo .site-logo {
            max-height: 60px;
            width: auto;
            display: block;
            margin: 0 auto;
        }
    }
    
    /* On desktop, ALWAYS hide mobile-menu-logo */
    @media (min-width: 992px) {
        .navbar-nav-wrapper .mobile-menu-logo,
        .navbar-collapse.show .navbar-nav-wrapper .mobile-menu-logo {
            display: none !important;
            visibility: hidden !important;
        }
    }
    
    /* Ensure only one navbar-brand logo is visible at a time */
    .site-navbar .navbar-brand:not(:first-of-type) {
        display: none !important;
    }
    
    /* Hide duplicate logos - hide any navbar-brand that comes after another */
    .site-navbar .navbar-brand ~ .navbar-brand {
        display: none !important;
    }
    
    .navbar-nav-wrapper .mobile-menu-logo .site-logo {
        max-height: 60px;
        width: auto;
        display: block;
        margin: 0 auto;
    }
    
    
    .site-navbar .navbar-nav {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 0;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .site-navbar .navbar-nav .nav-item {
        width: 100%;
        text-align: center;
        padding: 0;
        margin: 0;
        border: none;
        border-bottom: none;
    }
    
    .site-navbar .nav-link {
        color: rgba(0, 0, 0, 0.8) !important;
        font-size: 1rem;
        font-weight: 400;
        padding: 1rem 0 !important;
        display: block;
        width: 100%;
        transition: all 0.2s ease;
        text-align: center;
        letter-spacing: 0.02em;
        border-bottom: none;
    }
    
    .site-navbar .nav-link:hover,
    .site-navbar .nav-link.active {
        color: #7cb342 !important;
    }
    
    .site-navbar .nav-link:hover {
        opacity: 1;
        background: transparent;
    }
    
    .nav-separator {
        display: none !important;
    }
    
    .navbar-right {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0;
    }
    
    .language-selector {
        display: flex;
        gap: 0.75rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .lang-link {
        color: rgba(0, 0, 0, 0.8) !important;
        border: 1px solid rgba(0, 0, 0, 0.2) !important;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        transition: all 0.2s ease;
        font-size: 0.85rem;
        background: transparent;
    }
    
    .lang-link.active {
        background: transparent !important;
        border-color: #7cb342 !important;
        color: rgba(0, 0, 0, 0.9) !important;
    }
    
    .lang-link:hover {
        background: rgba(124, 179, 66, 0.1) !important;
        opacity: 1 !important;
    }
    
    .btn-manage-booking,
    .btn-reservations {
        font-size: 0.85rem;
        padding: 1rem 2rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
        display: block;
        background: #7cb342;
        color: #fff;
        border: none;
        border-radius: 0;
        font-weight: 500;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }
    
    .btn-manage-booking:hover,
    .btn-reservations:hover {
        background: #689F38;
        color: #fff;
    }
    
    
    /* Desktop logo styling */
    @media (min-width: 992px) {
        .site-navbar .navbar-brand:not(.mobile-menu-logo) {
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
            position: relative !important;
            top: auto !important;
            left: auto !important;
            transform: none !important;
            color: #fff !important;
            z-index: 10000;
            margin-right: 0;
            order: auto;
        }
        
        /* Show logo image on desktop */
        .site-navbar .navbar-brand:not(.mobile-menu-logo) .site-logo {
            display: block;
            max-height: 50px;
        }
        
        /* Hide mobile menu logo on desktop - always hidden */
        .navbar-nav-wrapper .mobile-menu-logo,
        .navbar-collapse.show .navbar-nav-wrapper .mobile-menu-logo {
            display: none !important;
        }
        
        .site-navbar.scrolled .navbar-brand {
            color: #fff !important;
        }
        
        /* Reset hamburger order on desktop */
        .site-navbar .navbar-toggler {
            order: auto;
            margin-left: 0;
        }
    }
    
    .navbar-toggler {
        border: none;
        z-index: 10000;
        position: relative;
        padding: 0;
        background: #7cb342;
        width: 60px;
        height: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 0;
        transition: background 0.3s ease;
        transform: none !important;
        will-change: auto !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
    }
    
    .navbar-toggler:not(.collapsed) {
        z-index: 10001;
        background: #689F38;
        transform: none !important;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
    
    .navbar-toggler-icon {
        display: block;
        width: 20px;
        height: 2px;
        background: #fff;
        position: relative;
        transition: all 0.3s ease;
        background-image: none !important;
        margin-bottom: 5px;
    }
    
    /* Hamburger icon (3 lines) - shown when closed */
    .navbar-toggler-icon::before {
        content: '';
        position: absolute;
        top: -7px;
        left: 0;
        width: 20px;
        height: 2px;
        background: #fff;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        top: 7px;
        left: 0;
        width: 20px;
        height: 2px;
        background: #fff;
        transition: all 0.3s ease;
    }
    
    /* X icon when menu is open */
    .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
        background: transparent;
        transform: rotate(45deg) translateZ(0);
        margin-bottom: 0;
        will-change: transform;
    }
    
    .navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
        top: 0;
        transform: rotate(90deg) translateZ(0);
        will-change: transform;
    }
    
    .navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
        opacity: 0;
    }
    
    /* MENU text below icon */
    .navbar-toggler::after {
        content: 'MENU';
        position: absolute;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%) translateZ(0);
        font-size: 0.65rem;
        font-weight: 400;
        letter-spacing: 0.05em;
        color: #fff;
        text-transform: uppercase;
        will-change: transform;
        line-height: 1;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    
    /* Prevent body scroll when menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }
}


@media (max-width: 1200px) {
    .navbar-nav-wrapper {
        margin-left: 1.5rem;
        gap: 0;
    }
    
    .site-navbar .nav-link {
        padding: 0.25rem 0.4rem;
        font-size: 0.85rem;
    }
    
    .site-navbar .navbar-nav {
        flex-wrap: wrap;
    }
    
    .site-navbar .container {
        padding-left: 0.75rem !important;
        padding-right: 1.5rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--vibrant-purple), var(--vibrant-pink));
    background-size: 200% 200%;
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(79, 163, 255, 0.35), 0 0 0 0 rgba(79, 163, 255, 0);
    letter-spacing: 0.5px;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--vibrant-pink), var(--vibrant-purple), var(--primary-blue));
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(79, 163, 255, 0.5), 0 0 20px rgba(139, 92, 246, 0.3);
    animation: none;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 163, 255, 0.3);
}

.btn-outline-light:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

/* Hero Section - Clean Minimal Design */
.booking-hero {
    --hero-bg-img: url('../images/hero-bg.jpg');
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    background: #f5f5f5; /* Grey background fallback when no slides */
}

/* Remove dark overlay from hero images */
.booking-hero::before {
    display: none;
}

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

.hero-carousel-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.hero-carousel {
    width: 100%;
    height: 100%;
}

.hero-carousel .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

/* Remove dark overlay from hero images */
.hero-image-bg::after {
    display: none;
}

.booking-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    pointer-events: none;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

/* Remove dark overlay from hero videos */
.hero-video-bg::after {
    display: none;
}

/* Hero Carousel Controls */
.hero-carousel .swiper-pagination {
    bottom: 80px;
    z-index: 10;
}

.hero-carousel .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-carousel .swiper-pagination-bullet-active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

.hero-carousel .swiper-button-next,
.hero-carousel .swiper-button-prev {
    color: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-carousel .swiper-button-next:hover,
.hero-carousel .swiper-button-prev:hover {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
}

.hero-carousel .swiper-button-next::after,
.hero-carousel .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.1);
}

.hero-copy {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.hero-eyebrow {
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-headline {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 0.02em;
    text-transform: none;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 4px 40px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    margin-bottom: 2rem !important;
    animation: fadeInUp 0.8s ease-out;
    color: #fff; /* White color for headline over images */
    pointer-events: auto;
}

.hero-subline {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    letter-spacing: 0.01em;
    font-weight: 300;
    color: #fff; /* White color for subtitle over images */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
    max-width: 700px;
    margin: 0 auto;
    pointer-events: auto;
}

/* Hero Action Buttons (Bottom Right) */
.hero-action-buttons {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.btn-check-availability {
    background: #1E6CD6;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 108, 214, 0.3);
}

.btn-check-availability:hover {
    background: #1a5bb8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 108, 214, 0.4);
}

.btn-chat {
    background: #fff;
    color: #333;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-chat:hover {
    background: #f8f9fa;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-down-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.scroll-down-btn:hover {
    color: #ffffff;
    transform: translateY(5px);
}

.scroll-text {
    font-weight: 500;
}

.scroll-arrow {
    font-size: 1.5rem;
    line-height: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Booking Toolbar Section (moved below hero) */
.booking-toolbar-section {
    margin-top: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.booking-toolbar {
    background: linear-gradient(135deg, #fff 0%, #fafcff 100%);
    border-radius: 20px;
    padding: 2rem 2.5rem 2.5rem;
    border: 1px solid rgba(79, 163, 255, 0.15);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(79, 163, 255, 0.05);
    max-width: 1020px;
    position: relative;
    animation: slideInRight 0.8s ease-out 0.3s both;
}

.booking-toolbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-dark), var(--primary-green));
    border-radius: 20px 20px 0 0;
}

.booking-toolbar__note {
    color: #6b7280;
    letter-spacing: 0.1em;
}

.booking-toolbar__form {
    --bs-gutter-x: 0.5rem;
    --bs-gutter-y: 0.5rem;
}

.booking-toolbar__form > * {
    min-width: 180px;
}

.booking-toolbar__form > [class*="col-"] {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
}

.booking-toolbar .field-group {
    display: flex;
    flex-direction: column;
}

.booking-toolbar .form-label {
    font-weight: 600;
    letter-spacing: 0.08em;
    font-size: 0.68rem;
    color: #3f4a5a;
    margin-bottom: 0.4rem;
}

.booking-toolbar .btn {
    padding: 0.9rem 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.destination-input {
    position: relative;
}

.destination-input input {
    padding-right: 3.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    height: 52px;
    border-radius: 6px;
    border: 1px solid #c9ced6;
    background-color: #fff;
}

.destination-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #a1a9b7;
}

.booking-toolbar .show-options {
    color: var(--charcoal);
}

.booking-toolbar .show-options:hover {
    color: var(--primary-green);
}

.booking-toolbar__note {
    color: #4a5568;
    letter-spacing: 0.08em;
}

.booking-toolbar .chevron {
    font-size: 0.8rem;
}

.booking-toolbar .form-control,
.booking-toolbar .form-select {
    height: 52px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    border: 1px solid #c9ced6;
    background-color: #fff;
}

.booking-toolbar .btn-primary {
    height: 56px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0c3f60;
    border-color: #0c3f60;
}

.booking-toolbar__cta {
    min-width: 140px;
    border-radius: 4px;
    background: #7cb342;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    font-size: 0.75rem;
    height: 36px;
    padding: 0.4rem 0.75rem;
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    color: #fff;
}

.booking-toolbar__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(124, 179, 66, 0.35);
    background: #689F38;
    color: #fff;
}

.booking-toolbar__cta:focus-visible {
    outline: 3px solid rgba(124, 179, 66, 0.3);
    outline-offset: 2px;
}

.booking-toolbar__modify {
    letter-spacing: 0.08em;
    color: var(--charcoal);
}

.booking-toolbar__modify:hover {
    color: var(--primary-green);
}

.offer-card {
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--vibrant-purple), var(--vibrant-pink), var(--vibrant-orange));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.offer-card:nth-child(1)::before {
    background: linear-gradient(90deg, var(--primary-blue), var(--vibrant-teal));
}

.offer-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--vibrant-pink), var(--vibrant-purple));
}

.offer-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--vibrant-orange), var(--gold));
}

.offer-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(79, 163, 255, 0.25), 0 0 0 4px rgba(79, 163, 255, 0.1);
    border-color: rgba(79, 163, 255, 0.3);
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-image {
    min-height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #cfdff5;
    transition: transform 0.6s ease;
    position: relative;
    overflow: hidden;
}

.offer-card:hover .offer-image {
    transform: scale(1.1);
}

.offer-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.offer-image--video {
    background-image: none !important;
    display: flex;
    align-items: stretch;
}

.offer-image--video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.offer-image--video::after {
    display: none;
}

/* Wedding Swiper Styles */
.wedding-swiper {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    position: relative;
    background-color: #cfdff5;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    /* Isolate Swiper transforms to prevent affecting fixed elements */
    isolation: isolate;
    contain: layout style paint;
}

.wedding-swiper .swiper-wrapper {
    height: 100%;
    display: flex;
}

.wedding-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.wedding-swiper .swiper-slide .offer-image {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: 0;
    display: block;
}

.wedding-swiper .swiper-pagination {
    display: none !important;
}

.wedding-swiper .swiper-pagination-bullet {
    display: none !important;
}

.wedding-swiper .swiper-pagination-bullet-active {
    display: none !important;
}

/* Enable pagination on mobile */
@media (max-width: 768px) {
    .wedding-swiper .swiper-pagination {
        display: flex !important;
        bottom: 10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: auto !important;
        z-index: 10 !important;
    }
    
    .wedding-swiper .swiper-pagination-bullet {
        display: inline-block !important;
        width: 8px !important;
        height: 8px !important;
        margin: 0 4px !important;
        background: rgba(255, 255, 255, 0.8) !important;
        opacity: 1 !important;
        transition: all 0.3s ease !important;
    }
    
    .wedding-swiper .swiper-pagination-bullet-active {
        display: inline-block !important;
        width: 20px !important;
        background: #fff !important;
        border-radius: 4px !important;
    }
}

.wedding-swiper .swiper-button-next,
.wedding-swiper .swiper-button-prev {
    color: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.wedding-swiper .swiper-button-next:hover,
.wedding-swiper .swiper-button-prev:hover {
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
}

.wedding-swiper .swiper-button-next::after,
.wedding-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.wedding-swiper .swiper-button-next.swiper-button-disabled,
.wedding-swiper .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}

/* Mobile Responsive Styles for Wedding Swiper */
@media (max-width: 768px) {
    /* Ensure the offer-card containing the swiper is visible */
    .offer-card {
        display: flex !important;
        flex-direction: column !important;
        overflow: visible !important;
        min-height: auto !important;
    }
    
    .offer-card .wedding-swiper {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        height: 280px !important;
        min-height: 280px !important;
        border-radius: 12px 12px 0 0;
        width: 100% !important;
    }
    
    .wedding-swiper {
        height: 280px !important;
        min-height: 280px !important;
        border-radius: 12px 12px 0 0;
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        overflow: visible !important;
    }
    
    .wedding-swiper .swiper-wrapper {
        height: 100% !important;
        display: flex !important;
        width: 100% !important;
        position: relative !important;
    }
    
    .wedding-swiper .swiper-slide {
        width: 100% !important;
        height: 100% !important;
        min-height: 280px !important;
        display: flex !important;
        flex-shrink: 0 !important;
        position: relative !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .wedding-swiper .swiper-slide .offer-image {
        min-height: 280px !important;
        height: 100% !important;
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background-size: cover !important;
        background-position: center !important;
        position: relative !important;
    }
    
    .wedding-swiper .swiper-button-next,
    .wedding-swiper .swiper-button-prev {
        display: none !important;
    }
    
    /* Make sure the swiper container is visible */
    #home-weddings .col-lg-6 {
        margin-bottom: 2rem;
    }
    
    #home-weddings .row {
        flex-direction: column;
    }
    
    #home-weddings .col-lg-6:first-child {
        order: 1;
        margin-bottom: 2rem;
    }
    
    #home-weddings .col-lg-6:last-child {
        order: 2;
    }
    
    /* Ensure wedding swiper is always visible on mobile */
    #home-weddings .wedding-swiper,
    #home-weddings .offer-card .wedding-swiper {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: 280px !important;
        min-height: 280px !important;
    }
    
    #home-weddings .wedding-swiper .swiper-wrapper,
    #home-weddings .offer-card .wedding-swiper .swiper-wrapper {
        display: flex !important;
        visibility: visible !important;
    }
    
    #home-weddings .wedding-swiper .swiper-slide,
    #home-weddings .offer-card .wedding-swiper .swiper-slide {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 576px) {
    .wedding-swiper {
        height: 220px !important;
        min-height: 220px !important;
    }
    
    .wedding-swiper .swiper-slide {
        min-height: 220px !important;
    }
    
    .wedding-swiper .swiper-slide .offer-image {
        min-height: 220px !important;
        height: 220px !important;
    }
    
    .wedding-swiper .swiper-button-next,
    .wedding-swiper .swiper-button-prev {
        width: 32px !important;
        height: 32px !important;
        margin-top: -16px;
    }
    
    .wedding-swiper .swiper-button-next::after,
    .wedding-swiper .swiper-button-prev::after {
        font-size: 14px !important;
    }
    
    .wedding-swiper .swiper-pagination-bullet {
        width: 6px !important;
        height: 6px !important;
        margin: 0 3px !important;
    }
    
    .wedding-swiper .swiper-pagination-bullet-active {
        width: 18px !important;
    }
}

/* Additional mobile styles for smaller screens - consolidated above */

.pillar-card {
    background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--vibrant-purple), var(--vibrant-pink));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.pillar-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, #fff 100%);
}

.pillar-card:nth-child(1)::before {
    background: linear-gradient(180deg, var(--vibrant-teal), var(--mint));
}

.pillar-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, #fff 100%);
}

.pillar-card:nth-child(2)::before {
    background: linear-gradient(180deg, var(--vibrant-purple), var(--lavender));
}

.pillar-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, #fff 100%);
}

.pillar-card:nth-child(3)::before {
    background: linear-gradient(180deg, var(--vibrant-pink), var(--rose));
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(79, 163, 255, 0.2), 0 0 0 3px rgba(79, 163, 255, 0.1);
    border-color: rgba(79, 163, 255, 0.3);
}

.pillar-card:hover::before {
    transform: scaleY(1);
}

.pillar-card h5 {
    background: linear-gradient(135deg, var(--primary-blue), var(--vibrant-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.pillar-card:nth-child(1) h5 {
    background: linear-gradient(135deg, var(--vibrant-teal), var(--mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pillar-card:nth-child(2) h5 {
    background: linear-gradient(135deg, var(--vibrant-purple), var(--lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pillar-card:nth-child(3) h5 {
    background: linear-gradient(135deg, var(--vibrant-pink), var(--rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 251, 255, 0.98) 50%,
        rgba(236, 72, 153, 0.02) 100%);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12),
                0 0 0 1px rgba(79, 163, 255, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--primary-blue), 
        var(--vibrant-purple), 
        var(--vibrant-pink), 
        var(--vibrant-orange));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.experience-card:hover {
    box-shadow: 0 25px 60px rgba(79, 163, 255, 0.25),
                0 0 0 3px rgba(139, 92, 246, 0.15);
    transform: translateY(-3px);
    border-color: rgba(79, 163, 255, 0.3);
}

.experience-card:hover::before {
    opacity: 1;
}

.experience-image {
    width: 100%;
    min-height: 380px;
    background-image: url('../images/experience.jpg');
    background-size: cover;
    background-position: center;
    background-color: #d9e8ff;
    border-radius: 20px;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15),
                0 0 0 2px rgba(79, 163, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.experience-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(79, 163, 255, 0.05) 0%,
        rgba(139, 92, 246, 0.05) 50%,
        rgba(236, 72, 153, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.experience-image:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(79, 163, 255, 0.3),
                0 0 0 4px rgba(139, 92, 246, 0.2);
}

.experience-image:hover::after {
    opacity: 1;
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    color: var(--primary-green);
    width: 64px;
    height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-3px);
}

/* Forms */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(27, 94, 32, 0.25);
}

/* Footer - Exact match to reference site style */
.site-footer-minimal {
    background: #000;
    color: #fff;
    padding: 0;
    margin-top: 5rem;
    border-top: none;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.site-footer-minimal::before {
    display: none;
}

.site-footer-minimal[style*="background-image"]::before {
    display: none;
}

.site-footer-minimal .container {
    position: relative;
    z-index: 1;
    padding: 0;
}

.footer-content {
    text-align: left;
    max-width: 100%;
    margin: 0;
    background: #fff;
    color: #333;
    padding: 3rem 2.5rem 2rem;
    position: relative;
    clip-path: polygon(0 0, 65% 0, 100% 100%, 0 100%);
    width: 50%;
    min-width: 400px;
    margin-left: 0;
}

.footer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(0, 0, 0, 0.02) 20px,
            rgba(0, 0, 0, 0.02) 40px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 20px,
            rgba(0, 0, 0, 0.02) 20px,
            rgba(0, 0, 0, 0.02) 40px
        );
    pointer-events: none;
    z-index: 0;
}

.footer-content > * {
    position: relative;
    z-index: 1;
}

.footer-brand-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-logo {
    margin-bottom: 0;
    flex-shrink: 0;
}

.footer-logo-img {
    max-height: 60px;
    max-width: 200px;
    height: auto;
    width: auto;
    display: block;
}

.footer-brand {
    margin-bottom: 0;
}

.footer-brand-name {
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #333;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.4;
}

.footer-address-section {
    margin-bottom: 1rem;
}

.footer-address {
    font-size: 0.95rem;
    color: #333;
    margin: 0;
    letter-spacing: 0.02em;
    line-height: 1.6;
    font-weight: 300;
}

.footer-contact-section {
    margin-bottom: 1.5rem;
}

.footer-contact-button {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #7cb342;
    border: 1px solid #7cb342;
    color: #fff;
    text-decoration: none !important;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.footer-contact-button:hover,
.footer-contact-button:focus,
.footer-contact-button:active {
    background: #689f38;
    border-color: #689f38;
    color: #fff !important;
    text-decoration: none !important;
}

.footer-contact-button:visited {
    color: #fff;
}

.footer-email {
    font-size: 0.95rem;
    color: #333;
    margin: 0;
    line-height: 1.6;
    font-weight: 300;
}

.footer-email a {
    color: #333;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-email a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.footer-links-minimal {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.footer-links-minimal a {
    color: #333;
    text-decoration: none;
    transition: opacity 0.2s ease;
    font-weight: 300;
}

.footer-links-minimal a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.footer-link-separator {
    margin: 0 0.75rem;
    color: #333;
    font-weight: 300;
    opacity: 0.6;
}

.footer-solnet-link {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.footer-solnet-link-text {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: opacity 0.2s ease;
}

.footer-solnet-link-text:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.footer-copyright-minimal {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-copyright-text {
    font-size: 0.8rem;
    color: #333;
    margin: 0;
    letter-spacing: 0.01em;
    font-weight: 300;
    text-transform: none;
    opacity: 0.85;
    line-height: 1.6;
}

.footer-credits-separator {
    margin: 0 0.5rem;
    color: #999;
    opacity: 0.5;
    font-weight: 300;
}

.footer-credits-label {
    color: #666;
    font-weight: 300;
    margin-right: 0.25rem;
}

.footer-credits-link {
    color: #7cb342;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer-credits-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #7cb342;
    transition: width 0.3s ease;
}

.footer-credits-link:hover {
    color: #689f38;
    text-decoration: none;
}

.footer-credits-link:hover::after {
    width: 100%;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .site-footer-minimal {
        padding: 0;
    }
    
    .footer-content {
        width: 100%;
        min-width: auto;
        clip-path: none;
        padding: 3rem 2rem 2rem;
    }
    
    .footer-brand {
        margin-bottom: 2rem;
    }
    
    .footer-brand-name {
        font-size: 1.4rem;
        letter-spacing: 0.1em;
    }
    
    .footer-address {
        font-size: 0.9rem;
    }
    
    .footer-contact-label {
        font-size: 0.8rem;
    }
    
    .footer-email {
        font-size: 0.9rem;
    }
    
    .footer-links-minimal {
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }
    
    .footer-copyright-minimal {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .footer-copyright-minimal p {
        font-size: 0.75rem;
    }
}

/* Legacy footer support - only for non-minimal footers */
footer:not(.site-footer-minimal) a:hover {
    color: var(--gold) !important;
    transition: color 0.3s ease;
}

.reservation-fab {
    position: fixed !important;
    right: 2rem;
    bottom: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    transform: none !important;
    will-change: auto !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    isolation: isolate !important;
    contain: layout style paint !important;
}

.reservation-fab__button {
    border: none;
    border-radius: 4px;
    padding: 0.4rem 0.75rem;
    min-width: 140px;
    height: 36px;
    background: #7cb342;
    color: #fff;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.25);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-fab__button:hover {
    transform: translateY(-1px) translateZ(0) !important;
    box-shadow: 0 6px 16px rgba(124, 179, 66, 0.35);
    background: #689F38;
    color: #fff;
}

.reservation-fab__button.disabled,
.reservation-fab__button[aria-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.reservation-fab.is-hidden {
    display: none !important;
}

.reservation-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    width: min(520px, calc(100% - 2rem));
    max-height: min(720px, calc(100vh - 3rem));
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.25);
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, calc(-50% + 35px)) scale(0.98);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1001;
    border: 1px solid #d7e0f4;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.reservation-popup.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, calc(-50% + 10px)) scale(1);
}

.reservation-popup__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(6, 15, 26, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1000;
}

.hv-chat-wrapper--fab {
    position: static;
    bottom: auto;
    right: auto;
    align-items: flex-end;
}

.hv-chat-wrapper--fab .hv-chat-toggle {
    box-shadow: 0 12px 20px rgba(15, 23, 42, 0.18);
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hv-chat-wrapper--fab .hv-chat-panel {
    position: fixed !important;
    bottom: 6rem !important;
    right: 1.25rem !important;
    top: auto !important;
    left: auto !important;
    max-height: calc(100vh - 7rem) !important;
    z-index: 10007 !important;
    overflow: visible !important;
}

.reservation-popup__backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.reservation-popup__header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.reservation-popup__body {
    font-size: 0.95rem;
    overflow-y: auto;
    padding-right: 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.reservation-popup__form,
#availabilityResults {
    flex-shrink: 0;
}

#availabilityResults {
    max-height: 260px;
    overflow-y: auto;
    padding-right: 0.25rem;
}

.reservation-popup__close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.reservation-popup__close:hover {
    background: rgba(15, 23, 42, 0.15);
}

.reservation-popup__note {
    letter-spacing: 0.08em;
    color: #4a5568;
}

.reservation-popup__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.reservation-popup__field-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.reservation-popup__field-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.reservation-popup__form .form-label {
    font-weight: 600;
    letter-spacing: 0.04em;
    font-size: 0.7rem;
    color: #4a5568;
}

.reservation-popup__form .form-control,
.reservation-popup__form .form-select {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #c7d4ea;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    color: #1f2a37;
    background-color: #fefefe;
}

.reservation-popup .destination-input input {
    text-transform: uppercase;
}

.reservation-popup__form .btn {
    font-weight: 700;
    letter-spacing: 0.05em;
    height: 50px;
    border-radius: 8px;
    background-color: #0c3f60;
    border-color: #0c3f60;
}

.reservation-popup__actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.reservation-popup__links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.reservation-popup__links .show-options {
    color: var(--charcoal);
}

.reservation-popup__assist {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.reservation-popup__assist-item {
    display: flex;
    gap: 0.6rem;
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
    background: #f7f9fc;
}

.reservation-popup__assist-icon {
    font-size: 1.25rem;
    line-height: 1;
    color: #0c3f60;
}

.reservation-popup hr {
    margin: 1.5rem 0;
}

.btn-close {
    background-color: transparent;
}

.reservation-popup__form .show-options {
    padding-top: 0;
}

body.reservation-popup-open {
    overflow: hidden;
}

/* Homepage section tabs (on hero) */
.home-section-tabs {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 999px;
    padding: 0.35rem;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55);
}

.home-section-tabs .nav-link {
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.75rem;
    color: rgba(249, 250, 251, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.home-section-tabs .nav-link.active {
    background: #fff;
    color: #111827;
}

@media (max-width: 576px) {
    .reservation-popup {
        border-radius: 16px;
        width: calc(100% - 1.5rem);
    }

    .reservation-popup__links {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Utility Classes */
.text-primary-green {
    color: var(--primary-green) !important;
}

.bg-primary-green {
    background-color: var(--primary-green) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        text-align: center;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Glamorous Effects */
.glow-effect {
    box-shadow: 0 0 20px rgba(79, 163, 255, 0.3), 0 0 40px rgba(79, 163, 255, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

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

/* Available Rooms Results Section */
#availableRoomsResults {
    background-color: var(--off-white);
}

#availableRoomsResults .card {
    border: 1px solid #e0e7ff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#availableRoomsResults .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12) !important;
}

#availableRoomsResults .card-title {
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

#availableRoomsResults .text-primary {
    color: var(--primary-green) !important;
    font-size: 1.25rem;
}

#availableRoomsResults .btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    font-weight: 600;
    letter-spacing: 0.05em;
}

#availableRoomsResults .btn-primary:hover {
    background-color: var(--primary-green-dark);
    border-color: var(--primary-green-dark);
}

#availabilityDatesInfo {
    font-size: 1rem;
    color: var(--charcoal);
}

/* Page Header Styles - Consistent across all pages */
.page-hero {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.4), rgba(5, 150, 105, 0.35)),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    padding: 6rem 0 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.08) 100%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-size: clamp(2rem, 4vw, 3.5rem);
    animation: fadeInUp 0.8s ease-out;
}

.page-hero .lead {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Section Styling - Consistent spacing and design */
.content-section {
    padding: 5rem 0;
}

#home-about {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(125, 211, 252, 0.55), transparent 55%),
        radial-gradient(circle at 88% 18%, rgba(139, 92, 246, 0.3), transparent 60%),
        radial-gradient(circle at 15% 85%, rgba(16, 185, 129, 0.25), transparent 65%),
        radial-gradient(circle at 92% 90%, rgba(245, 158, 11, 0.18), transparent 55%),
        linear-gradient(135deg, rgba(240, 249, 255, 0.85) 0%, rgba(224, 242, 254, 0.9) 50%, rgba(240, 249, 255, 0.85) 100%);
}

#home-about::before,
#home-about::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.25;
    pointer-events: none;
}

#home-about::before {
    top: -120px;
    left: -80px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.9), transparent 65%);
}

#home-about::after {
    bottom: -140px;
    right: -90px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.6), transparent 65%);
}

#home-about .container {
    position: relative;
    z-index: 1;
}

#home-about .glamorous-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(79, 163, 255, 0.15);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.content-section-alt {
    background: linear-gradient(135deg, 
        rgba(244, 248, 255, 0.8) 0%, 
        rgba(248, 251, 255, 0.9) 25%,
        rgba(236, 72, 153, 0.03) 50%,
        rgba(139, 92, 246, 0.03) 75%,
        rgba(79, 163, 255, 0.05) 100%);
    padding: 5rem 0;
    position: relative;
}

.content-section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        var(--primary-blue) 20%,
        var(--vibrant-purple) 40%,
        var(--vibrant-pink) 60%,
        var(--vibrant-orange) 80%,
        transparent);
    opacity: 0.3;
}

/* Homepage Enhancements */
.home-section-eyebrow {
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    color: #6b7280;
}

.home-featured-rooms .home-room-card {
    background: linear-gradient(135deg, #fff 0%, #fafcff 100%);
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    border: 2px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
}

.home-featured-rooms .home-room-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--vibrant-purple));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.home-featured-rooms .home-room-card:nth-child(1)::after {
    background: linear-gradient(90deg, var(--primary-blue), var(--ocean));
}

.home-featured-rooms .home-room-card:nth-child(2)::after {
    background: linear-gradient(90deg, var(--vibrant-purple), var(--vibrant-pink));
}

.home-featured-rooms .home-room-card:nth-child(3)::after {
    background: linear-gradient(90deg, var(--vibrant-orange), var(--gold));
}

.home-featured-rooms .home-room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(79, 163, 255, 0.25), 0 0 0 3px rgba(79, 163, 255, 0.1);
    border-color: rgba(79, 163, 255, 0.32);
}

.home-featured-rooms .home-room-card:hover::after {
    opacity: 1;
}

.home-room-card__image {
    min-height: 210px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.home-room-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.35), transparent 50%);
}

.home-room-card__body {
    padding: 1.6rem 1.7rem 1.7rem;
}

.home-room-card__price {
    font-weight: 700;
    font-size: 1.05rem;
}

.home-room-card__meta {
    font-size: 0.75rem;
}

.home-room-card__amenities {
    margin: 0;
}

.amenity-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    background: linear-gradient(135deg, rgba(79, 163, 255, 0.08), rgba(139, 92, 246, 0.06));
    border: 1.5px solid rgba(79, 163, 255, 0.25);
    font-size: 0.78rem;
    color: #4b5563;
    white-space: nowrap;
    font-weight: 500;
    transition: all 0.3s ease;
}

.amenity-pill:nth-child(1) {
    background: linear-gradient(135deg, rgba(79, 163, 255, 0.1), rgba(6, 182, 212, 0.08));
    border-color: rgba(79, 163, 255, 0.3);
}

.amenity-pill:nth-child(2) {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.08));
    border-color: rgba(139, 92, 246, 0.3);
}

.amenity-pill:nth-child(3) {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 146, 60, 0.08));
    border-color: rgba(249, 115, 22, 0.3);
}

.amenity-pill:nth-child(4) {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(16, 185, 129, 0.08));
    border-color: rgba(20, 184, 166, 0.3);
}

.amenity-pill:nth-child(5) {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(251, 113, 133, 0.08));
    border-color: rgba(236, 72, 153, 0.3);
}

.amenity-pill:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(79, 163, 255, 0.25);
    border-width: 2px;
}

.amenity-pill::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-blue), var(--vibrant-purple));
    box-shadow: 0 0 6px rgba(79, 163, 255, 0.5);
}

.amenity-pill:nth-child(1)::before {
    background: linear-gradient(135deg, var(--primary-blue), var(--ocean));
}

.amenity-pill:nth-child(2)::before {
    background: linear-gradient(135deg, var(--vibrant-purple), var(--vibrant-pink));
}

.amenity-pill:nth-child(3)::before {
    background: linear-gradient(135deg, var(--vibrant-orange), var(--sunset));
}

.amenity-pill:nth-child(4)::before {
    background: linear-gradient(135deg, var(--vibrant-teal), var(--mint));
}

.amenity-pill:nth-child(5)::before {
    background: linear-gradient(135deg, var(--vibrant-pink), var(--rose));
}

.home-amenities-strip .home-amenities-pills {
    max-width: 640px;
}

.home-amenities-strip {
    border-top: 1px solid rgba(79, 163, 255, 0.08);
    border-bottom: 1px solid rgba(79, 163, 255, 0.08);
}

.home-testimonials-grid {
    display: grid;
    gap: 1.25rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #fff 0%, #fafcff 100%);
    border-radius: 18px;
    padding: 1.5rem 1.6rem;
    border: 2px solid transparent;
    border-left: 4px solid;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--vibrant-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:nth-child(1) {
    border-left-color: var(--primary-blue);
}

.testimonial-card:nth-child(1)::before {
    background: linear-gradient(180deg, var(--primary-blue), var(--ocean));
}

.testimonial-card:nth-child(2) {
    border-left-color: var(--vibrant-purple);
}

.testimonial-card:nth-child(2)::before {
    background: linear-gradient(180deg, var(--vibrant-purple), var(--vibrant-pink));
}

.testimonial-card:hover {
    transform: translateX(4px);
    box-shadow: 0 14px 36px rgba(79, 163, 255, 0.2);
    border-color: rgba(79, 163, 255, 0.3);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card__quote {
    font-size: 0.98rem;
    color: #111827;
    margin-bottom: 0.75rem;
}

.testimonial-card__meta {
    font-size: 0.85rem;
    color: #6b7280;
}

.location-card .map-placeholder {
    display: none;
}

.location-card .map-embed iframe {
    display: block;
    width: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .home-room-card__body {
        padding: 1.25rem 1.25rem 1.4rem;
    }

    .home-amenities-strip {
        text-align: left;
    }
}

/* Enhanced Card Styles */
.glamorous-card {
    background: linear-gradient(135deg, #fff 0%, #fafcff 100%);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(79, 163, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glamorous-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--primary-blue), 
        var(--vibrant-purple), 
        var(--vibrant-pink), 
        var(--vibrant-orange), 
        var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.glamorous-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
    border-color: rgba(79, 163, 255, 0.3);
}

.glamorous-card:hover::before {
    transform: scaleX(1);
}

/* Form Validation Styles */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.is-valid,
.form-select.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
}

.valid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #28a745;
}

/* Enhanced Input Focus States */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(79, 163, 255, 0.25);
    outline: none;
}

/* Note: Amharic is written left-to-right (LTR), same as English */
/* RTL support removed as it's not needed for Amharic */

/* Chat Widget */
.hv-chat-wrapper {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 1100;
    font-family: var(--font-body);
    display: flex !important;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    width: auto !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
}

.hv-chat-toggle {
    position: relative;
    background: #7cb342;
    border: none;
    border-radius: 4px;
    color: #fff;
    display: flex !important;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    min-width: 140px;
    height: 36px;
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    visibility: visible !important;
    opacity: 1 !important;
    cursor: pointer;
    z-index: 1100;
    font-size: 0.75rem;
}

/* Force visibility - override any hiding */
.hv-chat-wrapper .hv-chat-toggle,
.hv-chat-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.hv-chat-toggle:hover {
    transform: translateY(-1px) translateZ(0) !important;
    box-shadow: 0 6px 16px rgba(124, 179, 66, 0.35);
    background: #689F38;
}

.hv-chat-toggle-icon {
    width: 20px;
    height: 20px;
    border-radius: 0;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hv-chat-toggle-text small {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.05rem;
    line-height: 1.1;
}

.hv-chat-toggle-text strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.hv-chat-toggle.has-unread::after {
    content: '';
    position: absolute;
    top: 0.45rem;
    right: 0.6rem;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fb7185;
    box-shadow: 0 0 0 5px rgba(251, 113, 133, 0.2);
}

.hv-chat-panel {
    position: fixed !important;
    bottom: 6rem !important;
    right: 1.25rem !important;
    left: auto !important;
    top: auto !important;
    width: 360px !important;
    max-width: calc(100vw - 2.5rem) !important;
    height: 600px !important;
    max-height: calc(100vh - 7rem) !important;
    min-height: 400px !important;
    transform: translateY(16px) scale(0.97);
    opacity: 0;
    pointer-events: none;
    transition: all 0.22s ease;
    z-index: 10007 !important;
    visibility: hidden;
    display: block !important;
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hv-chat-panel.open {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
    visibility: visible !important;
    display: block !important;
}

.hv-chat-sheet {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(15, 23, 42, 0.1);
    overflow: hidden;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    min-height: 400px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.hv-chat-sheet-header {
    padding: 1rem 1.2rem;
    background: #f5f5f5;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.hv-chat-header-actions {
    display: flex;
    align-items: center;
    position: relative;
    gap: 0.4rem;
}

.hv-chat-menu-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.15);
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.hv-chat-menu-toggle span {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
}

.hv-chat-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 2.5rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
    padding: 0.4rem 0;
    min-width: 190px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 10;
}

.hv-chat-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hv-chat-menu-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    border: none;
    background: transparent;
    padding: 0.55rem 1rem;
    background: #fff;
    color: #0f172a;
    font-size: 0.78rem;
    font-weight: 600;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease;
}

.hv-chat-menu-item + .hv-chat-menu-item {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.hv-chat-menu-item:hover:not([disabled]) {
    background: #f4f4f5;
}

.hv-chat-menu-item[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
}

.hv-chat-close {
    background: transparent;
    border: none;
    font-size: 1.3rem;
    color: #94a3b8;
    padding: 0;
}

.hv-chat-sheet-header p {
    margin: 0;
    font-weight: 500;
    font-size: 0.95rem;
    color: #1f2937;
    line-height: 1.4;
}

.hv-chat-status {
    display: inline-block;
    background: #4ade80;
    color: #fff;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-weight: 500;
    margin-top: 0.3rem;
}

.hv-chat-close {
    background: transparent;
    border: none;
    font-size: 1.3rem;
    color: #94a3b8;
    padding: 0;
}

.hv-chat-sheet-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1 1 auto;
    background: #fff;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
}

.hv-chat-history {
    flex: 1;
    background: #fff;
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
    min-height: 200px;
}

.hv-chat-bubble {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 85%;
    word-wrap: break-word;
}

.hv-chat-bubble strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: #0f172a;
}

.hv-chat-bubble p {
    margin: 0;
    color: #0f172a;
}

.hv-chat-bubble-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.hv-chat-action-btn {
    background: transparent;
    border: none;
    padding: 0.25rem;
    color: #94a3b8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    min-width: 32px;
    min-height: 32px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.hv-chat-action-btn:hover {
    color: #64748b;
}

.hv-chat-action-btn.active {
    color: #4FA3FF;
    opacity: 1;
}

.hv-chat-action-btn.active svg {
    fill: currentColor;
}

/* Mobile improvements for chat widget */
@media (max-width: 768px) {
    .hv-chat-action-btn {
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .hv-chat-action-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .hv-chat-bubble-actions {
        gap: 0.75rem;
        margin-top: 0.75rem;
    }
    
    /* Improve touch targets for mobile */
    .hv-chat-icon-btn,
    .hv-chat-send,
    .hv-chat-menu-toggle,
    .hv-chat-close,
    .hv-chat-menu-item {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Ensure emoji picker is properly positioned on mobile */
    #hv-chat-emoji-picker {
        max-width: calc(100vw - 32px) !important;
        width: 280px !important;
        max-height: 40vh !important;
        touch-action: manipulation;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Improve file input button on mobile */
    #hv-chat-attach-btn {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Ensure chat panel is full width on very small screens */
    .hv-chat-panel {
        width: calc(100vw - 1.25rem) !important;
        max-width: 360px !important;
        position: fixed !important;
        bottom: 6rem !important;
        right: 1.25rem !important;
        top: auto !important;
        left: auto !important;
        height: 500px !important;
        max-height: calc(100vh - 7rem) !important;
        min-height: 400px !important;
        z-index: 10007 !important;
        overflow: visible !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .hv-chat-panel.open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: block !important;
        transform: translateY(0) scale(1) !important;
    }
    
    .hv-chat-sheet {
        width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
        min-height: 400px !important;
        box-sizing: border-box !important;
    }
    
    /* Improve input field on mobile */
    .hv-chat-input .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Better spacing for mobile */
    .hv-chat-history {
        padding: 0.75rem 1rem;
    }
    
    .hv-chat-bubble {
        padding: 0.65rem 0.85rem;
        font-size: 0.88rem;
    }
}

/* Read Receipts */
.hv-chat-read-receipt-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
    padding-top: 4px;
}

.hv-chat-read-receipt {
    font-size: 0.75rem;
    color: #64748b;
    opacity: 0.7;
}

.hv-chat-bubble.guest .hv-chat-read-receipt-container {
    justify-content: flex-start;
}

/* File Attachments */
.hv-chat-attachment {
    margin-top: 8px;
}

.hv-chat-attachment-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hv-chat-attachment-file a {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    transition: all 0.2s;
}

.hv-chat-attachment-file a:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.hv-chat-attachment-file svg {
    flex-shrink: 0;
}

/* Typing Indicator */
.hv-chat-typing-indicator {
    margin-top: 8px;
}

.hv-chat-typing-indicator .hv-chat-bubble {
    opacity: 0.7;
}

.typing-dots {
    display: inline-block;
    margin-right: 4px;
}

.typing-dots span {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: currentColor;
    margin-right: 2px;
    animation: typing-dot 1.4s infinite;
    opacity: 0.4;
}

.typing-dots span:nth-child(1) {
    animation-delay: 0s;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-dot {
    0%, 60%, 100% {
        opacity: 0.4;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

/* Auto-link URLs in messages */
.hv-chat-bubble p,
.chat-bubble p {
    word-wrap: break-word;
}

.hv-chat-bubble a,
.chat-bubble a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.chat-typing-indicator {
    margin-top: 8px;
}

.chat-typing-indicator .chat-bubble {
    opacity: 0.7;
}

.chat-typing-indicator .typing-dots {
    display: inline-block;
    margin-right: 4px;
}

.chat-typing-indicator .typing-dots span {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: currentColor;
    margin-right: 2px;
    animation: typing-dot 1.4s infinite;
    opacity: 0.4;
}

.chat-typing-indicator .typing-dots span:nth-child(1) {
    animation-delay: 0s;
}

.chat-typing-indicator .typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.chat-typing-indicator .typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

.hv-chat-bubble.agent {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    align-self: flex-start;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.hv-chat-bubble.guest {
    background: #e5f3e8;
    color: #0f172a;
    align-self: flex-end;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.hv-chat-field {
    margin-bottom: 0.75rem;
}

.hv-chat-form .form-control {
    border-radius: 8px;
    border: 1px solid rgba(15, 23, 42, 0.15);
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
    width: 100%;
    background: #fff;
}

.hv-chat-form .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.15rem rgba(79, 163, 255, 0.15);
    outline: none;
}

.hv-chat-form textarea.form-control {
    min-height: 70px;
    resize: vertical;
    font-family: var(--font-body);
}

.hv-chat-primary {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 0.65rem;
    font-weight: 600;
    background: #111827;
    color: #fff;
    transition: background 0.2s ease;
}

.hv-chat-primary:hover {
    background: #0f172a;
}

.hv-chat-step-message {
    margin-top: auto;
    padding: 0.75rem 1.2rem;
    background: #fff;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.hv-chat-input {
    background: #f5f5f5;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0.5rem 0.6rem;
    gap: 0.4rem;
    position: relative;
    z-index: 1;
}

.hv-chat-input .form-control {
    border: none;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    background: transparent;
    box-shadow: none;
    flex: 1;
}

.hv-chat-input .form-control:focus {
    box-shadow: none;
    border: none;
    outline: none;
}

.hv-chat-icon-btn {
    background: transparent;
    border: none;
    padding: 0.3rem;
    color: #94a3b8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    flex-shrink: 0;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.hv-chat-icon-btn:hover {
    color: #64748b;
}

/* Mobile improvements for icon buttons */
@media (max-width: 768px) {
    .hv-chat-icon-btn {
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
    }
    
    .hv-chat-icon-btn svg {
        width: 20px;
        height: 20px;
        pointer-events: none;
    }
    
    /* Emoji picker mobile improvements */
    #hv-chat-emoji-picker {
        max-width: calc(100vw - 32px) !important;
        width: 280px !important;
        right: 0 !important;
        left: auto !important;
        max-height: 250px !important;
        padding: 10px !important;
        z-index: 10000 !important;
        pointer-events: auto !important;
        position: absolute !important;
    }
    
    #hv-chat-emoji-picker > div {
        gap: 6px !important;
    }
    
    /* Ensure chat input container has proper positioning */
    .hv-chat-input {
        position: relative;
        z-index: 1;
    }
    
    /* Reaction buttons mobile improvements */
    .hv-chat-action-btn {
        pointer-events: auto !important;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 2;
    }
    
    .hv-chat-action-btn svg {
        pointer-events: none;
    }
    
    .hv-chat-bubble-actions {
        pointer-events: auto !important;
        z-index: 1;
        position: relative;
    }
    
    .hv-chat-icon-btn {
        pointer-events: auto !important;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    /* Menu items and buttons mobile improvements */
    .hv-chat-menu-item,
    .hv-chat-start,
    .hv-chat-send {
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        pointer-events: auto !important;
    }
    
    .hv-chat-menu-item {
        padding: 0.75rem 1rem !important;
    }
    
    /* Ensure all interactive elements are touchable */
    button.hv-chat-end,
    button.hv-chat-new,
    button.hv-chat-view,
    button.hv-chat-start,
    button.hv-chat-send {
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        pointer-events: auto !important;
    }
}

.hv-chat-send {
    background: transparent;
    border: none;
    color: #94a3b8;
    width: auto;
    height: auto;
    padding: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.hv-chat-send:hover {
    color: #64748b;
}

.hv-chat-wrapper--embedded {
    position: static;
    bottom: auto;
    right: auto;
    align-self: flex-end;
    margin-top: 0;
}

.booking-toolbar .hv-chat-wrapper--embedded {
    width: 100%;
    margin-top: 0;
}

.booking-toolbar .hv-chat-wrapper--embedded .hv-chat-toggle {
    width: 100%;
    min-width: auto;
}

.hv-chat-wrapper--embedded .hv-chat-toggle {
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.15);
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hv-chat-wrapper--embedded .hv-chat-panel {
    position: fixed;
}

.reservation-fab {
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}

.hv-chat-wrapper--fab {
    position: static;
    bottom: auto;
    right: auto;
    align-items: center;
    display: flex;
}

.hv-chat-wrapper--fab .hv-chat-toggle {
    box-shadow: 0 12px 20px rgba(15, 23, 42, 0.18);
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hv-chat-wrapper--fab .hv-chat-panel {
    position: fixed !important;
    bottom: 6rem !important;
    right: 1.25rem !important;
    top: auto !important;
    left: auto !important;
    max-height: calc(100vh - 7rem) !important;
    z-index: 10007 !important;
    overflow: visible !important;
}

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 640px) {
    .reservation-fab {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0.75rem;
        right: 1rem !important;
        bottom: 1rem !important;
        flex-wrap: nowrap;
        width: 160px;
        margin: 0;
        padding: 0;
        position: fixed !important;
        z-index: 10004 !important;
        transform: none !important;
        will-change: auto !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
        overflow: visible !important;
    }
    
    .reservation-fab__button {
        min-width: 160px !important;
        width: 160px !important;
        max-width: 160px !important;
        height: 44px !important;
        min-height: 44px !important;
        max-height: 44px !important;
        padding: 0.5rem 0.75rem !important;
        font-size: 0.75rem !important;
        flex-shrink: 0;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
        margin: 0 !important;
        box-sizing: border-box !important;
        border: none !important;
        border-radius: 4px !important;
        box-shadow: 0 4px 12px rgba(124, 179, 66, 0.25) !important;
        transform: translate3d(0, 0, 0) !important;
        will-change: transform !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
        isolation: isolate !important;
    }
    
    .hv-chat-wrapper--fab {
        flex-shrink: 0;
        width: 160px !important;
        min-width: 160px !important;
        max-width: 160px !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: static !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        top: auto !important;
        flex-direction: column !important;
        gap: 0 !important;
        transform: translate3d(0, 0, 0) !important;
        will-change: transform !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
        isolation: isolate !important;
    }
    
    .hv-chat-wrapper--fab .hv-chat-toggle {
        min-width: 160px !important;
        width: 160px !important;
        max-width: 160px !important;
        height: 44px !important;
        min-height: 44px !important;
        max-height: 44px !important;
        padding: 0.5rem 0.75rem !important;
        font-size: 0.75rem !important;
        flex-shrink: 0;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
        margin: 0 !important;
        box-sizing: border-box !important;
        border: none !important;
        border-radius: 4px !important;
        box-shadow: 0 4px 12px rgba(124, 179, 66, 0.25) !important;
        transform: translate3d(0, 0, 0) !important;
        will-change: transform !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    /* Install App button - align with other buttons on mobile */
    #pwaInstallButton.pwa-install-btn {
        position: static !important;
        bottom: auto !important;
        right: auto !important;
        min-width: 160px !important;
        width: 160px !important;
        max-width: 160px !important;
        height: 44px !important;
        min-height: 44px !important;
        max-height: 44px !important;
        padding: 0.5rem 0.75rem !important;
        font-size: 0.75rem !important;
        background: #7cb342 !important;
        color: #fff !important;
        border: none !important;
        border-radius: 4px !important;
        box-shadow: 0 4px 12px rgba(124, 179, 66, 0.25) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        flex-shrink: 0 !important;
        transform: translate3d(0, 0, 0) !important;
        will-change: transform !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
    }
    
    #pwaInstallButton.pwa-install-btn:hover {
        background: #689F38 !important;
        transform: translateY(-1px) translateZ(0) !important;
        box-shadow: 0 6px 16px rgba(124, 179, 66, 0.35) !important;
    }
    
    /* Add install button to reservation-fab container on mobile */
    .reservation-fab #pwaInstallButton.pwa-install-btn {
        order: 0;
    }
    
    .hv-chat-header-actions {
        gap: 0.25rem;
    }

    .hv-chat-wrapper {
        right: 0.8rem;
        bottom: 0.8rem;
    }

    .hv-chat-toggle {
        min-width: 120px;
        padding: 0.35rem 0.6rem;
        height: 32px;
        font-size: 0.7rem;
        gap: 0.3rem;
    }
    
    .hv-chat-toggle-icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
    
    .hv-chat-toggle-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .hv-chat-toggle-text small {
        font-size: 0.6rem;
        margin-bottom: 0.05rem;
        line-height: 1.1;
    }
    
    .hv-chat-toggle-text strong {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .booking-toolbar__cta {
        min-width: 120px;
        height: 32px;
        padding: 0.35rem 0.6rem;
        font-size: 0.7rem;
    }

    .hv-chat-panel {
        width: calc(100vw - 1rem) !important;
        right: 0.5rem !important;
        bottom: 6rem !important;
        top: auto !important;
        left: auto !important;
        position: fixed !important;
        height: 500px !important;
        max-height: calc(100vh - 7rem) !important;
        min-height: 400px !important;
        z-index: 10007 !important;
        overflow: visible !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .hv-chat-panel.open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: block !important;
        transform: translateY(0) scale(1) !important;
    }
    
    .hv-chat-sheet {
        width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
        min-height: 400px !important;
        box-sizing: border-box !important;
    }
}

/* ============================================
   LAZY LOADING STYLES
   ============================================ */
img.lazy,
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
    background: #f0f0f0;
    min-height: 200px;
}

img.lazy-loaded,
img[loading="lazy"] {
    opacity: 1;
}

/* Loading placeholder */
img.lazy::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */
/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Content visibility for better rendering performance */
.lazy-section {
    content-visibility: auto;
    contain-intrinsic-size: 500px;
}

/* ============================================
   PAYMENT INFORMATION SECTION
   ============================================ */
.payment-sidebar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.payment-info-section {
    animation: fadeInUp 0.6s ease-out;
}

.payment-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-blue), var(--vibrant-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(79, 163, 255, 0.3);
}

.payment-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.payment-options-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--vibrant-purple), var(--primary-blue));
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-option-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.payment-option-card:hover::before {
    opacity: 1;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.payment-logo-container {
    text-align: center;
    margin-bottom: 1rem;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-bank-logo {
    max-height: 45px;
    max-width: 140px;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.payment-option-card:hover .payment-bank-logo {
    transform: scale(1.05);
}

.payment-bank-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.payment-bank-icon i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.payment-details {
    text-align: center;
}

.payment-bank-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.payment-account-name,
.payment-account-number {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.payment-account-name:last-child,
.payment-account-number:last-child {
    margin-bottom: 0;
}

.payment-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.payment-value {
    display: block;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.account-number-display {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.payment-account-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.btn-copy-account {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-copy-account:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    color: white;
}

.btn-copy-account:active {
    transform: scale(0.95);
}

.btn-copy-account i {
    font-size: 0.875rem;
}

.payment-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-footer i {
    color: var(--primary-blue);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Payment Instructions */
.payment-instructions {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--primary-blue);
    border-radius: 8px;
    padding: 1rem;
}

.payment-instructions-header {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.payment-instructions-header i {
    color: var(--primary-blue);
}

.payment-instructions-content {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Payment Deadline Indicator */
.payment-deadline {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.payment-deadline.deadline-urgent {
    background: rgba(255, 87, 34, 0.15);
    border-color: rgba(255, 87, 34, 0.4);
    animation: pulse 2s infinite;
}

.payment-deadline.deadline-passed {
    background: rgba(244, 67, 54, 0.15);
    border-color: rgba(244, 67, 54, 0.4);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.payment-deadline-header {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.payment-deadline-header i {
    color: #ffc107;
}

.payment-deadline.deadline-urgent .payment-deadline-header i {
    color: #ff5722;
}

.payment-deadline.deadline-passed .payment-deadline-header i {
    color: #f44336;
}

.payment-deadline-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.payment-deadline-time {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.deadline-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.deadline-time {
    font-weight: 600;
    color: white;
}

/* Payment Reference Helper */
.payment-reference-helper {
    background: rgba(79, 163, 255, 0.1);
    border: 1px solid rgba(79, 163, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
}

.payment-reference-header {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.payment-reference-header i {
    color: var(--primary-blue);
}

.payment-reference-content {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
}

.payment-reference-items {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 0.75rem;
    margin: 0.75rem 0;
}

.payment-reference-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.payment-reference-item:last-child {
    margin-bottom: 0;
}

.reference-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
}

.reference-value {
    color: white;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.btn-copy-reference {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.btn-copy-reference:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-copy-reference i {
    font-size: 0.75rem;
}

/* Payment Confirmation Card */
.payment-confirmation {
    margin-top: 1rem;
}

.payment-confirmation-card {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 10px;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.payment-confirmation-card:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.payment-confirmation-icon {
    width: 45px;
    height: 45px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-confirmation-icon i {
    font-size: 1.25rem;
    color: #10b981;
}

.payment-confirmation-content {
    flex: 1;
}

.payment-confirmation-content h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.payment-confirmation-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.btn-open-concierge {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    color: white;
    border-radius: 6px;
    padding: 0.6rem 1.25rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-open-concierge:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
    color: white;
}

.btn-open-concierge:active {
    transform: translateY(0);
}

.btn-open-concierge i {
    font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .payment-sidebar {
        margin-top: 2rem;
    }
    
    .payment-option-card {
        padding: 1rem;
    }
    
    .payment-confirmation-card {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-confirmation-icon {
        margin: 0 auto;
    }
}

