/* ==========================================
   HOTEL WEBSITE - REDESIGNED CSS
   Primary Blue: #003c7e
   Accent Yellow: #FFD369
   Fonts: Playfair Display (titles), Poppins (paragraphs)
   ========================================== */

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    overflow-x: hidden;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #003c7e;
}


a {
    color: black;
    text-decoration: none;
}


/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
    background: linear-gradient(135deg, #891c32 0%, #7b1c2e 100%);
    padding: 10px 0;
    font-size: 13px;
    z-index: 1001;
    border-bottom: 2px solid #FFD369;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 16px;
}

.top-bar-address span {
    color: rgba(255, 255, 255, 0.95);
    margin-right: 80px;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    padding: 5px;
    border-radius: 4px;
}

.top-bar a:hover {
    color: #FFD369;
}

.top-bar-contact i, 
.top-bar-address i {
    margin-right: 8px;
    color: #FFD369;
}

.top-bar-social a {
    margin-left: 12px;
}

@media (max-width: 767.98px) {
    .top-bar-content {
        flex-direction: column;
        gap: 8px;
    }
    .top-bar {
        padding: 15px 0;
    }
}

/* ==========================================
   NAVBAR / HEADER
   ========================================== */
.navbar {
    background: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid rgba(0, 60, 126, 0.1);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 60, 126, 0.05);
}

.navbar > .container {
    justify-content: space-between;
}

.navbar-brand {
    font-weight: 700;
    color: #003c7e !important;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

/* ==========================================
   LOGO IMAGE STYLING
   ========================================== */
.navbar-brand img {
    height: 100px; /* Adjust this value to fit your logo's dimensions */
    width: auto;  /* Maintains the aspect ratio of the image */
}
/* Note: The span styling for the old text logo is no longer needed but is kept here for reference. */
.navbar-brand span {
    color: #FFD369; 
}


.navbar-toggler {
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: rgba(255, 211, 105, 0.15);
    color: #003c7e;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

.navbar-toggler:hover {
    background: rgba(255, 211, 105, 0.3);
    transform: scale(1.05);
}

.nav-link {
    color: #333333 !important;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 18px !important;
    transition: all 0.3s ease-in-out;
    position: relative;
    border-radius: 6px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: #FFD369;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-link:hover::before {
    transform: scaleX(1);
}

/* ==========================================
   ACTIVE LINK STYLING (NEWLY ADDED)
   ========================================== */
.nav-link.active {
    color: #003c7e !important;
    background: rgba(255, 211, 105, 0.08);
}

.nav-link.active::before {
    transform: scaleX(1);
}


.nav-link:hover {
    color: #003c7e !important;
    background: rgba(255, 211, 105, 0.08);
}

@media (min-width: 992px) {
    .navbar-collapse {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .nav-link {
        font-size: 16px;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        text-align: center;
        padding: 20px 0;
    }
}

/* ==========================================
   BOOK NOW BUTTON
   ========================================== */
.btn-book {
    background: linear-gradient(135deg, #FFD369, #ffc933);
    color: #003c7e;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(255, 211, 105, 0.4);
}

.btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 211, 105, 0.6);
    background: linear-gradient(135deg, #ffc933, #FFD369);
}

/* ==========================================
   HERO SLIDER SECTION
   ========================================== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    padding-top: 80px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s ease-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -80px;
    box-sizing: border-box;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 2;
}

.slide.animating-out-up {
    opacity: 0;
    transform: translateY(-100%);
    z-index: 2;
}

.slide.animating-out-down {
    opacity: 0;
    transform: translateY(100%);
    z-index: 2;
}

.slide.entering-from-top {
    transform: translateY(-100%);
    opacity: 0;
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 40px;
    max-width: 900px;
}

.slider-content h3 {
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #FFD369;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.slider-content h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.slider-content h1 span {
    color: #FFD369;
}

.slider-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

.slider-buttons {
    margin-top: 40px;
}

.btn-slider {
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.btn-slider-primary {
    background: linear-gradient(135deg, #FFD369, #ffc933);
    color: #003c7e;
    box-shadow: 0 5px 20px rgba(255, 211, 105, 0.4);
}

.btn-slider-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 211, 105, 0.6);
}

.btn-slider-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-slider-outline:hover {
    background: white;
    color: #003c7e;
    transform: translateY(-5px);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    position: absolute;
    top: 40%;
    margin-top: -80px;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 60, 126, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 211, 105, 0.6);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.slider-btn:hover {
    background: rgba(255, 211, 105, 0.4);
    border-color: #FFD369;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 40px rgba(255, 211, 105, 0.5);
}

.slider-btn.prev {
    left: 40px;
}

.slider-btn.next {
    right: 40px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.slider-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 24px;
    height: 24px;
    border: 2px solid #FFD369;
    border-radius: 50%;
    transition: transform 0.3s;
}

.slider-dot.active {
    background: #FFD369;
    transform: scale(1.2);
}

.slider-dot.active::before {
    transform: translate(-50%, -50%) scale(1);
}

.slider-dot:hover {
    background: #FFD369;
    transform: scale(1.3);
}

/* ==========================================
   BOOKING FORM STYLES
   ========================================== */
.booking-form-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 60, 126, 0.95);
    backdrop-filter: blur(20px);
    padding: 30px 0;
    border-top: 3px solid #FFD369;
    z-index: 15;
}

.booking-form {
    background: transparent;
}

/* Base Form Control Styling */
.booking-form .form-control {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 211, 105, 0.3);
    color: white;
    height: 55px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    padding-left: 45px; /* Space for Icon */
    font-size: 15px;
    cursor: pointer;
}

/* ==========================================
   CALENDAR (DATE INPUT) SPECIFIC STYLING
   ========================================== */
/* Make the date input respect dark theme (Calendar popup becomes dark in Chrome/Edge) */
.booking-form input[type="date"] {
    color-scheme: dark; 
}

/* Placeholder color force */
.booking-form ::placeholder {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

/* Calendar Icon inside Input (Webkit specific) */
.booking-form input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(1); /* Make default chevron white */
    opacity: 0.6;
    transition: 0.3s;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    transform: scale(1.1);
}

.booking-form .form-control:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: #FFD369;
    box-shadow: 0 0 20px rgba(255, 211, 105, 0.5);
    color: white;
    outline: none;
}

/* Select Option Styling */
.booking-form select option {
    background-color: #003c7e;
    color: white;
    padding: 10px;
}

/* Icon Positioning */
.booking-form .form-group {
    position: relative;
    cursor: pointer; /* Pointer to indicate clickable */
}

.booking-form .form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFD369;
    font-size: 18px;
    z-index: 2;
    pointer-events: none; /* Let clicks pass through to input */
}

.booking-form label {
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 500;
    display: block;
}

