/* --- CSS Variables & Reset --- */
        :root {
            --bwBlue: #1E407C;
            --bwGold: #C5A059;
            --bwDark: #0f2040;
            --lightGray: #F3F4F6;
            --white: #ffffff;
            --text-dark: #333333;
            --text-gray: #666666;
            --transition-speed: 0.3s;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Lato', sans-serif;
            color: var(--text-dark);
            background-color: #f9f9f9;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-speed);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* --- Utility Classes --- */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .text-center { text-align: center; }
        .uppercase { text-transform: uppercase; }
        .font-serif { font-family: 'Playfair Display', serif; }
        .font-bold { font-weight: 700; }
        .hidden { display: none !important; }

        /* --- Sticky Wrapper --- */
        .sticky-wrapper {
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        /* --- Top Navigation Bar --- */
        .top-nav {
            background-color: var(--bwDark);
            color: white;
            padding: 8px 0;
            border-bottom: 1px solid #444;
            font-size: 0.85rem;
        }

        .top-nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info span {
            margin-right: 15px;
                font-size: 16px;

        }

        .contact-info i {
            color: var(--bwGold);
            margin-right: 5px;
        }

        .social-links a, .social-links i {
            margin-left: 10px;
            cursor: pointer;
        }

        .social-links a:hover, .social-links i:hover {
            color: var(--bwGold);
        }

        /* --- Main Header --- */
        .main-header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 12px 0;
            position: relative;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-area {
            display: flex;
            align-items: center;
        }

        .logo-area img {
            height: 100px;
            width: auto;
        }

        .logo-text {
            margin-left: 12px;
            padding-left: 12px;
            border-left: 2px solid var(--bwBlue);
            display: none; /* Hidden on mobile */
        }

        .logo-text h1 {
            color: var(--bwBlue);
            font-size: 1.125rem;
            line-height: 1.1;
        }

        .logo-text p {
            color: var(--bwGold);
            font-size: 0.75rem;
            letter-spacing: 0.05em;
        }

        /* Desktop Menu */
        .desktop-menu {
            display: none;
            align-items: center;
            gap: 25px;
        }

        .nav-link {
            color: var(--bwDark);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 15px;
            letter-spacing: 0.05em;
            padding-bottom: 2px;
            border-bottom: 2px solid transparent;
        }

        .nav-link:hover {
            color: var(--bwBlue);
            border-bottom-color: var(--bwBlue);
        }

        .btn-book {
            background-color: var(--bwBlue);
            color: white;
            padding: 10px 24px;
            border-radius: 2px;
            font-weight: bold;
            font-size: 0.8rem;
            text-transform: uppercase;
            transition: transform 0.2s, background-color 0.2s;
        }

        .btn-book:hover {
            background-color: #153060;
            transform: scale(1.05);
        }

        /* Dropdown */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-btn {
            background: none;
            border: none;
            cursor: pointer;
            font-family: inherit;
            display: flex;
            align-items: center;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            left: 0;
            top: 100%;
            background-color: white;
            min-width: 250px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            z-index: 100;
            border-top: 4px solid var(--bwBlue);
            border-radius: 0 0 5px 5px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }

        .dropdown:hover .dropdown-content {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .dropdown-content a {
            color: var(--text-dark);
            padding: 12px 20px;
            text-decoration: none;
            display: block;
            font-size: 0.9rem;
            border-bottom: 1px solid #f1f1f1;
        }

        .dropdown-content a:hover {
            background-color: #f9f9f9;
            color: var(--bwBlue);
        }

        /* Mobile Menu */
        .mobile-toggle {
            display: block;
            background: none;
            border: none;
            color: var(--bwBlue);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .mobile-menu {
            display: none;
            background-color: white;
            border-top: 1px solid #eee;
            position: absolute;
            width: 100%;
            left: 0;
            top: 100%;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            z-index: 999;
        }

        .mobile-menu a {
            display: block;
            padding: 12px 20px;
            border-bottom: 1px solid #eee;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .mobile-menu .submenu-header {
            padding: 10px 20px;
            font-size: 0.75rem;
            color: var(--bwBlue);
            font-weight: bold;
            text-transform: uppercase;
            background-color: #f9f9f9;
        }

        .mobile-menu .submenu-item {
            padding-left: 40px;
            font-weight: 400;
            color: #555;
            background-color: #f9f9f9;
        }

        /* --- Slider Section --- */
        #home {
            position: relative;
            height: 600px;
            overflow: visible; /* Changed from hidden to visible to allow booking box overlap if needed, or use z-index carefully */
        }

        /* Ensure slider content stays within bounds */
        .slider-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .slider-track {
            display: flex;
            height: 100%;
            transition: transform 0.7s ease-in-out;
        }

        .slide {
            min-width: 100%;
            position: relative;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .slide-content h2 {
            font-size: 2.5rem;
            font-family: 'Playfair Display', serif;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .slide-content p {
            font-size: 1.25rem;
            font-weight: 300;
            margin-bottom: 2rem;
        }

        .btn-outline {
            border: 2px solid white;
            color: white;
            padding: 12px 30px;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 2px;
            font-size: 0.85rem;
            transition: 0.3s;
        }

        .btn-outline:hover {
            background-color: white;
            color: var(--bwBlue);
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0,0,0,0.3);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: 0.3s;
            opacity: 0;
            z-index: 10;
        }

        #home:hover .slider-btn {
            opacity: 1;
        }

        .slider-btn:hover {
            background-color: var(--bwBlue);
        }

        .prev-btn { left: 20px; }
        .next-btn { right: 20px; }

        /* =========================================
           NEW BOOKING BOX STYLES
           ========================================= */

 .booking-wrapper {
    position: relative;
    width: 100%;
    z-index: 20;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px; /* Limit max width on large screens */
}

.booking-form {
    background-color: white;
    padding: 25px 20px;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: -50px;
    width: 100%; /* Ensure it takes full width of wrapper */
}

/* Field Groups */
.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 120px; /* Reduced for better mobile */
}

/* Sizing for specific columns to match image proportions */
.group-date {
    flex: 2;
    min-width: 140px;
}
.group-select {
    flex: 1;
    min-width: 70px;
}
.group-btn {
    flex: 1.5;
    min-width: 120px;
}

/* Labels */
.form-group label {
    font-size: 0.85rem; /* Slightly smaller for mobile */
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    display: block;
}

/* Input Fields */
.form-control {
    width: 100%;
    padding: 10px 12px; /* Reduced padding for mobile */
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #333;
    background-color: #fff;
    outline: none;
    transition: border-color 0.2s;
    cursor: pointer;
    height: 46px; /* Slightly reduced height */
    box-sizing: border-box; /* Important for proper sizing */
}

.form-control:focus {
    border-color: #666;
}

/* Book Now Button */
.btn-check {
    width: 100%;
    height: 46px; /* Match input height */
    background-color: #6d6e71;
    color: white;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: capitalize;
    box-sizing: border-box;
}

.btn-check:hover {
    background-color: #555;
}

/* =========================================
   CUSTOM CALENDAR STYLE (To match screenshot)
   ========================================= */

/* The main calendar container */
.flatpickr-calendar {
    background: #102a43 !important;
    border: 1px solid #0d2136 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
    border-radius: 4px !important;
    max-width: 320px !important; /* Limit calendar width on mobile */
}

/* Responsive Design */
/* Tablet */
@media (max-width: 992px) {
    .booking-wrapper {
        padding: 0 20px;
        position: relative;
        transform: none; /* Remove transform for better mobile */
        margin-top: 30px; /* Add some spacing */
    }
    
    .booking-form {
        padding: 20px;
        gap: 12px;
    }
    
    .group-date, .group-select, .group-btn {
        flex: 1 1 calc(50% - 10px); /* 2 items per row with gap */
        min-width: calc(50% - 10px);
    }
}

/* Mobile (landscape and smaller tablets) */
@media (max-width: 768px) {
    .booking-wrapper {
        padding: 0 15px;
        margin-top: 20px;
    }
    
    .booking-form {
        padding: 18px 15px;
        gap: 10px;
    }
    
    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .form-control {
        padding: 8px 10px;
        height: 42px;
        font-size: 0.9rem;
    }
    
    .btn-check {
        height: 42px;
        font-size: 0.9rem;
    }
    
    .group-date, .group-select, .group-btn {
        flex: 1 1 100%; /* Stack vertically on small screens */
        min-width: 100%;
        margin-bottom: 8px;
    }
    
    .group-btn {
        margin-top: 5px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .booking-wrapper {
        padding: 0 12px;
        margin-top: 15px;
    }
    
    .booking-form {
        padding: 15px 12px;
        border-radius: 8px; /* Slightly larger radius for mobile */
    }
    
    .form-control {
        padding: 8px 10px;
        height: 44px; /* Slightly taller for touch targets */
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
    
    .btn-check {
        height: 44px;
        font-size: 16px;
    }
    
    /* Adjust calendar for mobile */
    .flatpickr-calendar {
        max-width: 280px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .flatpickr-day {
        height: 36px !important;
        line-height: 36px !important;
    }
}

/* Very Small Mobile Devices */
@media (max-width: 360px) {
    .booking-wrapper {
        padding: 0 10px;
    }
    
    .booking-form {
        padding: 12px 10px;
    }
    
    .form-control {
        padding: 7px 8px;
        height: 40px;
    }
    
    .btn-check {
        height: 40px;
    }
}

/* Fix for iOS Safari input styling */
@supports (-webkit-touch-callout: none) {
    .form-control {
        -webkit-appearance: none;
        border-radius: 4px;
    }
}
        /* --- About Section (Adjusted for Booking Box) --- */
        #about {
            padding: 20px 0 80px; /* Increased top padding to accommodate booking box overlap */
            background-color: white;
        }

        /* =========================================
           CUSTOM CALENDAR STYLE (To match screenshot)
           ========================================= */
        
        /* The main calendar container */
        .flatpickr-calendar {
            background: #102a43 !important; /* Dark Blue Background */
            border: 1px solid #0d2136 !important;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
            border-radius: 4px !important;
        }

        /* Header (Month/Year) */
        .flatpickr-calendar .flatpickr-header {
            background: #102a43 !important;
            border-bottom: 1px solid rgba(255,255,255,0.1) !important;
        }

        .flatpickr-current-month .flatpickr-monthDropdown-months,
        .flatpickr-current-month input.cur-year {
            color: #fff !important; /* White Text */
            font-weight: bold !important;
        }

        .flatpickr-prev-month svg, .flatpickr-next-month svg {
            fill: #fff !important; /* White Arrows */
        }

        /* Weekdays */
        span.flatpickr-weekday {
            background: #fff !important; /* White bar for weekdays */
            color: #102a43 !important;
            font-weight: bold !important;
        }

        /* Days Grid */
        .flatpickr-days {
            background: #102a43 !important;
            border-top: 1px solid #102a43 !important;
        }

        .flatpickr-day {
            color: #fff !important; /* White numbers */
            border: 1px solid rgba(255,255,255,0.2) !important; /* The Grid Lines */
            border-radius: 0 !important; /* Square grid */
            margin: 0 !important;
            height: 40px !important;
            line-height: 40px !important;
            width: 14.28% !important; /* Perfect 7-column grid */
            max-width: none !important;
        }

        /* Selected Day */
        .flatpickr-day.selected, 
        .flatpickr-day.startRange, 
        .flatpickr-day.endRange, 
        .flatpickr-day.selected.inRange, 
        .flatpickr-day.startRange.inRange, 
        .flatpickr-day.endRange.inRange, 
        .flatpickr-day:focus, 
        .flatpickr-day:hover {
            background: #fff !important; /* White background highlight */
            color: #102a43 !important; /* Dark text */
            border-color: #fff !important;
            font-weight: bold !important;
        }

        /* Today's date */
        .flatpickr-day.today {
            border-color: #fff !important;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .booking-form {
                flex-wrap: wrap;
            }
            .group-date, .group-select, .group-btn {
                flex: 1 1 45%; /* 2 items per row */
            }
        }
        
        @media (max-width: 576px) {
            .booking-form {
                flex-direction: column;
            }
            .form-group, .btn-check {
                width: 100%;
            }
        }

        /* --- About Section (Adjusted for Booking Box) --- */
        #about {
            padding: 120px 0 80px; /* Increased top padding to accommodate booking box overlap */
            background-color: white;
        }

        .about-grid {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        .about-image-wrapper {
            position: relative;
        }

        .about-deco-top {
            position: absolute;
            top: -15px;
            left: -15px;
            width: 100px;
            height: 100px;
            background-color: rgba(197, 160, 89, 0.2);
            border-top-left-radius: 20px;
            z-index: 0;
        }

        .about-img {
            position: relative;
            z-index: 1;
            border-radius: 8px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            transition: transform 0.5s;
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .about-img:hover {
            transform: scale(1.02);
        }

        .about-deco-bottom {
            position: absolute;
            bottom: -15px;
            right: -15px;
            width: 120px;
            height: 120px;
            border: 4px solid var(--bwBlue);
            border-bottom-right-radius: 8px;
            z-index: 2;
        }

        .about-content h4 {
            color: var(--bwGold);
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            margin-bottom: 10px;
        }

        .about-content h2 {
            font-size: 2.25rem;
            color: var(--bwDark);
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
        }

        .about-content p {
            color: var(--text-gray);
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .signature {
            height: 50px;
            opacity: 0.6;
        }

        /* --- Amenities Section --- */
        #amenities {
            padding: 80px 0;
            background-color: var(--lightGray);
            position: relative;
            overflow: hidden;
        }

        .amenities-header {
            text-center: center;
            margin-bottom: 60px;
        }

        .amenities-header h2 {
            font-size: 2.5rem;
            color: var(--bwDark);
            font-family: 'Playfair Display', serif;
        }

        .amenities-divider {
            width: 100px;
            height: 4px;
            background-color: var(--bwGold);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .amenity-card {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            border-top: 4px solid transparent;
            transition: all 0.3s;
        }

        .amenity-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            border-top-color: var(--bwBlue);
        }

        .icon-circle {
            width: 80px;
            height: 80px;
            background-color: #f9f9f9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: background-color 0.3s;
        }

        .amenity-card:hover .icon-circle {
            background-color: var(--bwBlue);
        }

        .amenity-card i {
            font-size: 1.8rem;
            color: var(--bwBlue);
            transition: color 0.3s;
            animation: spin-slow 8s linear infinite;
        }

        .amenity-card:hover i {
            color: white;
        }

        .amenity-card h3 {
            color: var(--bwDark);
            font-size: 1.25rem;
            margin-bottom: 10px;
        }

        .amenity-card p {
            color: #666;
            font-size: 0.9rem;
        }

        @keyframes spin-slow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* --- Attractions 3D Section --- */
        #attractions {
            padding: 100px 0;
            background-color: var(--bwDark);
            color: white;
            perspective: 1000px; /* 3D Perspective */
            overflow: hidden;
        }

        .attractions-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .attractions-header h4 { color: var(--bwGold); font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; }
        .attractions-header h2 { font-size: 2.5rem; margin-top: 10px; font-family: 'Playfair Display', serif; }
        .attractions-header p { color: #aaa; margin-top: 15px; }

        .cards-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            transform-style: preserve-3d;
        }

        .card-3d {
            width: 320px;
            height: 400px;
            position: relative;
            border-radius: 16px;
            cursor: pointer;
            transform: rotateY(0deg);
            transition: all 0.5s ease-out;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        /* Stagger the middle card for desktop look */
        .card-3d:nth-child(2) { margin-top: 0; }
        
        @media (min-width: 768px) {
            .card-3d:nth-child(2) { margin-top: 50px; }
        }

        .card-3d:hover {
            transform: translateY(-15px) scale(1.05);
            z-index: 10;
            box-shadow: 0 20px 40px rgba(0,0,0,0.7);
        }

        .card-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s;
        }

        .card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
        }

        .card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 25px;
            transform: translateY(20px);
            transition: transform 0.3s;
        }

        .card-3d:hover .card-content {
            transform: translateY(0);
        }

        .card-content h3 {
            color: var(--bwGold);
            font-size: 1.5rem;
            font-family: 'Playfair Display', serif;
            margin-bottom: 8px;
        }

        .card-content p {
            color: #ddd;
            font-size: 0.9rem;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .card-3d:hover .card-content p {
            opacity: 1;
        }

        /* --- Gallery Section --- */
        #gallery {
            padding: 80px 0;
            background-color: white;
            text-align: center;
        }

        #gallery h2 {
            font-size: 2.5rem;
            color: var(--bwDark);
            margin-bottom: 50px;
            font-family: 'Playfair Display', serif;
        }

        .gallery-viewport {
            width: 100%;
            height: 400px;
            perspective: 1500px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .gallery-track {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding: 40px;
            scroll-snap-type: x mandatory;
            width: 100%;
            /* Hide scrollbar */
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        
        .gallery-track::-webkit-scrollbar {
            display: none;
        }

        .gallery-img {
            flex-shrink: 0;
            width: 280px;
            height: 350px;
            object-fit: cover;
            border-radius: 10px;
            scroll-snap-align: center;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            transition: transform 0.4s;
            cursor: pointer;
        }

        .gallery-img:hover {
            transform: scale(1.1) translateZ(50px);
            z-index: 10;
        }

        /* --- Location & YouTube --- */
        #location {
            display: flex;
            flex-direction: column;
            background-color: #eee;
        }

        .map-container, .video-container {
            width: 100%;
            height: 400px;
            position: relative;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            filter: grayscale(100%);
            transition: filter 0.5s;
        }

        .map-container:hover iframe {
            filter: grayscale(0%);
        }

        .map-card {
            position: absolute;
            top: 20px;
            left: 20px;
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            max-width: 250px;
        }

        .map-card h5 { color: var(--bwBlue); font-weight: bold; margin-bottom: 5px; }
        .map-card p { font-size: 0.85rem; color: #666; }

        .video-container {
            background-color: black;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .video-bg {
            position: absolute;
            inset: 0;
            background-image: url('images/video.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.6;
        }

        .play-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
        }

        .play-btn {
            width: 80px;
            height: 80px;
            background-color: #dc2626;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            color: white;
            font-size: 1.5rem;
            transition: background-color 0.3s, transform 0.3s;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }

        .play-btn:hover {
            background-color: #b91c1c;
            transform: scale(1.1);
        }

        .play-content h3 { font-size: 1.75rem; margin-top: 20px; font-family: 'Playfair Display', serif; }
        .play-content p { font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 5px; }

        /* --- Footer --- */
        footer {
            background-color: var(--bwDark);
            color: white;
            padding: 60px 0 30px;
            border-top: 5px solid var(--bwGold);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            font-size: 1.25rem;
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
        }

        .footer-col h3.sub-head {
            font-size: 1rem;
            color: var(--bwGold);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-family: 'Lato', sans-serif;
        }

        .footer-col p {
            color: #9ca3af;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .footer-social { display: flex; gap: 15px; }
        .social-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }
        .social-icon:hover { background-color: var(--bwGold); }

       .footer-links {
    columns: 2; /* Two columns layout */
    -webkit-columns: 2;
    -moz-columns: 2;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    break-inside: avoid; /* Prevents awkward breaks between columns */
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
}


        .footer-contact li { display: flex; align-items: flex-start; color: #9ca3af; }
        .footer-contact i { color: var(--bwGold); margin-right: 15px; margin-top: 5px; }

      .footer-bottom {
    border-top: 1px solid #374151;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    font-size: 0.8rem;
    color: #9ca3af;
    line-height: 1.6;
}

.footer-bottom p {
    margin: 0;
}

.footer-disclaimer {
    max-width: 900px;
}

.footer-credits a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-credits a:hover {
    text-decoration: underline;
}

.separator {
    margin: 0 6px;
}

/* Desktop enhancement */
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
       
        text-align: left;
        font-size: 15px;
    }

    .footer-disclaimer,
    .footer-credits {
        max-width: 48%;
    }

    .footer-credits {
        text-align: right;
    }
}


        /* --- Back to Top Button --- */
        #backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--bwGold);
            color: white;
            border: 2px solid var(--bwGold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            transition: all 0.4s;
            z-index: 2000;
            /* Hidden State */
            transform: translateY(100px);
            opacity: 0;
            pointer-events: none;
        }

        #backToTop.show {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        #backToTop:hover {
            background-color: white;
            color: var(--bwGold);
        }

        /* --- Responsive Queries --- */
        @media (min-width: 768px) {
            .logo-text { display: block; }
            .desktop-menu { display: flex; }
            .mobile-toggle { display: none; }
            .about-grid { flex-direction: row; align-items: center; }
            .amenities-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(3, 1fr); }
            .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
            
            #home { height: 700px; }
            .slide-content h2 { font-size: 3.5rem; }
            #location { flex-direction: row; height: 500px; }
            .map-container, .video-container { width: 50%; height: 100%; }
            
            /* Booking form desktop layout */
            .booking-form {
                flex-direction: row;
                align-items: flex-end;
                gap: 20px;
            }
        }

        @media (min-width: 1024px) {
            .amenities-grid { grid-template-columns: repeat(3, 1fr); }
        }
		
		/* ===== INNER HERO SECTION ===== */
