/* --- Global Reset & Basic Styling --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333333;
    background-color: #f9f9f9;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}
.uppercase {
    text-transform: uppercase;
}
.font-serif {
    font-family: 'Playfair Display', serif;
}
.font-bold {
    font-weight: 700;
}
.hidden {
    display: none !important;
}


/* --- Sticky Header Wrapper --- */
.sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* --- Top Navigation Bar --- */
.top-nav {
    background-color: #0f2040;
    color: #ffffff;
    padding: 8px 0;
    border-bottom: 1px solid #444;
    font-size: 0.85rem;
}

.top-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 15px;
    font-size: 16px;
}

.contact-info i {
    color: #C5A059;
    margin-right: 5px;
}

.social-links a,
.social-links i {
    margin-left: 10px;
    cursor: pointer;
}

.social-links a:hover,
.social-links i:hover {
    color: #C5A059;
}

/* --- Main Header --- */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-area img {
    height: 100px;
    width: auto;
}

.logo-text {
    margin-left: 12px;
    padding-left: 12px;
    border-left: 2px solid #1E407C;
    display: none; /* Hidden on mobile by default */
}

.logo-text h1 {
    color: #1E407C;
    font-size: 1.125rem;
    line-height: 1.1;
}

.logo-text p {
    color: #C5A059;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* Desktop Menu */
.desktop-menu {
    display: none;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: #0f2040;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.05em;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #1E407C;
    border-bottom-color: #1E407C;
}

.btn-book {
    background-color: #1E407C;
    color: white;
    padding: 10px 24px;
    border-radius: 2px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-book:hover {
    background-color: #153060;
    transform: scale(1.05);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: white;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 100;
    border-top: 4px solid #1E407C;
    border-radius: 0 0 5px 5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    color: #333333;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: #1E407C;
}

/* Mobile Menu */
.mobile-toggle {
    display: block;
    background: none;
    border: none;
    color: #1E407C;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background-color: white;
    border-top: 1px solid #eee;
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    font-weight: 700;
    font-size: 0.9rem;
}

.mobile-menu .submenu-header {
    padding: 10px 20px;
    font-size: 0.75rem;
    color: #1E407C;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #f9f9f9;
}

.mobile-menu .submenu-item {
    padding-left: 40px;
    font-weight: 400;
    color: #555;
    background-color: #f9f9f9;
}

/* --- Hero Slider Section --- */
#home {
    position: relative;
    height: 600px;
    overflow: visible;
}

.slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.7s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slide-content h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-outline:hover {
    background-color: white;
    color: #1E407C;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
    opacity: 0;
    z-index: 10;
}

#home:hover .slider-btn {
    opacity: 1;
}

.slider-btn:hover {
    background-color: #1E407C;
}

.prev-btn {
    left: 20px;
}
.next-btn {
    right: 20px;
}

/* --- Booking Box Section --- */
.booking-wrapper {
    position: relative;
    width: 100%;
    z-index: 20;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}

.booking-form {
    background-color: white;
    padding: 25px 20px;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: -50px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 120px;
}

.group-date {
    flex: 2;
    min-width: 140px;
}
.group-select {
    flex: 1;
    min-width: 70px;
}
.group-btn {
    flex: 1.5;
    min-width: 120px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #333;
    background-color: #fff;
    outline: none;
    transition: border-color 0.2s;
    cursor: pointer;
    height: 46px;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: #666;
}

.btn-check {
    width: 100%;
    height: 46px;
    background-color: #6d6e71;
    color: white;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: capitalize;
    box-sizing: border-box;
}

.btn-check:hover {
    background-color: #555;
}

/* Fix for iOS Safari input rounding */
@supports (-webkit-touch-callout: none) {
    .form-control {
        -webkit-appearance: none;
        border-radius: 4px;
    }
}


/* --- Custom Calendar (flatpickr) Styles --- */
.flatpickr-calendar {
    background: #102a43 !important;
    border: 1px solid #0d2136 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    border-radius: 4px !important;
    max-width: 320px !important;
}

.flatpickr-calendar .flatpickr-header {
    background: #102a43 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: #fff !important;
    font-weight: bold !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    fill: #fff !important;
}