/* Submit Button */
.btn-check-availability {
    background: linear-gradient(135deg, #FFD369, #ffc933);
    color: #003c7e;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    height: 55px;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(255, 211, 105, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-check-availability:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 211, 105, 0.6);
}

/* Clickable Column Wrapper Hover Effect */
.clickable-col:hover .form-control {
    background: rgba(255, 255, 255, 0.20);
    border-color: #FFD369;
}

/* ==========================================
   RESPONSIVE - HERO SLIDER
   ========================================== */
@media (max-width: 992px) {
    .slider-content h1 {
        font-size: 58px;
    }
    .slider-content p {
        font-size: 16px;
    }
    .btn-slider {
        padding: 12px 28px;
        font-size: 15px;
    }
    .slide {
        padding-bottom: 280px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    .slider-container {
        position: relative;
        height: 85vh;
        min-height: 450px;
        order: 1;
    }
    .slide {
        padding-bottom: 80px;
        align-items: center;
    }
    .slider-content {
        padding: 20px;
        max-width: 100%;
    }
    .slider-content h3 {
        font-size: 14px;
        letter-spacing: 3px;
    }
    .slider-content h1 {
        font-size: 42px;
    }
    .slider-content p {
        font-size: 14px;
        line-height: 1.7;
    }
    .slider-buttons {
        margin-top: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .btn-slider {
        width: 80%;
        max-width: 280px;
    }
    .slider-controls {
        top: 50%;
        transform: translateY(-80px);
    }
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    .slider-btn.prev {
        left: 15px;
    }
    .slider-btn.next {
        right: 15px;
    }
    .slider-dots {
        bottom: 25px;
    }
}

/* ==========================================
   SECTION STYLES
   ========================================== */
.section-padding {
    padding: 40px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    color: #003c7e;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD369, #ffc933);
    border-radius: 2px;
}

.section-title h2 span {
    color: #FFD369;
}

.section-title p {
    max-width: 1200px;
    margin: 25px auto 0;
    font-size: 16px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* ==========================================
   BASE ABOUT SECTION STYLES
   ========================================== */
.about-section {
    position: relative;
    overflow: hidden;
    padding: 0px 0;
    margin-bottom: -50px;
}
.about-content {
    position: relative;
    z-index: 2;
}
.about-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #003c7e;
    font-family: 'Playfair Display', serif;
}
.about-content p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}
.btn-about {
    background: linear-gradient(135deg, #b02a43, #9c1c42);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-about:hover {
    background: linear-gradient(135deg, #FFD369, #ffc933);
    color: #003c7e;
    transform: translateY(-2px);
}
.about-images {
    position: relative;
    padding: 20px;
}
.about-img-main {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-img-small {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    border: 5px solid #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ==========================================
   ANIMATION & EXPANSION STYLES
   ========================================== */

/* 1. Base transition for the Columns (Width/Flex changes) */
.col-anim {
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 2. Hidden Content Base State */
#extra-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    /* Opacity changes fast, Height changes slow */
    transition: opacity 0.4s ease, max-height 0.8s ease; 
}

/* 3. Hidden Content Visible State */
#extra-content.content-visible {
    max-height: 3000px; /* Arbitrary large height */
    opacity: 1;
}

/* 4. Column Helper Classes */
/* Forces column to disappear completely */
.col-hide {
    flex: 0 0 0% !important;
    max-width: 0% !important;
    padding: 0 !important;
    overflow: hidden;
    opacity: 0;
}

/* Forces column to take full width */
.col-full-width {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

/* ==========================================
   STYLES FOR THE HIDDEN CONTENT ELEMENTS
   ========================================== */
.five {
    font-size: 18px;
    font-weight: 700;
    color: #003c7e;
    margin-bottom: 10px;
    margin-top: 25px;
    border-bottom: 2px solid #FFD369;
    display: inline-block;
}

.item-box {
    margin-bottom: 15px;
}

.desc-text {
    text-align: justify;
    font-size: 14px;
}

.well {
    background: #f8f9fa;
    border-left: 4px solid #003c7e;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    font-size: 13px;
    height: 100%; /* Ensures all boxes are same height */
}

/* ==========================================
   ROOMS SECTION
   ========================================== */
.rooms-section {
    background: linear-gradient(178deg, #e8b93973 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.rooms-section::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 50px;
    width: 100px;
    height: 100px;
    border: 3px dashed #FFD369;
    border-radius: 50%;
    opacity: 0.4;
    animation: rotate 25s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 60, 126, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #003c7e, #FFD369);
    transform: scaleX(0);
    transition: transform 0.5s;
    z-index: 2;
}

.room-card:hover::before {
    transform: scaleX(1);
}

.room-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(0, 60, 126, 0.15);
}

.room-img {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-img img {
    transform: scale(1.15);
}

.room-price {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #FFD369, #ffc933);
    color: #003c7e;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    z-index: 3;
    box-shadow: 0 5px 20px rgba(255, 211, 105, 0.4);
}

.room-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.room-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #003c7e;
    font-family: 'Playfair Display', serif;
}

.room-rating {
    color: #FFD369;
    font-size: 14px;
    margin-bottom: 15px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #333333;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 60, 126, 0.08);
    padding: 6px 12px;
    border-radius: 6px;
}

.room-features i {
    color: #FFD369;
}

.room-content p {
    color: #333333;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.room-buttons {
    display: flex;
    gap: 15px;
}

.btn-room-outline {
    flex: 1;
    background: transparent;
    border: 2px solid #003c7e;
    color: #003c7e;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-room-outline:hover {
    border-color: #FFD369;
    color: #003c7e;
    background: rgba(255, 211, 105, 0.1);
}

.btn-room-primary {
    flex: 1;
    background: linear-gradient(135deg, #a4264e, #6f132d);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 60, 126, 0.3);
    cursor: pointer;
}

.btn-room-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 60, 126, 0.4);
    background: linear-gradient(135deg, #FFD369, #ffc933);
    color: #003c7e;
}

.btn-explore-all {
    background: linear-gradient(135deg, #003c7e, #002854);
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    margin-top: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 60, 126, 0.3);
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.btn-explore-all:hover {
    background: linear-gradient(135deg, #FFD369, #ffc933);
    color: #003c7e;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 211, 105, 0.5);
}

/* ==========================================
   DISCOVER SECTION
   ========================================== */
.discover-section {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 60, 126, 0.95), rgba(0, 40, 84, 0.95)), 
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    color: white;
    overflow: hidden;
}

.discover-content {
    position: relative;
    z-index: 2;
}

.discover-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    color: #ffffff;
}

.discover-content h2 span {
    color: #FFD369;
}

.discover-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 17px;
}

.btn-discover {
    background: linear-gradient(135deg, #FFD369, #ffc933);
    color: #003c7e;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    margin-top: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(255, 211, 105, 0.3);
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.btn-discover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 211, 105, 0.5);
}

.video-play-btn {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FFD369, #ffc933);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003c7e;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(255, 211, 105, 0.4);
}

.video-play-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(255, 211, 105, 0.6);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 100px;
    right: 100px;
    width: 80px;
    height: 80px;
    border: 3px solid #FFD369;
    border-radius: 50%;
    opacity: 0.3;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 60, 126, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 60, 126, 0.15);
}

.service-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-img img {
    transform: scale(1.15);
}

.service-content {
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    color: #003c7e;
}

.service-content p {
    color: #333333;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ==========================================
   REVIEWS SECTION
   ========================================== */
.reviews-section {
    background: linear-gradient(135deg, rgba(0, 60, 126, 0.95), rgba(0, 40, 84, 0.95)), 
                url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    position: relative;
    overflow: hidden;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 211, 105, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.review-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #FFD369;
}

.review-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 4px solid #FFD369;
    box-shadow: 0 5px 20px rgba(255, 211, 105, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover .review-img {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 211, 105, 0.6);
}

.review-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-text {
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.9;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
}

.reviewer-name {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    color: white;
}

.reviewer-location {
    color: #FFD369;
    font-size: 15px;
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.review-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-dot:hover {
    background: rgba(255, 211, 105, 0.7);
}

.review-dot.active {
    background: #FFD369;
    transform: scale(1.2);
}


/* ===== Amenities Section ===== */
.amenities-section {
    padding: 70px 0;
    background: #f4f6f9;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a2b49;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title p {
        color: #7c172d;
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* CARD DESIGN */
.amenity-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: left;
    height: 100%;
    transition: 0.3s ease;
    border: 1px solid #e6e6e6;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* ICON */
.amenity-card i {
    font-size: 28px;
    color: #b81347;
    margin-bottom: 15px;
}

/* TITLE */
.amenity-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a2b49;
    margin-bottom: 10px;
}

/* TEXT */
.amenity-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE FIX */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 26px;
    }

    .amenity-card {
        text-align: center;
    }
}



/* ==========================================
   NEWSLETTER SECTION
   ========================================== */
.newsletter-section {
    background: linear-gradient(135deg, rgba(0, 60, 126, 0.95), rgba(0, 40, 84, 0.95)), 
                url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.newsletter-section h2 span {
    color: #FFD369;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.newsletter-form input {
    flex: 1;
    height: 65px;
    border-radius: 10px;
    border: 1px solid rgba(255, 211, 105, 0.3);
    padding: 0 25px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(255, 211, 105, 0.5);
    border-color: #FFD369;
}

.btn-subscribe {
    background: linear-gradient(135deg, #FFD369, #ffc933);
    color: #003c7e;
    border: none;
    padding: 0 40px;
    border-radius: 10px;
    font-weight: 600;
    height: 65px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(255, 211, 105, 0.4);
    cursor: pointer;
}

.btn-subscribe:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 211, 105, 0.6);
}

/* =================================================================
   BEST WESTERN FOOTER STYLES
   ================================================================= */

/* Utility: Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Main Footer Container */
.best-western-footer {
    background: linear-gradient(135deg, #891c32 0%, #7b1c2e 100%);
    color: #e0e0e0;
    padding: 50px 5%;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    box-sizing: border-box;
}

.best-western-footer a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.best-western-footer a:hover {
    color: #003c7e;
}

/* ===== Top Section: Social Icons (CENTERED) ===== */
.footer-top {
    display: flex;
    justify-content: center; /* Centers items horizontally */
    align-items: center;
    padding-bottom: 25px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Added spacing between icons */
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    
    /* BACKGROUND AND COLOR UPDATE */
    background-color: #ffc933; /* Yellow Gold Background */
    color: #003366 !important; /* Dark Blue Icon Color for contrast */
    
    border-radius: 0%;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    
    /* Ensures spacing is robust */
    margin: 0 5px; 
}

.footer-social-icon:hover {
    background-color: #ffffff; /* White background on hover */
    color: #003366; /* Keep icon blue */
    transform: translateY(-5px); /* Move up slightly on hover */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* ===== Main Content Area: Grid Layout ===== */
.footer-content {
    display: grid;
    /* Columns adjust automatically, minimum width 280px */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Section Titles */
.footer-section-title {
    font-size: 1.25rem;
    color: #fdbb30; /* Gold text */
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #005a9c; /* Lighter Blue Underline */
}

/* --- Contact Section --- */
.footer-contact > div {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact .hotel-name {
    font-weight: bold;
    color: #ffffff;
    font-size: 1.1rem;
}

.footer-contact .hotel-description {
    font-style: italic;
    margin-bottom: 20px;
}

.footer-contact i {
    color: #fdbb30;
    margin-top: 5px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

/* --- Quick Links Section --- */
.quick-links-container {
    display: flex;
    flex-direction: row; /* Side by side on Desktop */
    gap: 30px; 
    justify-content: flex-start;
}

.quick-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.quick-links-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.quick-links-list a:hover {
    padding-left: 10px;
    color: #fdbb30;
}

.quick-links-list i {
    color: #fdbb30;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* --- Policies Section --- */
.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
}

.policy-list i {
    color: #fdbb30;
    width: 20px;
    margin-top: 4px;
    text-align: center;
    flex-shrink: 0;
}

.policy-detail strong {
    color: #ffffff;
}

/* ===== Bottom Bar: Credits & Legal ===== */
.footer-bottom .divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 0 auto 25px;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: white;
}

.footer-bottom .credits a {
    color: #fdbb30;
}

.footer-bottom .credits a:hover {
    color: #ffffff;
}

/* =================================================================
   RESPONSIVE / MOBILE STYLES
   ================================================================= */
@media (max-width: 900px) {
    .best-western-footer {
        text-align: center;
    }
    
    .footer-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Stack grid items */
    .footer-content {
        grid-template-columns: 1fr;
        justify-items: center; 
        gap: 50px; 
    }

    /* Stack Quick Links lists vertically */
    .quick-links-container {
        flex-direction: column; 
        gap: 0; 
        width: 100%;
        max-width: 350px; 
    }

    /* Mobile alignments */
    .quick-links-list, 
    .policy-list,
    .footer-contact > div {
        text-align: left;
        justify-content: flex-start;
        /* Keep icon lists looking neat but container is centered */
        width: 100%; 
    }
    
    /* Ensure Contact info is centered nicely */
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center; /* Centers the whole block */
    }
    
    /* Fix internal flex of contact items */
    .footer-contact > div {
         display: inline-flex;
         width: auto;
         min-width: 280px; /* Ensures alignments stick */
    }

    .quick-links-list a:hover {
        padding-left: 0;
    }
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */
.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #FFD369, #ffc933);
    color: #003c7e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 10px 30px rgba(255, 211, 105, 0.4);
    font-size: 20px;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 211, 105, 0.6);
}

/* ==========================================
   VIDEO PANORAMA SECTION
   ========================================== */
.video-panorama-container {
    /* CHANGED: width 100vw -> 100% to prevent horizontal scrollbar */
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .video-panorama-container {
        height: auto;
    }
}

.video-panorama-bg-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 48vh;
    background-color: white;
    z-index: 1;
}

.video-panorama-bg-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 52vh;
    background-color: #ffffff;
    z-index: 1;
}

.video-panorama-canvas {
    width: 100%;
    /* CHANGED: max-width 100vw -> 100% */
    max-width: 100%;
    height: auto;
    min-height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    padding: 0;
}

.video-panorama-concave-mask {
    position: relative;
    width: 100%;
    height: 55vw;
    max-height: 620px;
    clip-path: polygon(0% 0%, 50% 12%, 100% 0%, 100% 100%, 50% 88%, 0% 100%);
    background-color: #ffffff;
}

.video-panorama-cards-grid {
    display: flex;
    gap: 3px;
    width: 100%;
    height: 100%;
}

.video-panorama-card {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #000;
}

.video-panorama-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-panorama-card-outer-left img {
    object-position: 70% 50%;
}

.video-panorama-card-outer-right img {
    object-position: 30% 50%;
}

.video-panorama-play-button-hitbox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 100;
}

.video-panorama-play-button-circle {
    width: 120px;
    height: 120px;
        background: #e7e4e447;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(14px);
    border: 2px solid rgba(255, 211, 105, 0.5);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
}

.video-panorama-play-button-circle:hover {
    transform: scale(1.05);
    border-color: #FFD369;
}

.video-panorama-play-triangle {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 32px solid #ffffff;
    margin-left: 8px;
}

.video-panorama-accent-dot {
    position: absolute;
    top: 25%;
    left: 10%;
    width: 8px;
    height: 8px;
    background-color: #FFD369;
    border-radius: 50%;
    z-index: 20;
}

.video-panorama-palette-action-btn {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 56px;
    background-color: #FFD369;
    border-radius: 4px 0 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-panorama-palette-action-btn:hover {
    background-color: #ffc933;
}

.video-panorama-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    /* CHANGED: width/height 100vw/vh -> 100% (Safest for fixed elements) */
    width: 100%;
    height: 100%;
    background-color: rgba(0, 60, 126, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-panorama-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.video-panorama-modal-content {
    position: relative;
    width: 95%;
    max-width: 960px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 2px solid #FFD369;
}

.video-panorama-modal-overlay.active .video-panorama-modal-content {
    transform: translateY(0);
}

.video-panorama-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 211, 105, 0.3);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    transition: background-color 0.2s ease;
}

.video-panorama-modal-close:hover {
    background: rgba(255, 211, 105, 0.5);
}

.video-panorama-video-responsive {
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.video-panorama-video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

@media (max-width: 768px) {
    .video-panorama-container {
        height: auto;
    }
    .video-panorama-bg-top,
    .video-panorama-bg-bottom {
        height: 0;
    }
    .video-panorama-concave-mask {
        height: 70vw;
        clip-path: polygon(0% 2%, 50% 10%, 100% 2%, 100% 98%, 50% 90%, 0% 98%);
    }
    .video-panorama-play-button-circle {
        width: 80px;
        height: 80px;
    }
    .video-panorama-play-triangle {
        border-top: 14px solid transparent;
        border-bottom: 14px solid transparent;
        border-left: 22px solid #FFD369;
        margin-left: 6px;
    }
    .video-panorama-palette-action-btn {
        width: 32px;
        height: 48px;
    }
}

/* ==========================================
   ATTRACTIONS SECTION
   ========================================== */
.attractions {
    width: 100%;
    max-width: 1920px;
    min-height: 100vh;
    padding: 80px 24px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    user-select: none;
    background-color: #FFFFFF;
}

.attractions .font-serif { 
    font-family: 'Playfair Display', serif; 
}

.attractions .gold-border { 
    border: 1px solid #003c7e; 
}

.attractions .attractions-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    margin-top: 16px;
    padding: 0 16px;
    transition: all 0.7s ease;
}

@media (min-width: 768px) { 
    .attractions .attractions-header { 
        flex-direction: row; 
    } 
}

.attractions .header-title-container { 
    display: flex; 
    flex-direction: column; 
}

.attractions .header-subtitle { 
    font-family: 'Poppins', sans-serif; 
    font-style: normal; 
    font-size: 1.5rem; 
    color: black; 
    line-height: 1; 
    margin-bottom: 4px; 
    text-transform: uppercase;
    letter-spacing: 2px;
}

.attractions .header-title { 
    font-family: 'Playfair Display', serif; 
    font-size: 4rem; 
    letter-spacing: 0.05em; 
    color: #a01d46; 
    line-height: 1.1; 
    text-transform: uppercase; 
}

.attractions .header-description { 
    width: 100%; 
    max-width: 460px; 
    margin-top: 40px; 
    font-size: 15px; 
    color: #333333; 
    line-height: 1.7; 
    font-weight: 400; 
    opacity: 0.9; 
}

@media (min-width: 768px) { 
    .attractions .header-description { 
        margin-top: 8px; 
    } 
}

.attractions .attractions-content { 
    width: 100%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    height: 540px; 
    margin-bottom: 64px; 
    padding: 0 16px; 
    position: relative; 
}

.attractions .content-wrapper { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 100%; 
    max-width: 1600px; 
    gap: 48px; 
    position: relative; 
}

.attractions .side-column { 
    width: 340px; 
    height: 520px; 
    flex-shrink: 0; 
    overflow: hidden; 
    box-shadow: 0 1px 2px rgba(0, 60, 126, 0.1); 
    border-radius: 4px; 
    background-color: #F8F7F5; 
    position: relative;
    border: 1px solid rgba(0, 60, 126, 0.1);
}

.attractions .side-image-container { 
    width: 100%; 
    height: 100%; 
    position: absolute; 
    top: 0; 
    left: 0; 
    overflow: hidden; 
}

.attractions .side-image-container img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.attractions .center-column { 
    position: relative; 
    width: 860px; 
    height: 520px; 
    display: flex; 
    align-items: center; 
    flex-shrink: 0; 
}

.attractions .main-image-container { 
    position: absolute; 
    top: 65px; 
    left: 0; 
    width: 620px; 
    height: 385px; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0, 60, 126, 0.15); 
    background-color: #000; 
    border-radius: 4px; 
    transition: all 1s ease-in-out; 
}