.inner-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
 
  background-color: #0D2C6C; /* SureStay Blue backdrop behind image */
}

/* Hero image */
.hero-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Hero Caption ===== */
.hero-caption {
  position: absolute;
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 20px;
  max-width: 900px;
}

/* Headline Animation */
.hero-caption h2 {
  font-size: 62px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.65);
  position: relative;
  animation: fadeInTitle 1.6s ease;
}

@keyframes fadeInTitle {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* 🌟 Gold Underline (SureStay Accent) */
.hero-caption h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C9A44D, transparent);
  border-radius: 2px;
  opacity: 0.9;
}

/* Subtext */
.hero-caption p {
  font-size: 22px;
  color: #f5f5f5;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 35px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.55);
  animation: fadeInText 1.8s ease forwards;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes fadeInText {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Subtle Overlay Gradient for Readability */
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 44, 108, 0.5) 0%, rgba(0, 0, 0, 0.6) 80%);
  z-index: 1;
}

/* Soft Spotlight behind text */
.hero-caption::before {
  content: "";
  position: absolute;
  inset: -40px 0 0 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 10%, transparent 80%);
  z-index: -1;
  opacity: 0.7;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero-caption h2 { font-size: 38px; }
  .hero-caption p { font-size: 17px; }
  .inner-hero { height: 60vh; margin-top: 120px; }
}