span.flatpickr-weekday {
    background: #fff !important;
    color: #102a43 !important;
    font-weight: bold !important;
}

.flatpickr-days {
    background: #102a43 !important;
    border-top: 1px solid #102a43 !important;
}

.flatpickr-day {
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 0 !important;
    margin: 0 !important;
    height: 40px !important;
    line-height: 40px !important;
    width: 14.28% !important;
    max-width: none !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day:focus,
.flatpickr-day:hover {
    background: #fff !important;
    color: #102a43 !important;
    border-color: #fff !important;
    font-weight: bold !important;
}

.flatpickr-day.today {
    border-color: #fff !important;
}

/* --- About Section --- */
#about {
    background-color: white;
    padding: 60px 0;
    /* FIX: Add a minimum height to prevent the page from "jumping" when the content collapses. */
    min-height: 650px; 
    display: flex; /* Helps vertically center content */
    align-items: center; /* Aligns content to the middle */
    transition: min-height 0.5s ease-in-out;
}

.about-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    transition: all 0.5s ease-in-out;
    width: 100%;
}

/* This is a flex container for the initial image and text to sit side-by-side */
.about-initial-flex-container {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
    width: 100%;
}

/* --- Initial Content Styling (Image & Text) --- */

.about-image-wrapper {
    position: relative;
}

.about-deco-top {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    background-color: rgba(197, 160, 89, 0.2);
    border-top-left-radius: 20px;
    z-index: 0;
}

.about-img {
    position: relative;
    z-index: 1;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: transform 0.5s;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-img:hover {
    transform: scale(1.02);
}

.about-deco-bottom {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    border: 4px solid #1E407C;
    border-bottom-right-radius: 8px;
    z-index: 2;
}

.about-content h2 {
    font-size: 2.25rem;
    color: #0f2040;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.about-content p {
    color: #666666;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* --- Button Styles --- */
.btn {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    padding: 12px 28px;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
}

.btn.btn-primary {
    background-color: #0f2040; /* Dark blue background */
    color: white;             /* White text for contrast */
    border-color: #0f2040;
}

.btn.btn-primary:hover {
    background-color: #c5a059; /* Gold background on hover */
    border-color: #c5a059;
    color: #0f2040;           /* Dark blue text on hover */
    transform: translateY(-3px); /* Add a subtle "lift" effect */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Center the 'Read More' button */
#readMoreBtn {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* --- Expanded Content Styles --- */

#additionalContent {
    text-align: center;
    max-width: 800px; /* Constrain width for readability */
}

#additionalContent h2 {
    color: #0f2040;
}

#additionalContent p {
    color: #000000; /* Sets paragraph text to black, as requested */
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- Animation & Visibility Logic --- */
#initialContentWrapper, 
#additionalContent {
    transition: opacity 0.4s ease-in-out, max-height 0.6s ease-in-out, transform 0.4s ease-in-out;
    overflow: hidden;
    width: 100%;
}

/* --- Initial State (Default View) --- */

/* By default, the additional content is completely hidden and collapsed */
#additionalContent {
    opacity: 0;
    max-height: 0;
    transform: translateY(20px);
}

/* --- Active State (When "Read More" is clicked) --- */
.about-grid.show-more-active {
    justify-content: center;
}

/* Hide the initial content when the grid is active */
.about-grid.show-more-active #initialContentWrapper {
    opacity: 0;
    max-height: 0;
    pointer-events: none; /* Prevent interaction with hidden elements */
    transform: translateY(20px);
}

/* Show the additional content when the grid is active */
.about-grid.show-more-active #additionalContent {
    opacity: 1;
    max-height: 1500px; /* A large value to allow content to fully expand */
    transform: translateY(0);
}


/* --- Amenities Section (New Theme) --- */
#amenities {
    padding: 30px 20px;
    background-color: white; /* Changed */
    color: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    margin-top: -40px;
}

#amenities::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    z-index: 0;
}

#amenities .container {
    position: relative;
    z-index: 1;
}

.amenities-header {
    text-align: center;
    margin-bottom: 70px;
}

.amenities-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
    color: #c5a059; /* Changed */
}