.attractions .main-image-wrapper { 
    width: 100%; 
    height: 100%; 
    position: relative; 
}

.attractions .main-image { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    position: absolute; 
    top: 0; 
    left: 0; 
    opacity: 1; 
}

.attractions .info-card { 
    position: absolute; 
    z-index: 20; 
    background-color: white; 
    padding: 40px; 
    width: 480px; 
    box-shadow: 0 25px 50px -12px rgba(0, 60, 126, 0.2); 
    border: 2px solid #FFD369; 
    text-align: center; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    border-radius: 2px; 
}

.attractions .info-card.top-right { 
    top: 10px; 
    right: 0; 
}

.attractions .info-card.bottom-right { 
    bottom: 10px; 
    right: 0px; 
}

.attractions .category { 
    font-size: 11px; 
    letter-spacing: 0.3em; 
    font-weight: 700; 
    color: black; 
    margin-bottom: 24px; 
    text-transform: uppercase; 
}

.attractions .hotel-name { 
    font-family: 'Playfair Display', serif; 
    font-size: 2.2rem; 
    color: #003c7e; 
    margin-bottom: 24px; 
    font-weight: 600; 
    line-height: 1.2; 
}

.attractions .description { 
    font-size: 14px; 
    color: #333333; 
    line-height: 1.8; 
    font-weight: 400; 
    margin-bottom: 48px; 
    padding: 0 8px; 
    opacity: 0.9; 
}