@media (max-width: 480px) {
  .hero-caption h2 { font-size: 30px; }
  .hero-caption p { font-size: 15px; }
}

		
		/* ===== Popular Facilities Section ===== */
.popular-facilities-section {
  background: #f8f9fb; /* Light neutral background */
  padding: 60px 20px;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.popular-facilities-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Heading Style */
.popular-facilities-header {
  text-align: center;
  margin-bottom: 50px;
}

.facilities-intro-label {
  font-size: 20px;
  font-weight: 600;
  color: #0D2C6C; /* SureStay Blue */
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.facilities-main-heading {
  font-size: 48px;
  color: #0D2C6C; /* SureStay Blue */
  font-weight: 700;
  margin-top: 10px;
  font-family: 'Playfair Display', serif;
}

.facilities-heading-underline {
  height: 3px;
  width: 80px;
  background-color: #C9A44D; /* Gold Accent */
  margin: 16px auto 0;
}

/* Subheading */
.facilities-subheading {
  font-size: 18px;
  color: #333;
  margin-top: 15px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Grid Layout */
.popular-facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Facility Card */
.facility-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(13, 44, 108, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(13, 44, 108, 0.15);
}

/* Facility Card Content */
.facility-card em {
  font-size: 48px;
  color: #C9A44D; /* Gold Accent for Icons */
  margin-bottom: 15px;
}

.facility-card h3 {
  font-size: 18px;
  color: #0D2C6C; /* SureStay Blue for headings */
  font-weight: 600;
  margin-bottom: 10px;
}

.facility-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Facility Card Background Overlay */
.facility-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(201,164,77, 0.15), rgba(13,44,108, 0.05));
  z-index: -1;
  transition: background 0.3s ease-in-out;
}

.facility-card:hover::before {
  background: linear-gradient(45deg, rgba(201,164,77, 0.3), rgba(13,44,108, 0.15));
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .popular-facilities-section {
    padding: 50px 4%;
  }

  .facilities-main-heading {
    font-size: 36px;
  }

  .facility-card em {
    font-size: 42px;
  }

  .facility-card h3 {
    font-size: 17px;
  }

  .facility-card p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .popular-facilities-grid {
    grid-template-columns: 1fr;
  }

  .facility-card {
    padding: 30px 20px;
  }

  .facility-card em {
    font-size: 38px;
  }
}
/* ===== Full Facilities Section ===== */
.full-facilities-section {
  padding: 90px 8%;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #f8f9fb 0%, #e8efff 100%);
  position: relative;
  overflow: hidden;
}

.full-facilities-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ===== Section Heading ===== */
.full-facilities-heading-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.full-facilities-heading {
  font-size: 40px;
  font-weight: 800;
  color: #0D2C6C; /* SureStay Blue */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Playfair Display', serif;
}

.facilities-divider {
  width: 90px;
  height: 4px;
  background-color: #C9A44D;
  margin: 16px auto 20px;
  border-radius: 2px;
}

.facilities-subheading {
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  font-size: 17px;
  line-height: 1.6;
}

/* ===== Facility Cards Wrapper ===== */
.facility-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

/* ===== Facility Category Cards ===== */
.facility-category {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 16px;
  border-top: 5px solid #C9A44D;
  box-shadow: 0 8px 30px rgba(13, 44, 108, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.facility-category:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(13, 44, 108, 0.15);
}

/* Subtle animated gradient overlay */
.facility-category::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(201,164,77,0.05), rgba(13,44,108,0.05));
  z-index: 0;
  transition: opacity 0.3s ease;
}