.amenities-divider {
    width: 60px;
    height: 4px;
    background: #c5a059; /* Changed */
    margin: 0 auto;
    border-radius: 2px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.amenity-card {
    background: #0f2040; /* Changed */
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid rgba(197, 160, 89, 0.2); /* Changed */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.amenity-card:hover {
    transform: translateY(-12px);
    border-color: rgba(197, 160, 89, 0.5); /* Changed */
    background: #0f2040; /* Changed */
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    background: rgba(197, 160, 89, 0.08);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.amenity-card:hover .icon-wrapper {
    background: #c5a059; /* Changed */
    transform: rotate(-8deg) scale(1.05);
}

.icon-wrapper i {
    font-size: 36px;
    color: #c5a059;
    transition: all 0.4s ease;
}

.amenity-card:hover .icon-wrapper i {
    color: #0f2040; /* Changed */
}

.amenity-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.amenity-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #ffffff; /* Changed */
    margin: 0;
}

.amenity-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 80px;
    height: 80px;
    background: #c5a059;
    opacity: 0.02;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.amenity-card:hover::after {
    opacity: 0.08;
    transform: scale(3);
}


/* --- Attractions Section --- */
#attractions {
    padding: 100px 0;
    background-color: #0f2040;
    color: white;
    perspective: 1000px;
    overflow: hidden;
}

.attractions-header {
    text-align: center;
    margin-bottom: 60px;
}

.attractions-header h4 {
    color: #C5A059;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.attractions-header h2 {
    font-size: 2.5rem;
    margin-top: 10px;
    font-family: 'Playfair Display', serif;
}
.attractions-header p {
    color: #aaa;
    margin-top: 15px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    transform-style: preserve-3d;
}

.card-3d {
    width: 320px;
    height: 400px;
    position: relative;
    border-radius: 16px;
    cursor: pointer;
    transform: rotateY(0deg);
    transition: all 0.5s ease-out;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-3d:hover {
    transform: translateY(-15px) scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.card-3d:hover .card-content {
    transform: translateY(0);
}

.card-content h3 {
    color: #C5A059;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}

.card-content p {
    color: #ddd;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.card-3d:hover .card-content p {
    opacity: 1;
}

/* --- Gallery Section --- */
#gallery {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

#gallery h2 {
    font-size: 2.5rem;
    color: #0f2040;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
}

.gallery-viewport {
    width: 100%;
    height: 400px;
    perspective: 1500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 40px;
    scroll-snap-type: x mandatory;
    width: 100%;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.gallery-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.gallery-img {
    flex-shrink: 0;
    width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    scroll-snap-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.1) translateZ(50px);
    z-index: 10;
}

/* --- Location & Video Section --- */
#location {
    display: flex;
    flex-direction: column;
    background-color: #eee;
}

.map-container,
.video-container {
    width: 100%;
    height: 400px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    transition: filter 0.5s;
}

.map-card {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 250px;
}

.map-card h5 {
    color: #1E407C;
    font-weight: bold;
    margin-bottom: 5px;
}
.map-card p {
    font-size: 0.85rem;
    color: #666;
}

.video-container {
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/video.webp'); /* Note: Placeholder URL */
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}

.play-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.play-btn {
    width: 80px;
    height: 80px;
    background-color: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.5rem;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.play-btn:hover {
    background-color: #b91c1c;
    transform: scale(1.1);
}

.play-content h3 {
    font-size: 1.75rem;
    margin-top: 20px;
    font-family: 'Playfair Display', serif;
}
.play-content p {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
}

/* --- Footer --- */
footer {
    background-color: #0f2040;
    color: white;
    padding: 60px 0 30px;
    border-top: 5px solid #C5A059;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.footer-col h3.sub-head {
    font-size: 1rem;
    color: #C5A059;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Lato', sans-serif;
}

.footer-col p {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}
.social-icon:hover {
    background-color: #C5A059;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0; /* Override to avoid extra spacing in grid */
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.3s;
    display: block; /* Ensure full width for links in grid */
}

.footer-links a:hover {
    color: white;
}

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    color: #9ca3af;
}

.footer-contact i {
    color: #C5A059;
    margin-right: 15px;
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    font-size: 0.8rem;
    color: #9ca3af;
    line-height: 1.6;
}

.footer-bottom p {
    margin: 0;
}

.footer-disclaimer {
    max-width: 900px;
}

.footer-credits a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-credits a:hover {
    text-decoration: underline;
}

.separator {
    margin: 0 6px;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr; /* Stack into single column on mobile */
    }
}

/* --- Back to Top Button --- */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #C5A059;
    color: white;
    border: 2px solid #C5A059;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.4s;
    z-index: 2000;
    /* Hidden State */
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
}