.attractions .explore-link { 
    display: inline-block; 
    position: relative; 
}

.attractions .explore-link a { 
    font-size: 12px; 
    font-weight: 700; 
    letter-spacing: 0.25em; 
    text-transform: uppercase; 
    color: #003c7e; 
    display: block; 
    margin-bottom: 8px; 
    text-decoration: none; 
    transition: color 0.3s ease; 
}

.attractions .explore-link a:hover { 
    color: #FFD369; 
}

.attractions .link-underline { 
    width: 100%; 
    height: 2px; 
    background-color: #FFD369; 
}

.attractions .attractions-footer { 
    width: 100%; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    margin-top: auto; 
}

.attractions .controls { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 48px; 
    margin-bottom: 32px; 
}

.attractions .nav-btn { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-size: 12px; 
    letter-spacing: 0.2em; 
    color: #003c7e; 
    text-transform: uppercase; 
    font-weight: 600; 
    background: none; 
    border: none; 
    cursor: pointer; 
    transition: color 0.3s ease; 
}

.attractions .nav-btn:hover { 
    color: #FFD369; 
}

.attractions .nav-btn:disabled { 
    opacity: 0.3; 
    cursor: not-allowed; 
}

.attractions .nav-btn svg { 
    stroke-width: 2px; 
}

.attractions .progress-container { 
    width: 420px; 
    height: 1px; 
    background-color: black; 
    position: relative; 
}

.attractions .progress-fill { 
    position: absolute; 
    top: -1px; 
    height: 3px; 
    background-color: #FFD369; 
    transition: all 0.8s ease-in-out; 
}

.attractions .counter { 
    font-size: 12px; 
    letter-spacing: 0.35em; 
    font-weight: 500; 
    color: #003c7e; 
}

.attractions .sliding { 
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
}

.attractions .stagger-1 { 
    animation: attractions_fadeUp 0.9s 0.3s ease-out both; 
}

.attractions .stagger-2 { 
    animation: attractions_fadeUp 0.9s 0.4s ease-out both; 
}

.attractions .stagger-3 { 
    animation: attractions_fadeUp 0.9s 0.5s ease-out both; 
}

.attractions .stagger-4 { 
    animation: attractions_fadeUp 0.9s 0.6s ease-out both; 
}

@keyframes attractions_fadeUp { 
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    } 
    to { 
        opacity: 1; 
        transform: translateY(0); 
    } 
}

@media (max-width: 1400px) { 
    .attractions .content-wrapper, 
    .attractions .sliding { 
        gap: 24px; 
    } 
    .attractions .side-column { 
        width: 280px; 
        height: 480px; 
    } 
    .attractions .center-column { 
        width: 720px; 
        height: 480px; 
    } 
    .attractions .main-image-container { 
        height: 340px; 
        width: 520px; 
    } 
    .attractions .info-card { 
        width: 420px; 
        padding: 30px; 
    } 
    .attractions .progress-container { 
        width: 360px; 
    } 
}

@media (max-width: 1024px) { 
    .attractions { 
        padding: 40px 16px; 
    } 
    .attractions .attractions-header { 
        margin-bottom: 64px; 
    } 
    .attractions .header-title { 
        font-size: 3rem; 
    } 
    .attractions .header-subtitle { 
        font-size: 1.2rem; 
    } 
    .attractions .attractions-content { 
        height: auto; 
        padding: 0; 
    } 
    .attractions .content-wrapper { 
        flex-direction: column; 
        gap: 0; 
        height: auto; 
    } 
    .attractions .side-column { 
        display: none; 
    } 
    .attractions .center-column { 
        width: 100%; 
        height: auto; 
        justify-content: center; 
        flex-direction: column; 
    } 
    .attractions .main-image-container { 
        position: relative; 
        top: 0; 
        left: 0; 
        width: 100% !important; 
        max-width: 600px; 
        height: 400px; 
    } 
    .attractions .info-card { 
        position: relative; 
        width: 90%; 
        max-width: 500px; 
        margin-top: -60px; 
        top: auto; 
        right: auto; 
        bottom: auto; 
    } 
    .attractions .controls { 
        gap: 24px; 
    } 
    .attractions .progress-container { 
        width: 300px; 
    } 
}

@media (max-width: 640px) { 
    .attractions .attractions-header { 
        margin-bottom: 48px; 
    } 
    .attractions .header-title { 
        font-size: 2.5rem; 
        letter-spacing: 0.08em; 
    } 
    .attractions .header-subtitle { 
        font-size: 1rem; 
    } 
    .attractions .header-description { 
        font-size: 15px; 
        margin-top: 24px; 
        max-width: 100%;
    } 
    .attractions .hotel-name { 
        font-size: 1.8rem; 
    } 
    .attractions .description { 
        font-size: 14px; 
        margin-bottom: 32px; 
    } 
    .attractions .main-image-container { 
        height: 350px; 
    } 
    .attractions .info-card { 
        padding: 32px 24px; 
        width: 100%; 
        margin-top: 24px; 
        box-shadow: 0 10px 15px -3px rgba(0, 60, 126, 0.1); 
    } 
    .attractions .progress-container { 
        width: 200px; 
    } 
    .attractions .controls { 
        gap: 16px; 
    } 
}



.attractions-section {
    padding: 0px 20px;
}

.attractions-block {
    background: #fff;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.attractions-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0d3b66;
    border-left: 4px solid #0d3b66;
    padding-left: 10px;
}

.attractions-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: none;
    padding: 0;
}