.facility-category:hover::before {
  opacity: 1;
}

/* ===== Icon Styling ===== */
.facility-category em {
  font-size: 45px;
  color: #C9A44D;
  margin-bottom: 20px;
  display: inline-block;
  transition: color 0.3s ease;
}

.facility-category:hover em {
  color: #0D2C6C;
}

/* ===== Card Headings ===== */
.facility-category h3 {
  font-size: 24px;
  color: #0D2C6C;
  font-weight: 700;
  margin-bottom: 20px;
  border-left: 5px solid #C9A44D;
  padding-left: 15px;
  font-family: 'Playfair Display', serif;
  position: relative;
  z-index: 1;
}

/* ===== Lists ===== */
.facility-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 50px;
  position: relative;
  z-index: 1;
}

.facility-category ul li {
  font-size: 16px;
  color: #444;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.facility-category ul li::before {
  content: "•";
  color: #C9A44D;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 3px;
}

.facility-category ul li:hover {
  color: #0D2C6C;
}

/* ===== Responsive Design ===== */
@media (max-width: 900px) {
  .facility-category ul {
    columns: 1;
  }

  .full-facilities-heading {
    font-size: 32px;
  }
}
/* ===== Things to Do Section ===== */
.things-grid-section {
  background: linear-gradient(135deg, #f8f9fb 0%, #e8efff 100%); /* Soft blue-white gradient */
  padding: 70px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(13, 44, 108, 0.08);
  position: relative;
  overflow: hidden;
}

/* Inner container */
.things-grid-wrap {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

/* Header Label */
.things-grid-header .things-label {
  font-size: 18px;
  font-weight: 600;
  color: #0D2C6C; /* SureStay Blue */
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Main Title */
.things-title {
  font-size: 46px;
  color: #0D2C6C; /* SureStay Blue */
  margin: 10px 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* Underline Accent */
.things-underline {
  width: 80px;
  height: 4px;
  background: #C9A44D; /* Gold accent */
  margin: 18px auto 35px;
  border-radius: 2px;
}

/* Section Description */
.facilities-subheading {
  max-width: 950px;
  margin: 0 auto;
  color: #444;
  font-size: 17px;
  line-height: 1.7;
}

/* ===== Grid Layout ===== */
.things-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* ===== Card Styling ===== */
.things-item {
  padding: 25px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(13, 44, 108, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect - Lift & Glow */
.things-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(13, 44, 108, 0.15);
}

/* Decorative Border Hover */
.things-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 2px solid transparent;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,164,77,0.3), rgba(13,44,108,0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.things-item:hover::before {
  opacity: 1;
}

/* ===== Image Styling ===== */
.things-img {
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  transition: all 0.4s ease;
}

.things-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.things-item:hover .things-img img {
  transform: scale(1.06);
}

/* ===== Title ===== */
.things-item h3 {
  font-size: 20px;
  color: #0D2C6C; /* SureStay Blue */
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: 'Lato', sans-serif;
  position: relative;
  z-index: 1;
}

/* ===== Description ===== */
.things-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .things-title {
    font-size: 32px;
  }
  .facilities-subheading {
    font-size: 15px;
  }
  .things-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .things-img {
    height: 180px;
  }
}
/* ===== Nearby Highlights Section ===== */
.nearby-highlights-section {
  background: linear-gradient(135deg, #f8f9fb 0%, #e8efff 100%); /* Soft blue-white gradient */
  padding: 20px 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(13, 44, 108, 0.08); /* SureStay blue-tinted shadow */
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

/* Container */
.nearby-highlights-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

/* Header */
.nearby-highlights-header {
  margin-bottom: 50px;
}

.nearby-highlights-title {
  font-size: 38px;
  color: #0D2C6C; /* SureStay Blue */
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 12px;
}

.nearby-highlights-underline {
  width: 90px;
  height: 4px;
  background-color: #C9A44D; /* Gold accent */
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ===== Grid Layout ===== */
.nearby-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* ===== Highlight Cards ===== */
.nearby-highlight-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 8px 25px rgba(13, 44, 108, 0.08);
  text-align: left;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}





/* ===== Card Titles ===== */
.highlight-card-title {
  font-size: 20px;
  color: #0D2C6C; /* SureStay Blue */
  margin-bottom: 14px;
  border-left: 4px solid #C9A44D; /* Gold accent */
  padding-left: 12px;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
  position: relative;
  z-index: 1;
}

/* ===== Card List ===== */
.highlight-card-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.highlight-card-list li {
  font-size: 16px;
  color: #444; /* Neutral dark gray */
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid #eee;
  position: relative;
  line-height: 1.6;
}

/* Gold bullet icons */
.highlight-card-list li::before {
  content: "•";
  color: #C9A44D;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 5px;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .nearby-highlights-title {
    font-size: 30px;
  }

  .highlight-card-title {
    font-size: 18px;
  }

  .highlight-card-list li {
    font-size: 15px;
  }
}
/* ===== Location Section ===== */
.custom-location-header {
  text-align: center;
  background: linear-gradient(135deg, #f8f9fb 0%, #e8efff 100%); /* Soft blue-white gradient */
  padding: 70px 20px;
  backdrop-filter: blur(8px);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(13, 44, 108, 0.08); /* Soft blue-tinted shadow */
  position: relative;
  overflow: hidden;
}

/* ===== Section Title ===== */
.custom-location-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0D2C6C; /* SureStay Blue */
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  position: relative;
}

/* Decorative Underline */
.custom-location-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #C9A44D; /* SureStay Gold Accent */
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
  opacity: 0.9;
}

/* ===== Description Paragraphs ===== */
.custom-location-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444; /* Neutral text */
  max-width: 1100px;
  margin: 20px auto;
  font-family: 'Lato', sans-serif;
  text-align: justify;
  transition: color 0.3s ease;
}

/* Slight text glow on hover (polish touch) */
.custom-location-description:hover {
  color: #0D2C6C;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .custom-location-header {
    padding: 50px 15px;
  }

  .custom-location-title {
    font-size: 2rem;
  }

  .custom-location-description {
    font-size: 1rem;
    text-align: left;
  }
}
/* ===== Location Section Hero ===== */
.location-section-hero {
  background: linear-gradient(135deg, #f8f9fb 0%, #e8efff 100%); /* Soft blue-white gradient */
  padding: 60px 20px;
  border-radius: 16px;
}

/* Wrapper */
.location-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(13, 44, 108, 0.1); /* Blue-tinted shadow */
  overflow: hidden;
  border-radius: 16px;
}

/* Left Content Area */
.location-info-box {
  flex: 1;
  padding: 40px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Heading */
.location-info-box h2 {
  font-size: 2.6rem;
  color: #0D2C6C; /* SureStay Blue */
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
  position: relative;
}

.location-info-box h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background-color: #C9A44D; /* Gold underline accent */
  margin-top: 10px;
  border-radius: 2px;
}

.location-info-box p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.7;
  font-family: 'Lato', sans-serif;
}

/* ===== Coordinates & Directions Boxes ===== */
.coordinates-area,
.directions-area {
  background: #f4f7fb; /* Light blue-white tone */
  padding: 20px;
  border-left: 5px solid #C9A44D; /* Gold accent border */
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(13, 44, 108, 0.05);
}

.coordinates-area h4,
.directions-area h4 {
  color: #0D2C6C; /* SureStay Blue for subheadings */
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

/* Coordinates List */
.coordinates-area ul {
  list-style: none;
  padding-left: 0;
  color: #333;
}

.coordinates-area ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* ===== Directions Form ===== */
.directions-area form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border 0.3s;
}

.directions-area form input:focus {
  outline: none;
  border: 1px solid #0D2C6C;
}

/* Button Styling */
.directions-area form button {
  width: 100%;
  padding: 12px;
  background: #0D2C6C; /* SureStay Blue */
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.directions-area form button:hover {
  background: #C9A44D; /* Gold hover */
  color: #0D2C6C; /* Contrast for readability */
}

/* ===== Right Side Map ===== */
.location-map-box {
  flex: 1;
  background: #f8f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-map-box iframe {
  border-radius: 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .location-wrapper-hero {
    flex-direction: column;
  }

  .location-map-box {
    height: 350px;
  }

  .location-info-box h2 {
    font-size: 2rem;
  }
}
/* ===== Contact Header Section ===== */
.custom-contact-header {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(135deg, #f8f9fb 0%, #e8efff 100%); /* Soft blue-white gradient */
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(13, 44, 108, 0.08); /* Blue-tinted shadow for depth */
  position: relative;
  overflow: hidden;
}

/* ===== Title ===== */
.custom-contact-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0D2C6C; /* SureStay Blue */
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
  position: relative;
}

/* Decorative Underline */
.custom-contact-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #C9A44D; /* SureStay Gold accent */
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
  opacity: 0.9;
}

/* ===== Description ===== */
.custom-contact-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444; /* Neutral gray for readability */
  max-width: 1100px;
  margin: 20px auto 0;
  font-family: 'Lato', sans-serif;
  transition: color 0.3s ease;
}