#backToTop.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

#backToTop:hover {
    background-color: white;
    color: #C5A059;
}

/* --- Responsive Design --- */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
    .booking-wrapper {
        padding: 0 20px;
        margin-top: 30px;
    }
    
    .booking-form {
        flex-wrap: wrap;
        padding: 20px;
        gap: 12px;
    }
    
    .group-date, 
    .group-select, 
    .group-btn {
        flex: 1 1 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile landscape and smaller tablets (max-width: 768px) */
@media (max-width: 768px) {
    /* Header */
    .logo-text { display: none; }
    .desktop-menu { display: none; }
    .mobile-toggle { display: block; }
    
    /* Hero */
    #home { height: 600px; }

    /* Booking Box */
    .booking-wrapper {
        padding: 0 15px;
        margin-top: 20px;
    }
    
    .booking-form {
        flex-direction: column;
        padding: 18px 15px;
        gap: 10px;
    }
    
    .form-group, 
    .btn-check {
        width: 100%;
    }
    
    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .form-control {
        padding: 8px 10px;
        height: 42px;
        font-size: 0.9rem;
    }
    
    .btn-check {
        height: 42px;
        font-size: 0.9rem;
    }
    
    .group-btn {
        margin-top: 5px;
    }
    
    /* About */
    .about-grid { flex-direction: column; }
    
    /* Amenities */
    #amenities { padding: 60px 20px; }
    .amenities-header h2 { font-size: 2.2rem; }
    .amenities-grid { grid-template-columns: 1fr; }

    /* Attractions */
    .card-3d:nth-child(2) { margin-top: 0; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { 
        flex-direction: column; 
        text-align: center;
        font-size: 15px; 
    }
    .footer-disclaimer,
    .footer-credits {
        max-width: 100%;
        text-align: center;
    }
}

/* Large Desktop (min-width: 768px) and up */
@media (min-width: 768px) {
    /* Header */
    .logo-text { display: block; }
    .desktop-menu { display: flex; }
    .mobile-toggle { display: none; }
    
    /* Hero & Booking */
    #home { height: 700px; }
    .slide-content h2 { font-size: 3.5rem; }
    .booking-form {
        flex-direction: row;
        flex-wrap: nowrap; /* Prevent wrapping on desktop */
        align-items: flex-end;
        gap: 20px;
    }

    /* About */
    .about-grid {  
        align-items: center; 
    }
    
    /* Attractions Stagger */
    .card-3d:nth-child(2) { margin-top: 50px; }
    
    /* Location/Video */
    #location { 
        flex-direction: row; 
        height: 450px; 
    }
    .map-container, 
    .video-container { 
        width: 50%; 
        height: 100%; 
    }
    
    /* Footer */
    .footer-grid { 
        grid-template-columns: repeat(3, 1fr); 
    }
    .footer-bottom { 
        flex-direction: row; 
        justify-content: space-between; 
        text-align: left; 
    }
     .footer-credits {
        text-align: right;
    }
}

/* XL Desktop (min-width: 1024px) */
@media (min-width: 1024px) {
    .amenities-grid { 
        grid-template-columns: repeat(3, 1fr); 
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .booking-wrapper {
        padding: 0 12px;
        margin-top: 15px;
    }
    .booking-form {
        padding: 15px 12px;
        border-radius: 8px;
    }
    .form-control, .btn-check {
        height: 44px;
        font-size: 16px; /* Prevents iOS auto-zoom on focus */
    }
    .flatpickr-calendar {
        max-width: 280px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    .flatpickr-day {
        height: 36px !important;
        line-height: 36px !important;
    }
}

/* Very Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
    .booking-wrapper { padding: 0 10px; }
    .booking-form { padding: 12px 10px; }
    .form-control, .btn-check { height: 40px; }
}




/* Sub Pages CSS Start */

.attractions-container {
    position: relative; /* Ensures content stays above background */
    z-index: 1;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 20px 20px;
}

.category {
    border-radius: 16px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    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 #c5a059;
}

.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: #0f2040;
    color: white;
    position: relative;
    margin-top: -7px;
}

.category-header h2 {
    font-size: 1.5rem;
    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;
}

.attraction {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.attraction:last-child {
    border-bottom: none;
}

.attraction-info {
    flex: 1;
}

.attraction-name {
    font-weight: 500;
    margin-bottom: 4px;
    color: #000;
}

.attraction-type {
    font-size: 0.85rem;
    color: Black;
}

.attraction-distance {
    background-color: #c5a059;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 70px;
    text-align: center;
    transition: all 0.3s ease;
}

.attraction:hover .attraction-distance {
    background-color: #0f2040;
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .attractions-container {
        grid-template-columns: 1fr;
    }
    
    .category {
        max-width: 500px;
        margin: 0 auto;
    }
}



/* Main Amenities Section */
.roosevelt-amenities {
    width: 100%;
    padding: 2rem 0;
    box-sizing: border-box; 
}

.roosevelt-amenities-container {
    width: 100%;
    max-width: 1280px; /* Slightly wider container */
    margin: 0 auto;
    padding: 0 2rem;
}

/* New Grid Container for Categories */
.roosevelt-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); /* 2 columns for wider screens */
    gap: 3rem; /* Spacing between grid items (category cards) */
}

/* Individual Category Section (now a grid item) */
.roosevelt-category-section {
    padding: 2.5rem; /* Padding inside each category card */
    display: flex; /* Flexbox for internal stacking of title, image, features */
    flex-direction: column;
    align-items: center; /* Center items horizontally within the card */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center; /* Center text within the card */
    overflow: hidden; /* Ensures border-radius cuts content correctly */
}

.roosevelt-category-section:hover {
    transform: translateY(-8px); /* Lift effect on hover */
    box-shadow: 0 10px 25px rgba(15, 32, 64, 0.15); /* Stronger shadow on hover */
}

/* Category Title */
.roosevelt-category-title {
    color: #0f2040;
    margin-top: 0; /* Reset default margin */
    margin-bottom: 1.5rem; 
    position: relative;
    width: 100%; /* Ensures title takes full width in column */
}

.roosevelt-category-title:after {
    content: '';
    display: block;
    width: 80px; /* Shorter line */
    height: 4px; /* Thicker line */
    background: #c5a059;
    margin: 0.8rem auto 0; /* Adjust margin below title */
    border-radius: 2px;
}

/* Category Image Block */
.roosevelt-category-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency in grid */
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem; /* Spacing between image and features */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); /* Slight shadow for image itself */
}