.attractions-list li {
    font-size: 15px;
    padding-left: 18px;
    position: relative;
}

.attractions-list li::before {
    content: "📍";
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .attractions-list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
#gallery-12-uPjIIY98CZ .experience-header {
    text-align: center;
    margin-bottom: 3rem;
}

#gallery-12-uPjIIY98CZ .experience-subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.4rem;
    color: black;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

#gallery-12-uPjIIY98CZ .experience-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: #003c7e;
    margin: 0;
    background: linear-gradient(90deg, #003c7e, #FFD369, #ffc933, #FFD369, #003c7e);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: anderson-exp-gradientShift 8s ease infinite;
    text-shadow: 0 2px 20px rgba(255, 211, 105, 0.2);
}

#gallery-12-uPjIIY98CZ .title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: anderson-exp-titleReveal 0.6s ease forwards;
}

#gallery-12-uPjIIY98CZ .title-underline {
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, #003c7e, #FFD369);
    margin: 2rem auto 0;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 211, 105, 0.5);
    animation: anderson-exp-expandWidth 1.2s cubic-bezier(0.19, 1, 0.22, 1) 1.4s forwards;
}

@keyframes anderson-exp-gradientShift {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

@keyframes anderson-exp-titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes anderson-exp-expandWidth {
    to { width: 180px }
}

#gallery-12-uPjIIY98CZ .title-word:nth-child(1) { animation-delay: 0.2s }
#gallery-12-uPjIIY98CZ .title-word:nth-child(2) { animation-delay: 0.4s }
#gallery-12-uPjIIY98CZ .title-word:nth-child(3) { animation-delay: 0.6s }

.gallery4 {
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.gallery-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden;
}

.grid-container {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.grid-container-1,
.grid-container-2 {
    display: flex;
    flex-wrap: nowrap;
    gap: 2.5rem;
    will-change: transform;
}

.grid-item {
    flex: 0 0 calc(50% - 2.5rem);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 60, 126, 0.12);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 16/9;
    border: 2px solid transparent;
}

.grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 36px rgba(0, 60, 126, 0.18);
    border-color: #FFD369;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 1400px) {
    .grid-item {
        flex: 0 0 calc(50% - 2.5rem);
    }
}

@media (max-width: 900px) {
    .grid-container-1,
    .grid-container-2 {
        gap: 2rem;
        padding: 0 2rem;
    }
    .grid-item {
        flex: 0 0 calc(100% - 2rem);
    }
}

@media (max-width: 700px) {
    .grid-item {
        flex: 0 0 calc(100% - 3rem);
    }
    .gallery4 {
        padding: 6rem 0;
    }
    .grid-container {
        gap: 3rem;
        margin-top: 3.5rem;
    }
}

@media (max-width: 500px) {
    .grid-container-1,
    .grid-container-2 {
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    .grid-item {
        flex: 0 0 calc(100% - 1.5rem);
    }
}

/* ==========================================
   MAP MARKER ICONS
   ========================================== */
.map-marker-icon.icon-airport {
    background-color: #003c7e;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 60, 126, 0.3);
    border: 2px solid #FFD369;
}

.map-marker-icon.icon-airport i {
    font-size: 20px;
}

.timeline-description {
    color: #333333;
    font-size: 14px;
    margin-top: 5px;
    line-height: 1.4;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.gradient-bg {
    background: linear-gradient(135deg, #003c7e, #002854);
}

.gradient-text {
    background: linear-gradient(135deg, #003c7e, #FFD369);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-lg {
    box-shadow: 0 20px 60px rgba(0, 60, 126, 0.15) !important;
}

.shadow-xl {
    box-shadow: 0 30px 80px rgba(0, 60, 126, 0.2) !important;
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   DECORATIVE ELEMENTS (OPTIONAL)
   ========================================== */
.corner-element-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.corner-element {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.corner-tl {
    top: 0;
    left: 0;
    width: 180px;
    height: 180px;
}

.corner-tl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #003c7e 0%, transparent 60%);
    opacity: 0.15;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.corner-tl::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 70px;
    height: 70px;
    border: 3px solid #FFD369;
    border-radius: 50%;
    opacity: 0.4;
}

.float-element-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.float-element {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
}

.float-1 {
    top: 30%;
    right: 40px;
    width: 60px;
    height: 60px;
    border: 3px solid #FFD369;
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

.float-2 {
    top: 60%;
    right: 80px;
    width: 35px;
    height: 35px;
    background: #003c7e;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite reverse;
}

.float-3 {
    top: 20%;
    left: 40px;
    width: 30px;
    height: 30px;
    background: #FFD369;
    border-radius: 50%;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-25px) rotate(10deg); 
    }
}



/* ==========================================
   BOOKING FORM - Your Original Design Preserved
   ========================================== */
.booking-form-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
        background: rgb(171 28 74);
    backdrop-filter: blur(20px);
    padding: 30px 0;
    border-top: 3px solid #FFD369;
    z-index: 15;
    margin-bottom: -180px;
}

.booking-form {
    background: transparent;
}

.booking-form .form-control {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 211, 105, 0.3);
    color: white;
    height: 55px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    padding-left: 45px;
    cursor: pointer;
}

.booking-form .form-control:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: #FFD369;
    box-shadow: 0 0 20px rgba(255, 211, 105, 0.5);
    color: white;
    outline: none;
}

/* Placeholder styling */
.booking-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.booking-form .form-group {
    position: relative;
}

.booking-form .form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFD369;
    font-size: 18px;
    z-index: 2;
}

/* Calendar trigger - whole container clickable */
.calendar-trigger {
    cursor: pointer;
}

.calendar-trigger:hover .form-control {
    background: rgba(255, 255, 255, 0.25);
    border-color: #FFD369;
}

.booking-form label {
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 500;
    display: block;
}

.btn-check-availability {
    background: linear-gradient(135deg, #FFD369, #ffc933);
    color: #003c7e;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    height: 55px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 5px 20px rgba(255, 211, 105, 0.4);
}

.btn-check-availability:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 211, 105, 0.6);
}

/* Custom Calendar Modal Styles */
.calendar-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.calendar-content {
    background: white;
    border-radius: 12px;
    padding: 20px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFD369;
}

.calendar-header span {
    font-weight: bold;
    color: #003c7e;
    font-size: 18px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #003c7e;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-btn:hover {
    background: #f0f0f0;
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.calendar-nav button {
    background: #003c7e;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.calendar-nav button:hover {
    background: #FFD369;
    color: #003c7e;
}

.calendar-nav span {
    font-weight: bold;
    color: #003c7e;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
}

.calendar-table th {
    color: #003c7e;
    padding: 10px;
    font-weight: 600;
}

.calendar-table td {
    text-align: center;
    padding: 12px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
}

.calendar-table td.available {
    color: #333;
}

.calendar-table td.available:hover {
    background: #FFD369;
    color: #003c7e;
    font-weight: bold;
}

.calendar-table td.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-table td.selected {
    background: #003c7e;
    color: white;
}

/* ==========================================
   RESPONSIVE (Mobile & Tablet Fixes)
   ========================================== */
@media (max-width: 1180px) {
    .booking-form-wrapper {
        /* Reset positioning from Absolute (PC) to Relative (Mobile) */
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        top: 0;

        /* KEY FIX: Reset the negative margin from PC and remove top gaps */
        margin: 0; 
        
        /* styling adjustments */
        padding: 25px 15px;
        background: #003c7e; /* Solid color for readability on mobile */
        backdrop-filter: none;
        width: 100%;
        border-radius: 0; /* Makes it flush with edges */
        
        /* Keep existing flex/grid order */
        order: 2;
        margin-top:-300px !important;
    }

    /* Ensure form groups stack with space between them */
    .booking-form .form-group {
        margin-bottom: 15px;
    }

    /* Adjust Calendar Modal for smaller screens */
    .calendar-content {
        width: 95%;
        margin: 10px;
        padding: 15px;
        max-height: 90vh; /* Prevents cut-off on small screens */
        overflow-y: auto;
    }
    
    .calendar-table td {
        padding: 8px 4px; /* Slightly smaller touch targets to fit width */
    }
}

/* ==========================================
   END OF CSS
   ========================================== */





   /* New Facility Section */
.new-facility-section {
    text-align: center;
    color: black;
}


.new-facility-container {
    margin: 0 auto;
}

.new-facility-title {
    color: #ffc933; /* NEW Accent Color */
    margin-bottom: 40px;
    position: relative;
}

.new-facility-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #003c7e; /* NEW Primary Color */
    margin: 15px auto;
}