/* Subtle interactive polish (optional) */
.custom-contact-description:hover {
  color: #0D2C6C;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .custom-contact-header {
    padding: 50px 15px;
  }

  .custom-contact-title {
    font-size: 2rem;
  }

  .custom-contact-description {
    font-size: 1rem;
  }
}
/* ===== Contact Info Section (SureStay Plus Brooks) ===== */
.contact-section-hero {
  background: linear-gradient(135deg, #f8f9fb 0%, #e9f0ff 100%); /* Soft blue-white gradient */
  padding: 60px 20px;
}

/* Wrapper Box */
.contact-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(13, 44, 108, 0.08); /* Blue-tinted shadow */
  overflow: hidden;
}

/* Left Content */
.contact-info-box {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-box p {
  font-size: 1.15rem;
  color: #444; /* Neutral dark gray for readability */
  margin-bottom: 35px;
  line-height: 1.7;
  font-family: 'Lato', sans-serif;
}

/* Contact Details Area */
.contact-details-area {
  background: #f4f7ff; /* Very light blue background */
  padding: 25px;
  border-left: 5px solid #C9A44D; /* Gold accent */
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
}

.contact-details-area:hover {
  box-shadow: 0 8px 30px rgba(13, 44, 108, 0.1); /* Soft glow on hover */
}

/* Hotel Name */
.contact-details-area h4 {
  color: #0D2C6C; /* SureStay Blue */
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

/* List Style */
.contact-details-area ul {
  list-style: none;
  padding-left: 0;
  color: #333;
}

.contact-details-area ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-details-area strong {
  color: #0D2C6C;
  font-weight: 600;
}

/* Links */
.contact-details-area a {
  color: #0D2C6C; /* SureStay Blue for links */
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details-area a:hover {
  color: #C9A44D; /* Gold hover for elegant touch */
  text-decoration: underline;
}

/* Right Side Image Box */
.contact-image-box {
  flex: 1;
  background: #f8f9fb; /* Soft neutral background */
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.4s ease;
}

.contact-image-box:hover .contact-image {
  transform: scale(1.03); /* Subtle zoom effect */
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-wrapper-hero {
    flex-direction: column;
  }

  .contact-info-box {
    padding: 35px;
  }

  .contact-image-box {
    height: 300px;
  }

  .contact-info-box p {
    font-size: 1rem;
  }
}
/* ===== Sitemap Section - SureStay Plus by Best Western Brooks ===== */
.sitemap-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fb 0%, #e8efff 100%); /* Soft blue-white gradient */
  text-align: center;
}

/* Container */
.sitemap-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title & Subtitle */
.sitemap-title {
  font-size: 3rem;
  color: #0D2C6C; /* SureStay Blue */
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Playfair Display', serif;
}

.sitemap-subtitle {
  font-size: 1.15rem;
  color: #444; /* Neutral text color */
  margin-bottom: 50px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Lato', sans-serif;
}

/* Grid Layout */
.sitemap-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Sitemap Blocks */
.sitemap-block {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(13, 44, 108, 0.08); /* Soft blue-tinted shadow */
  border: 1px solid #e0e6f0; /* Subtle light border */
}

.sitemap-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(13, 44, 108, 0.12); /* Stronger hover effect */
}

/* Sitemap Block Headings (optional future use) */
.sitemap-block h2 {
  font-size: 1.6rem;
  color: #C9A44D; /* Gold accent */
  margin-bottom: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

/* List & Links */
.sitemap-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-block ul li {
  margin-bottom: 15px;
}

.sitemap-block ul li a {
  font-size: 1.05rem;
  color: #0D2C6C; /* SureStay Blue */
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.2s ease;
  font-weight: 500;
}

.sitemap-block ul li a em {
  margin-right: 10px;
  font-size: 1.1rem;
  color: #C9A44D; /* Gold accent for chevron icons */
  transition: color 0.3s ease;
}

.sitemap-block ul li a:hover {
  color: #C9A44D; /* Gold hover */
  transform: translateX(4px);
}

.sitemap-block ul li a:hover em {
  color: #0D2C6C; /* Blue hover for icon contrast */
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .sitemap-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sitemap-links {
    grid-template-columns: 1fr;
  }

  .sitemap-title {
    font-size: 2.2rem;
  }

  .sitemap-subtitle {
    font-size: 1rem;
  }
}
/* 🎯 FAQ Section - SureStay Plus by Best Western Brooks (Blue & Gold Theme) */
.faq-section {
    padding: 60px 20px;
    background: #F8F9FB; /* Light SureStay background */
    color: #1a1a1a;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Title */
.faq-title a {
    font-size: 3rem;
    font-weight: 700;
    color: #0D2C6C; /* SureStay Blue */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
}

/* Subtitle (optional if added later) */
.faq-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 50px;
    font-family: 'Lato', sans-serif;
}

/* FAQ Grid Layout */
.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
}

/* FAQ Card */
.faq-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0; /* Soft light border */
    box-shadow: 0 6px 18px rgba(13, 44, 108, 0.08); /* Blue-tinted shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(13, 44, 108, 0.15); /* Stronger shadow on hover */
}

/* FAQ Questions */
.faq-item h2 {
    font-size: 1.8rem;
    color: #0D2C6C; /* SureStay Blue */
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px dashed #C9A44D; /* Gold dashed underline */
    font-family: 'Playfair Display', serif;
}

/* FAQ Answers */
.faq-item p {
    font-size: 1.1rem;
    color: #333; /* Neutral dark gray for readability */
    line-height: 1.75;
    margin-bottom: 10px;
    font-family: 'Lato', sans-serif;
}

/* Links */
.faq-item a {
    color: #0D2C6C; /* SureStay Blue */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.faq-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C9A44D; /* Gold underline accent */
    transition: width 0.3s ease;
}

.faq-item a:hover {
    color: #C9A44D; /* Gold on hover */
}

.faq-item a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .faq-title a {
        font-size: 2.5rem;
    }

    .faq-item h2 {
        font-size: 1.5rem;
    }

    .faq-item p {
        font-size: 1rem;
    }
}