.roosevelt-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1); 
}

.roosevelt-category-image:hover img {
    transform: scale(1.08); 
}

/* Features Grid (Column Holder) - now the content section of the card */
.roosevelt-amenities-features-grid {
    width: 100%;
}

.roosevelt-amenities-feature-column {
    padding: 0; /* Remove padding as the main category-section has padding */
    background: none; /* Remove background, main card has it */
    box-shadow: none; /* Remove shadow, main card has it */
    border-top: none; /* Remove border, this is for inner columns if multiple existed */
    border-radius: 0; /* Remove border-radius */
}

.roosevelt-amenities-feature-column:hover {
    transform: none; /* Disable transform on inner column */
    box-shadow: none; /* Disable shadow on inner column */
}

/* Feature List */
.roosevelt-amenities-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left; /* Align feature list items to the left */
}

.roosevelt-amenities-feature-list li {
    padding: 1rem 0; /* Padding for each list item */
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2); 
    transition: all 0.3s ease-in-out;
}

.roosevelt-amenities-feature-list li:hover {
    background-color: rgba(197, 160, 89, 0.05); 
    padding-left: 15px; 
}

.roosevelt-amenities-feature-list li:last-child {
    border-bottom: none;
}

.roosevelt-amenities-feature-icon {
    color: #c5a059;
    margin-right: 1.5rem; 
    min-width: 28px; 
    text-align: center;
}