/* ----- MODIFICATION APPLIED HERE ----- */
/* Grid Styling */
.facility-grid-creative {
    display: grid;
    /* This creates the 4-column layout you requested */
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-items: center;
}
/* ----------------------------------- */

/* Facility Box */
.facility-box-creative {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.facility-box-creative:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Icon Background */
.icon-background {
    background: #003c7e; /* NEW Primary Color */
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    border-bottom: 5px solid #ffc933; /* NEW Accent Color */
}

.icon-background i {
    font-size: 2.5em; /* Set icon size to medium */
}


.facility-box-creative:hover .icon-background {
    background: #003c7e; /* NEW Primary Color */
}

/* Facility Information */
.facility-info {
    padding: 25px 20px;
    text-align: center;
}

.facility-info h3 {
    margin-bottom: 12px;
}

.facility-info p {
    color: black;
    margin-bottom: 0;
}

/* =================== THE SECTION BELOW IS UNCHANGED AS REQUESTED =================== */
/* Add this CSS to your stylesheet */

/* Features Section */
.features-section {
    padding: 20px 20px;
    background: #003c7e; /* NEW Primary Color */
    color: #fff;
    text-align: center;
}

.features-title {
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    font-size: 35px;
    color: #ffc933;
}

.features-underline {
    display: block;
    width: 80px;
    height: 4px;
    background: #ffc933; /* NEW Accent Color */
    margin: 10px auto;
}

.features-subtitle {
    opacity: 0.9;
}

/* Cards Container */
.features-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* Allows cards to stack on smaller screens */
    max-width: 1400px;
    margin: 40px auto 0;
}

/* Card Base - UPDATED for responsive two-column layout */
.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    color: black;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    box-sizing: border-box;
    /* This is the key change: a flex rule that handles wrapping automatically */
    flex: 1 1 400px; /* Grow, Shrink, Basis: Card will be ~400px, grow to fill space, and wrap when needed */
    max-width: 1000px; /* A max-width to keep cards from getting too wide */
}

/* Card Colors */
.card-blue .card-icon { background: #003c7e; }
.card-purple .card-icon { background: #003c7e; }

/* Card Icon */
.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.card-heading {
    color: #003c7e; /* NEW Primary Color */
}

/* --- INNER CARD TWO-COLUMN LAYOUT --- */

/* The container for the two lists inside a card */
.card-list-container {
    display: flex;
    flex-direction: row; /* Default side-by-side columns */
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.card-list-container .card-list {
    flex: 1; /* Allows each list to take up half the space */
    min-width: 0; /* Prevents flexbox overflow issues */
}

/* Shared styles for both list types */
.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.card-list li {
    background: #f4f6f8;
    margin-bottom: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
}

/* List Item Icon Styles */
.dot {
    width: 8px; height: 8px; background: #003c7e;
    border-radius: 50%; margin-right: 10px; margin-top: 6px; flex-shrink: 0;
}
.minus {
    width: 20px; height: 4px; background: #003c7e;
    border-radius: 2px; margin-right: 10px; margin-top: 8px; flex-shrink: 0;
}


/* =================== EXISTING RESPONSIVE DESIGN =================== */

@media (max-width: 768px) {
    /* On tablets and smaller devices, stack the INNER columns */
    .card-list-container {
        flex-direction: column; /* Stacks the two amenity lists vertically */
        gap: 0; /* No gap needed when stacked */
    }

    .features-section {
        padding: 40px 15px;
    }
}

@media (max-width: 480px) {
    .card-icon {
        width: 60px;
        height: 60px;
    }
    .card-list li {
        padding: 10px 12px;
    }
}

/* Attractions Section */

.attractions-container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 20px;
}

.category {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
}

.category:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}

.category-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-bottom: 4px solid #ffc933; /* NEW Accent Color */
}

.transport-image {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

.airport-image {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

.restaurant-image {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

.category-header {
    padding: 20px;
    background-color: #003c7e; /* NEW Primary Color */
    color: white;
    position: relative;
    margin-top: -7px;
}

.category-header h2 {
    font-size: 1.6rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.category-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.attraction-list {
    padding: 20px;
    background-color: #fff;
}

.attraction {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.attraction:last-child {
    border-bottom: none;
}

.attraction-info {
    flex: 1;
}

.attraction-name {
    font-weight: 500;
    margin-bottom: 4px;
    color: #000;
    font-size: 1.1rem;
}

.attraction-type {
    color: #000000;
    font-size: 0.95rem;
}

.attraction-distance {
    background-color: #ffc933; /* NEW Accent Color */
    color: black;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    min-width: 70px;
    text-align: center;
    transition: all 0.3s ease;
}

.attraction:hover .attraction-distance {
    background-color: #003c7e; /* NEW Primary Color */
    color: white;
    transform: scale(1.05);
}


/* --- Responsive Adjustments --- */
@media (max-width: 1280px) {
    .roosevelt-amenities-container { padding: 0 1.5rem; }
    .roosevelt-category-title { font-size: 2rem; }
}
@media (max-width: 992px) {
    .roosevelt-amenities { padding: 4rem 0; }
    .roosevelt-categories-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .roosevelt-category-section { padding: 2rem; }
    .roosevelt-category-image { height: 220px; margin-bottom: 1.5rem; }
    .roosevelt-category-title { font-size: 1.8rem; }
}
@media (max-width: 900px) {
    .attractions-container { grid-template-columns: 1fr; }
    .category { max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .roosevelt-amenities-container { padding: 0 1rem; }
    .roosevelt-category-section { padding: 1.8rem; }
    .roosevelt-category-image { height: 200px; }
    .roosevelt-category-title { font-size: 1.6rem; margin-bottom: 1rem; }
    .roosevelt-amenities-feature-list li { padding: 0.8rem 0; }
    .roosevelt-amenities-feature-icon { font-size: 1.4rem; min-width: 24px; margin-right: 1rem; }
    .roosevelt-amenities-feature-text { font-size: 1rem; }
}
@media (max-width: 576px) {
    .roosevelt-amenities { padding: 3rem 0; }
    .roosevelt-categories-grid { gap: 2rem; }
    .roosevelt-category-section { padding: 1.5rem; }
    .roosevelt-category-title { font-size: 1.5rem; }
    .roosevelt-category-title:after { width: 50px; height: 3px; margin-top: 0.5rem; }
    .roosevelt-category-image { height: 180px; margin-bottom: 1rem; }
}



.location-container {
  width: 100%;
  max-width: 100%;
  padding: 40px 0;
  background: white;
}

.location-title {
  text-align: center;
  color: #003c7e; /* NEW Primary Color */
  font-size: 2.4rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.location-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #ffc933; /* NEW Accent Color */
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.location-info {
  flex: 1;
  min-width: 300px;
}

.coordinates-box {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 60, 126, 0.1); /* NEW Primary with alpha */
  border: 1px solid rgba(0, 60, 126, 0.1);
}

.coordinates-box h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #003c7e; /* NEW Primary Color */
  font-size: 1.4rem;
  font-weight: 600;
}

.coordinate {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 12px;
  font-size: 1.05rem;
}

.coordinate i {
  color: #ffc933; /* NEW Accent Color */
  font-size: 1.2rem;
}

.directions-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 60, 126, 0.1); /* NEW Primary with alpha */
  border: 1px solid rgba(0, 60, 126, 0.1);
}

.directions-form label {
  font-weight: 600;
  color: #003c7e; /* NEW Primary Color */
  font-size: 1.05rem;
}

.directions-form input {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 100%;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.directions-form input:focus {
  outline: none;
  border-color: #003c7e; /* NEW Primary Color */
  box-shadow: 0 0 0 3px rgba(0, 60, 126, 0.2); /* NEW Primary with alpha */
}

.directions-form button {
  background: #003c7e; /* NEW Primary Color */
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.directions-form button:hover {
  background: #ffc933; /* NEW Accent Color */
  color: black;
  transform: translateY(-2px);
}

.location-map {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 60, 126, 0.1); /* NEW Primary with alpha */
  border: 1px solid rgba(0, 60, 126, 0.1);
  transition: transform 0.3s ease;
}

.location-map:hover {
  transform: translateY(-5px);
}

.location-map img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .location-content {
    flex-direction: column;
  }

  .location-info, .location-map {
    width: 100%;
  }
}

.content-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}


.contact-card {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: 450px;
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-card h2 {
    color: #003c7e; /* NEW Primary Color */
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
}

.contact-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-item i {
    color: #ffc933; /* NEW Accent Color */
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 18px;
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #003c7e; /* NEW Primary Color */
}

.info-text p, .info-text a {
    font-size: 1.1rem;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.info-text a:hover {
    color: #ffc933; /* NEW Accent Color */
}

.map-container {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: 450px;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .contact-card, .map-container {
        width: 100%;
        height: auto;
    }

    .map-container {
        height: 350px;
    }
}







/* Scoped styles using section ID */

#hotel-navigation-section .container {
    margin: 0 auto;
    padding: 0 20px;
}

#hotel-navigation-section .navigation-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#hotel-navigation-section .nav-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

#hotel-navigation-section .nav-item {
    display: flex;
    height: 100%;
}

#hotel-navigation-section .nav-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: black;
    text-decoration: none;
    background: white;
    border-radius: 8px;
    padding: 25px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    height: 120px; /* Fixed height for rectangular format */
}

#hotel-navigation-section .nav-link:hover {
    background: #ffc933; /* NEW Accent Color */
    color: black;
    box-shadow: 0 8px 16px rgba(0, 60, 126, 0.2); /* NEW Primary with alpha */
    transform: translateY(-3px);
}

#hotel-navigation-section .nav-icon {
    font-size: 24px;
    margin-bottom: 12px;
    color: #ffc933; /* NEW Accent Color */
    transition: all 0.3s ease;
}

#hotel-navigation-section .nav-link:hover .nav-icon {
    color: black;
    transform: scale(1.1);
}

#hotel-navigation-section .nav-text {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

#hotel-navigation-section .nav-desc {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.4;
}

/* Responsive styles */
@media (max-width: 992px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: repeat(2, 1fr);
    }

    #hotel-navigation-section .nav-link {
        height: 110px;
        padding: 20px 10px;
    }
}

@media (max-width: 576px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: 1fr;
    }

    #hotel-navigation-section .nav-link {
        height: 100px;
        padding: 15px 10px;
    }

    #hotel-navigation-section {
        padding: 30px 0;
    }
}


/* ===== MAIN SECTION ===== */
.faq-section {
    padding: 70px 0;
    background: #ffffff;
}

/* ===== CONTAINER (IMPORTANT FIX) ===== */
.faq-section .container {
    max-width: 1100px;   /* 👈 reduce width (important) */
    margin: 0 auto;      /* center */
    padding: 0 30px;     /* 👈 left-right breathing space */
}

/* ===== GRID ===== */
.faq-grid {
    display: flex;
    gap: 30px;
}

/* ===== COLUMN ===== */
.faq-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ===== CARD ===== */
.faq-card {
    background: #f8f9fb;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: 0.3s;
}

/* HOVER */
.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .faq-section .container {
        padding: 0 20px;
    }

    .faq-grid {
        flex-direction: column;
    }
}

.highlighted-attraction-section {
    color: black;
    text-align: center;
}

.highlighted-container {
    max-width: 1200px;
    margin: 40px auto;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #ffffff;
}

.highlighted-header {
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #f7f9fc, #dfeaf1);
}

.highlighted-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.highlighted-subtitle {
    font-size: 1.3rem;
}

.highlighted-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 30px;
}

.highlighted-description {
    flex: 1;
    text-align: left;
}

.highlighted-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.highlighted-features li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: black;
    display: flex;
    align-items: center;
}

.highlighted-features li strong {
    color: #003c7e; /* NEW Primary Color */
}

.highlighted-text {
    font-size: 1rem;
    line-height: 1.6;
    color: black;
    margin-bottom: 15px;
}

.highlighted-reservation-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #003c7e; /* NEW Primary Color */
    color: #fff !important;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.highlighted-reservation-btn:hover {
    background: #ffc933; /* NEW Accent Color */
    color: black !important;
    transform: translateY(-3px);
}

.highlighted-image {
    flex: 1;
    max-height: 300px;
    overflow: hidden;
}

.highlighted-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlighted-img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .highlighted-content {
        flex-direction: column;
    }

    .highlighted-title {
        font-size: 2rem;
    }

    .highlighted-subtitle {
        font-size: 1.1rem;
    }
}

.highlighted-hospital-section {
    padding: 80px 20px;
    background: #fdfcfb;
    color: #003c7e; /* NEW Primary Color */
    text-align: center;
}

.highlighted-hospital-container {
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #ffffff;
    padding: 40px;
}

.hospital-header {
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #f7f9fc, #dfeaf1);
    border-radius: 15px;
}

.hospital-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #003c7e; /* NEW Primary Color */
}

.hospital-subtitle {
    font-size: 1.3rem;
    color: #003c7e; /* NEW Primary Color */
}

.hospital-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.hospital-description {
    flex: 1;
    text-align: left;
}

.hospital-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.hospital-features li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: black;
    display: flex;
    align-items: center;
}

.hospital-features li strong {
    color: #003c7e; /* NEW Primary Color */
}

.hospital-text {
    font-size: 1rem;
    line-height: 1.6;
    color: black;
    margin-bottom: 15px;
}

.hospital-reservation-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #003c7e; /* NEW Primary Color */
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hospital-reservation-btn:hover {
    background: #ffc933; /* NEW Accent Color */
    color: black;
    transform: translateY(-3px);
}

.hospital-image {
    flex: 1;
    max-height: 300px;
    overflow: hidden;
}

.hospital-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hospital-img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .hospital-content {
        flex-direction: column;
    }

    .hospital-title {
        font-size: 2rem;
    }

    .hospital-subtitle {
        font-size: 1.1rem;
    }
}

.attraction-details-section {
    padding: 80px 20px;
    background: #fdfcfb;
    color: #003c7e; /* NEW Primary Color */
    text-align: center;
}

.attraction-details-container {
    max-width: 1200px;
    margin: 0 auto;
}

.details-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #003c7e; /* NEW Primary Color */
}

.details-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #ffc933; /* NEW Accent Color */
}

.details-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.details-image {
    flex: 1;
}

.details-image .image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.details-image .image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.details-description {
    flex: 1;
    text-align: left;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.features-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: black;
}

.features-list li strong {
    color: #003c7e; /* NEW Primary Color */
}

.details-reservation-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #003c7e; /* NEW Primary Color */
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top:10px;
}

.details-reservation-btn:hover {
    background: #ffc933; /* NEW Accent Color */
    color: black;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .details-content {
        flex-direction: column;
    }

    .details-title {
        font-size: 2.5rem;
    }

    .details-subtitle {
        font-size: 1.3rem;
    }
}

.dining-details-section {
    padding: 80px 20px;
    background: #fdfcfb;
    color: #003c7e; /* NEW Primary Color */
    text-align: center;
}

.dining-details-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dining-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #003c7e; /* NEW Primary Color */
}

.dining-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #ffc933; /* NEW Accent Color */
}

.dining-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.dining-image {
    flex: 1;
}

.dining-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dining-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.dining-description {
    flex: 1;
    text-align: left;
}

.dining-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.dining-features li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: black;
    display: flex;
    align-items: center;
}

.dining-features li strong {
    color: #003c7e; /* NEW Primary Color */
}

.dining-text {
    font-size: 1rem;
    line-height: 1.6;
    color: black;
    margin-bottom: 15px;
}

.dining-reservation-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #003c7e; /* NEW Primary Color */
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dining-reservation-btn:hover {
    background: #ffc933; /* NEW Accent Color */
    color: black;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .dining-content {
        flex-direction: column;
    }

    .dining-title {
        font-size: 2rem;
    }

    .dining-subtitle {
        font-size: 1.1rem;
    }
}


/* App Layout */
.New-attraction-app-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.New-attraction-attraction-quality-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .New-attraction-attraction-quality-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- MODIFIED DESKTOP STYLES --- */
@media (min-width: 1024px) {
    .New-attraction-attraction-quality-cards {
        /* Create a 6-column grid to allow for precise placement */
        grid-template-columns: repeat(6, 1fr);
    }

    /* First 3 items (top row): make each span 2 columns */
    .New-attraction-card:nth-child(-n+3) {
        grid-column: span 2;
    }

    /* 4th item: start at column 2 and span 2 columns */
    .New-attraction-card:nth-child(4) {
        grid-column: 2 / span 2;
    }

    /* 5th item: start at column 4 and span 2 columns */
    .New-attraction-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}