.roosevelt-amenities-feature-text {
    color: #333; 
}

/* The divider is removed as grid gaps provide separation */
.roosevelt-amenities-divider {
    display: none; 
}

/* Responsive adjustments */
@media (max-width: 1280px) {
    .roosevelt-amenities-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .roosevelt-amenities {
        padding: 4rem 0;
    }
    .roosevelt-categories-grid {
        grid-template-columns: 1fr; /* Stack into a single column */
        gap: 2.5rem;
    }
    .roosevelt-category-section {
        padding: 2rem;
    }
    .roosevelt-category-image {
        height: 220px; /* Adjust height when stacked */
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .roosevelt-amenities-container {
        padding: 0 1rem;
    }
    .roosevelt-category-section {
        padding: 1.8rem;
    }
    .roosevelt-category-image {
        height: 200px;
    }
    .roosevelt-category-title {
        margin-bottom: 1rem;
    }
    .roosevelt-amenities-feature-list li {
        padding: 0.8rem 0;
    }
    .roosevelt-amenities-feature-icon {
        min-width: 24px;
        margin-right: 1rem;
    }
}

@media (max-width: 576px) {
    .roosevelt-amenities {
        padding: 3rem 0;
    }
    .roosevelt-categories-grid {
        gap: 2rem;
    }
    .roosevelt-category-section {
        padding: 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: #0f2040;
  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: #0f2040;
}

.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(15, 32, 64, 0.1);
  border: 1px solid rgba(15, 32, 64, 0.1);
}

.coordinates-box h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #0f2040;
  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: #c5a059;
  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(15, 32, 64, 0.1);
  border: 1px solid rgba(15, 32, 64, 0.1);
}

.directions-form label {
  font-weight: 600;
  color: #0f2040;
  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: #0f2040;
  box-shadow: 0 0 0 3px rgba(15, 32, 64, 0.2);
}

.directions-form button {
  background: #0f2040;
  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: #c5a059;
  transform: translateY(-2px);
}

.location-map {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(15, 32, 64, 0.1);
  border: 1px solid rgba(15, 32, 64, 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: 0 auto;
    padding: 20px;
}

.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: #0f2040;
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
    text-align: center;
}

.contact-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #c5a059;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    color: #c5a059;
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 24px;
    text-align: center;
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #0f2040;
}

.info-text p, .info-text a {
    font-size: 1.1rem;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.info-text a:hover {
    color: #0f2040;
    text-decoration: underline;
}

.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) {
    .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: #333;
            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: #0f2040;
            color: white;
            box-shadow: 0 8px 16px rgba(15, 32, 64, 0.2);
            transform: translateY(-3px);
        }
        
        #hotel-navigation-section .nav-icon {
            font-size: 24px;
            margin-bottom: 12px;
            color: #c5a059;
            transition: all 0.3s ease;
        }
        
        #hotel-navigation-section .nav-link:hover .nav-icon {
            color: white;
            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;
            }
        }




.faq-section {
    margin: 20px auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    color: #0f2040;
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #0f2040, #c5a059);
    border-radius: 2px;
}

.faq-header p {
    color: black;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}

.faq-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid #0f2040;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.faq-question {
    padding: 25px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: #c5a059;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 18px;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.faq-answer {
    padding: 25px;
    position: relative;
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(to right, transparent, #0f2040, transparent);
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.faq-answer a {
    color: #0f2040;
    font-weight: 600;
    text-decoration: none !important;
}

.faq-answer a:hover {
    color: #c5a059;
    border-bottom-color: #c5a059;
}

.faq-answer .fa-caret-right {
    color: #c5a059;
    margin-right: 8px;
}

@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-header h2 {
        font-size: 28px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 20px;
    }
}


/* Style for the currently active navigation link */
        .nav-link.active,
        .mobile-menu a.active {
            /* You can choose any style you like. Here are some examples: */
            color: #007bff; /* A distinct color */
            font-weight: bold;
            text-decoration: none;
            text-decoration-thickness: 2px;
        }