/* --- END OF MODIFIED STYLES --- */


/* Card Styles */
.New-attraction-card {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.New-attraction-card:hover {
    transform: translateY(-5px);
    /* NEW Primary color with transparency for shadow */
    box-shadow: 0 8px 12px rgba(0, 60, 126, 0.1);
}

.New-attraction-card-image-container {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.New-attraction-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.New-attraction-card:hover .New-attraction-card-image {
    transform: scale(1.05);
}

.New-attraction-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.New-attraction-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    /* NEW Accent color */
    color: #ffc933;
}

.New-attraction-card-description {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.New-attraction-card-details {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #000000;
}

.New-attraction-card-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.New-attraction-card-details li + li {
    margin-top: 0.75rem;
}

/* --- UPDATED STYLES FOR ICONS AND LINKS --- */

/* Style for new Font Awesome icons */
.New-attraction-card-details i {
    /* NEW Accent color */
    color: #ffc933;
    font-size: 16px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Style for the link text */
.New-attraction-card-details a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

/* Change the link text color on hover */
.New-attraction-card-details a:hover {
    /* NEW Primary color */
    color: #003c7e;
}



.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 0px auto;
    padding: 20px;
    margin-top: -40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(15, 32, 64, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(15, 32, 64, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.05);
}


/* --- Lightbox Styling --- */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;

    z-index: 9999;
}

.lightbox.active {
    visibility: visible;
    opacity: 1;
}

#lightbox-img, #lightbox-caption {
    position: relative;
    z-index: 1;
}

#lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 10px 25px rgba(15, 32, 64, 0.5);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active #lightbox-img {
    transform: scale(1);
}

#lightbox-caption {
    text-align: center;
    color: #ffc933; /* NEW Accent Color */
    padding: 10px 0;
    margin-top: 10px;
    font-size: 1.1em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: opacity 0.4s ease-in-out;
}

.close-btn, .prev-btn, .next-btn {
    position: absolute;
    color: #ffc933; /* NEW Accent Color */
    cursor: pointer;
    font-weight: bold;
    user-select: none;
    transition: color 0.2s ease;

    z-index: 2;
}

.close-btn:hover, .prev-btn:hover, .next-btn:hover {
    color: #003c7e; /* NEW Primary Color on hover */
}

.close-btn {
    top: 20px;
    right: 35px;
    font-size: 40px;
}

.prev-btn, .next-btn {
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    padding: 16px;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* =================================================================== */
/* ============== NEW RESPONSIVE STYLES FOR TABLET & MOBILE ============== */
/* =================================================================== */

/* --------- Styles for Tablets (e.g., screen widths up to 992px) --------- */
@media (max-width: 992px) {
    /* New Facility Section */
    .facility-grid-creative {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .facility-box-creative {
        max-width: none; /* Allows the box to fill its column width */
    }
}


/* --------- Styles for Mobile Phones & Small Tablets (e.g., screen widths up to 768px) --------- */
@media (max-width: 768px) {
    /* General Title Adjustments */
    .new-facility-title,
    .location-title,
    .hospital-title,
    .details-title {
        font-size: 2.2rem;
    }

    .features-title {
        font-size: 30px;
    }
    
    .highlighted-title,
    .dining-title {
       font-size: 2rem;
    }

    .highlighted-subtitle,
    .hospital-subtitle,
    .details-subtitle,
    .dining-subtitle {
       font-size: 1.1rem;
    }
    
    /* General Section Padding */
    .new-facility-section,
    .location-container,
    .highlighted-hospital-section,
    .attraction-details-section,
    .dining-details-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Reduce padding inside some containers */
    .highlighted-container,
    .highlighted-hospital-container {
        padding: 20px;
    }

    .hospital-header {
        padding: 15px;
    }
}

/* --------- Styles for Small Mobile Phones (e.g., screen widths up to 576px) --------- */
@media (max-width: 576px) {
    /* New Facility Section */
    .facility-grid-creative {
        grid-template-columns: 1fr;
    }

    /* Adjust font size for main headings on smallest screens */
     .new-facility-title,
    .location-title,
    .hospital-title,
    .details-title {
        font-size: 1.8rem;
    }

    /* Attraction List */
    .attraction {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .attraction-distance {
        align-self: flex-start;
    }

    /* Contact Card */
    .info-item {
        align-items: center;
    }

    .info-item i {
        margin-top: 0;
    }
}


/* ===== SECTION ===== */
.group-booking-section {
    position: relative;
    background: linear-gradient(135deg, #8B1E3F, #5e142a);
    padding: 100px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

/* Subtle Pattern */
.group-booking-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

/* ===== TITLE (SCOPED - SAFE) ===== */
.group-title {
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.group-title h2 {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

/* Gold underline */
.group-title h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #C19B76;
    margin: 10px auto 0;
    border-radius: 2px;
}

.group-title p {
    color: #f1dfe5;
    font-size: 18px;
    line-height: 1.8;
}

/* ===== CENTER FIX ===== */
.group-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ===== CARD ===== */
.group-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.group-card:hover {
    transform: translateY(-6px);
}

/* Heading */
.group-card h4 {
    font-size: 22px;
    color: #8B1E3F;
    margin-bottom: 20px;
}

/* Contact */
.contact-item {
    font-size: 16px;
    margin-bottom: 12px;
    color: #333;
}

.contact-item i {
    color: #C19B76;
    margin-right: 10px;
}

/* Links */
.group-card a {
    color: #333;
    text-decoration: none;
}

.group-card a:hover {
    color: #8B1E3F;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .group-title h2 {
        font-size: 26px;
    }

    .group-title p {
        font-size: 16px;
    }

    .group-booking-section {
        padding: 70px 0;
    }
}





/* Section */
.places-section {
    
}

/* Card */
.places-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

/* Heading */
.places-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #c19b76;
}

/* Icon */
.places-card h4 i {
    margin-right: 8px;
}

/* List */
.places-card ul {
    list-style: none;
    padding-left: 0;
}

.places-card ul li {
    padding: 6px 0;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid #eee;
}

.places-card ul li:last-child {
    border-bottom: none;
}


/* SECTION */
.amenities-page-section {
    padding: 0px 0;
}

/* HEADER */
.amenities-header {
    max-width: 100%;
    margin: 0 auto 50px;
}

.amenities-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a2b49;
    margin-bottom: 15px;
}

.amenities-header p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* CARD */
.amenities-card {
    background: #fff;
    padding: 25px 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    height: 100%;
    transition: 0.3s;
}

.amenities-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* TITLE */
.amenities-card h3 {
    font-size: 20px;
    color: #8B1E3F;
    margin-bottom: 15px;
    border-left: 4px solid #C19B76;
    padding-left: 10px;
}

/* LIST */
.amenities-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenities-card ul li {
    font-size: 15px;
    color: #444;
    padding-left: 18px;
    position: relative;
    margin-bottom: 8px;
}

/* CHECK ICON */
.amenities-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #C19B76;
    font-size: 12px;
}

/* TWO COLUMN */
.two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .amenities-header h2 {
        font-size: 26px;
    }

    .two-col {
        grid-template-columns: 1fr;
    }
}




/* ===== SECTION ===== */
.attractions-page-section {
    
}

/* HEADER */
.attractions-header {
    max-width: 100%;
    margin: 0 auto 50px;
}

.attractions-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a2b49;
    margin-bottom: 15px;
}

.attractions-header p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* CARD */
.attraction-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    height: 100%;
    transition: 0.3s;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* TITLE */
.attraction-card h3 {
    font-size: 20px;
    color: #8B1E3F;
    margin-bottom: 15px;
    border-left: 4px solid #C19B76;
    padding-left: 10px;
}

/* LIST */
.attraction-card ul {
    list-style: none;
    padding: 0;
}

.attraction-card ul li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 8px;
    color: #444;
}

.attraction-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #C19B76;
}

/* ===== PLACES SECTION ===== */
.places-section {
    padding: 70px 0;
    background: #ffffff;
}

.places-header h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.places-card {
    background: #f8f9fb;
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s;
}

.places-card:hover {
    transform: translateY(-5px);
}

.places-card h4 {
    color: #8B1E3F;
    margin-bottom: 15px;
}

.places-card ul {
    list-style: none;
    padding: 0;
}

.places-card ul li {
    margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .attractions-header h2 {
        font-size: 26px;
    }
}