/* ===== GLOBAL STYLES & Root Variables ===== */
:root {
  /* Hotel Showcase Colors */
  --gold: #fdf10a;
  --gold-light: #fdf10a;
  /* Removed duplicate --gold-dark, kept for original reference but not active */
  --dark: #0B1B1B;
  --light: #F8F5F0;
  --overlay: rgba(11, 27, 27, 0.6);

  /* Featured Rooms Colors */
  --color-red-primary: #f00000;
  --color-red-secondary: #eb1e3b;
  --color-yellow-accent: #fdf10a;
  --bg-main-gradient: radial-gradient(circle, #410a11, #1a0306 90%);
  --bg-card-footer-gradient: linear-gradient(45deg, var(--color-red-primary), var(--color-red-secondary));
  --bg-card-inner: rgba(0, 0, 0, 0.3);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --accent-glow: rgba(253, 241, 10, 0.4);

  /* General section colors */
  --section-bg-white: #ffffff;

    /* Header CSS Variables */
    --primary-color: #fdf10a;
    --secondary-color: #198754;
    --active-color: #eb1e3b;
    --cta-color: #fdf10a;
    --cta-hover-color: #fdf10a;
    --dark-bg-start: #2c3e50;
    --dark-bg-end: #34495e;
    --light-text: white;
    --dark-text: black;
    --header-main-height: 100px; /* Intended height for desktop header-main */
    --mobile-header-height: 70px; /* New variable for mobile header height */
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--section-bg-white);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* Global container for general use across different sections if applicable */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

/*
**********************************************************
* START: Styles for Header (Super 8 Premium Experience)
**********************************************************
*/
/* 3D Navigation Bar Styles */
#main-header {
    position: fixed; /* Default fixed for desktop */
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.4s ease-in-out;
}

#main-header.is-sticky .header-main {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header-top-bar {
    background: #eb1e3b;
    color: white;
    padding: 12px 0;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s ease-in-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Ensure header-top-bar fully hides on sticky/mobile state */
#main-header.is-sticky .header-top-bar {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    visibility: hidden;
    border: none;
    display: none; /* Explicitly hide it completely */
}

.header-top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    padding: 0 20px;
}

.header-top-bar .widget-contact span { margin-right: 2rem; }
.header-top-bar .widget-contact i,
.header-top-bar .widget-social i {
    color: var(--cta-color);
    margin-right: 8px;
}

.header-top-bar .widget-social a {
    margin-left: 1.2rem;
    color: #bdc3c7;
    transition: color 0.3s ease;
}
.header-top-bar .widget-social a:hover {
    color: #fff;
}

.header-main {
    height: var(--header-main-height);
    background-color: #fff;
    display: flex;
    align-items: center;
    transition: height 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    padding: 0 20px;
}

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    /* Default is 0, will be applied via media query for desktop */
    margin-top: 0; 
}

/* Apply margin-top to logo ONLY on desktop when header-main is active */
@media (min-width: 901px) {
    .header-main .logo-img {
        margin-top: 50px; /* Only applies on desktop */
    }
}


.nav-and-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.desktop-nav .nav-menu { display: flex; gap: 8px; }

.nav-menu .nav-item { position: relative; perspective: 600px; }

.nav-menu .nav-link {
    display: block;
    height: 48px; line-height: 48px;
    padding: 0 18px;
    font-weight: 600;
    font-size: 1rem;
    color: transparent; /* Hide original link text */
    position: relative;
}

.three-d-box {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    transform-style: preserve-3d;
    transform: translateZ(-24px); /* Half of height */
}

.nav-item:hover .three-d-box { transform: translateZ(-24px) rotateX(-90deg); }

.front, .back {
    position: absolute;
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    border-radius: 6px;
    backface-visibility: hidden;
    transition: all 0.3s ease;
}

.front {
    transform: rotateX(0deg) translateZ(24px);
    background: #fff; color: var(--dark-text);
}

.nav-item:hover .front { color: var(--primary-color); }
.back { transform: rotateX(90deg) translateZ(24px); background: var(--primary-color); color: #eb1e3b; }
.nav-item.active .front { background-color: var(--active-color); color: var(--light-text); }
.nav-item.active:hover .front { color: var(--light-text); }
.nav-item.active:hover .three-d-box { transform: translateZ(-24px) rotateX(0deg); }

/* "Book Now" CTA Button */
.nav-cta-button a {
    display: block;
    padding: 12px 30px;
    background-color: var(--cta-color);
    color: var(--dark-text);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.nav-cta-button a:hover {
    background-color: var(--cta-hover-color);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0,0,0,0.15);
}

/* Responsive & Mobile Navigation */
.mobile-header, .hamburger-menu, .mobile-menu-container { display: none; }

@media (max-width: 1024px) {
    .nav-and-cta { gap: 1rem; }
    .nav-menu .nav-link { padding: 0 12px; font-size: 0.95rem; }
    .nav-cta-button a { padding: 10px 25px; }
}

@media (max-width: 900px) {
    /* Hide desktop specific navigation elements */
    .desktop-nav, .header-top-bar, .header-main { display: none; }
    
    /* Make the main header sticky on mobile */
    #main-header {
        position: sticky; /* Make header sticky on mobile */
        top: 0; /* Essential for sticky behavior */
        box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Consistent shadow for mobile header */
    }

    /* Show mobile specific navigation elements */
    .mobile-header, .hamburger-menu, .mobile-menu-container { display: block; }

    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: var(--mobile-header-height); /* Fixed height for mobile header using variable */
        width: 100%;
        padding: 0 25px;
        background-color: #fff; /* Ensure mobile header has background */
    }
    .mobile-header .logo-img { height: 50px; margin-top: 0; } /* Mobile logo smaller and no top margin */

    .hamburger-menu {
        cursor: pointer; padding: 10px; z-index: 1002;
    }
    .hamburger-menu .bar {
        display: block; width: 25px; height: 3px;
        margin: 5px auto; background-color: var(--dark-text);
        transition: all 0.3s ease-in-out;
    }
    .hamburger-menu.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger-menu.is-active .bar:nth-child(2) { opacity: 0; }
    .hamburger-menu.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


    .mobile-menu-container {
        position: fixed; top: 0; left: 0;
        width: 100%; height: 100%;
        pointer-events: none;
        z-index: 1001;
    }
    .mobile-menu-container.is-active { pointer-events: auto; }

    .mobile-menu-overlay {
        position: absolute; width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.6); opacity: 0;
        transition: opacity 0.4s ease;
    }
    .mobile-menu-container.is-active .mobile-menu-overlay { opacity: 1; }

    .mobile-menu {
        position: absolute; top: 0; right: -85%;
        width: 85%; max-width: 320px;
        height: 100vh;
        background: #fff;
        padding: 100px 30px 30px;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }
     .mobile-menu-container.is-active .mobile-menu { right: 0; }

    .mobile-menu ul li a {
        display: block; padding: 1rem;
        margin-bottom: 0.75rem;
        border-radius: 5px;
        font-weight: 600; font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    .mobile-menu ul li.active a { background: var(--active-color); color: #fff; }
    .mobile-menu ul li a.mobile-cta { background-color: var(--cta-color); color: var(--dark-text); }
}

/* Base style for main element, allowing JS to control padding */
main {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    /* No padding-top defined here; managed by JavaScript */
}

/* ADJUSTMENT: Fix space above slider on mobile/tablet */
@media (max-width: 900px) {
    main {
        /* Overwrite potential JS padding-top to account for mobile sticky header */
        padding-top: var(--mobile-header-height);
        /* Ensure min-height adapts correctly as well */
        min-height: calc(100vh - var(--mobile-header-height)); 
    }
}


.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 4rem;
    color: var(--dark-text);
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
    color: var(--primary-color);
}

/* ==========================================================
 *        COMPLETE CSS FOR HERO SLIDER (FINAL VERSION)
 * ========================================================== */

/*
 * kemilau-section-wrapper styles
 */
.kemilau-section-wrapper {
    position: relative;
    height: 100vh;
    min-height: 800px;
    width: 100%;
}
@media (max-width: 900px) {
    .kemilau-section-wrapper {
        height: calc(100vh - var(--mobile-header-height));
        min-height: 500px;
    }
}

/*
 * kemilau-hero-slider-section styles
 */
.kemilau-hero-slider-section {
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 1500px) {
    .kemilau-hero-slider-section {
        margin-top: -150px;
    }
}

/* Slider container styles */
.kemilau-hero-slider-section .slider {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    position: relative;
    perspective: 1800px;
    max-height: 700px;
    max-width: 1200px;
    will-change: transform;
}

/* Item transitions and states */
.kemilau-hero-slider-section .slider:not(.zoom) .item {
    transition: all 900ms ease-in-out, opacity 400ms linear 0ms;
    opacity: 0;
    pointer-events: none;
}
.kemilau-hero-slider-section .slider:not(.zoom) .item.active {
    width: 100% !important;
    height: 100% !important;
    position: relative;
    display: flex;
    opacity: 1;
    pointer-events: all;
    transform: rotateY(0deg) translateZ(0);
}
.kemilau-hero-slider-section .slider:not(.zoom) .item.active .item__info {
    transform: translateY(0);
    opacity: 1;
    transition: all 900ms ease-in-out 600ms;
}
.kemilau-hero-slider-section .slider:not(.zoom) .item.active .btn,
.kemilau-hero-slider-section .slider:not(.zoom) .item.active .item__name span {
    transform: scale(1);
}
.kemilau-hero-slider-section .slider:not(.zoom) .item.active .btn {
    height: 44px;
}
.kemilau-hero-slider-section .slider.zoom .item {
    transition: all 900ms ease-in-out, opacity 300ms linear 500ms;
    opacity: 0.5;
    pointer-events: none;
}
.kemilau-hero-slider-section .wrapper {
    height: 100%;
    width: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transition: transform 900ms ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}
.kemilau-hero-slider-section .item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 39%;
    height: 50%;
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover !important;
    background-position: center;
    transition: all 900ms ease-in-out;
    transform-origin: center;
    will-change: transform;
    backface-visibility: hidden;
    border-radius: 8px;
}
.kemilau-hero-slider-section .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 300ms linear;
    z-index: 1;
}
.kemilau-hero-slider-section .slider:not(.zoom) .item.active::before {
    opacity: 1;
    transition-delay: 600ms;
}
.kemilau-hero-slider-section .item__info {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transform: translateY(50px);
    opacity: 0;
    transition: all 900ms ease-in-out;
    position: relative;
    z-index: 2;
}
.kemilau-hero-slider-section .slide-tag {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    margin-bottom: 2.5rem;
}
.kemilau-hero-slider-section .item__name {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    overflow: visible;
    white-space: nowrap;
}
.kemilau-hero-slider-section .item__name span {
    color: var(--gold);
    display: inline-block;
    transition: all 900ms ease-in-out;
    transform: scale(0.7);
    white-space: inherit;
    will-change: transform;
}
.kemilau-hero-slider-section .item__description {
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
}
@media (max-width: 1200px) {
    .kemilau-hero-slider-section .item__name { font-size: 3.4rem; }
    .kemilau-hero-slider-section .item__description { font-size: 1.15rem; }
}
@media (max-width: 1024px) {
    .kemilau-hero-slider-section .item__name { white-space: normal; font-size: 2.8rem; }
    .kemilau-hero-slider-section .item__description { font-size: 1.05rem; }
    .kemilau-hero-slider-section .item__info { padding: 1.8rem; max-width: 90%; }
}
@media (max-width: 900px) {
    .kemilau-hero-slider-section .item__name { font-size: 2.4rem; }
    .kemilau-hero-slider-section .item__description { font-size: 1rem; }
    .kemilau-hero-slider-section .item__info { padding: 1.5rem; max-width: 90%; }
}
@media (max-width: 768px) {
    .kemilau-hero-slider-section .item__name { font-size: 1.8rem; }
    .kemilau-hero-slider-section .item__description { font-size: 0.9rem; }
}
@media (max-width: 480px) {
    .kemilau-hero-slider-section .item__info { padding: 1em; }
    .kemilau-hero-slider-section .item__name { font-size: 1.7rem; }
    .kemilau-hero-slider-section .item__description { font-size: 0.75rem; }
}
.kemilau-hero-slider-section .btn {
    background: #fff;
    color: var(--dark);
    padding: 0 33px;
    text-decoration: none;
    display: inline-block;
    transform: scale(0.7);
    height: 0;
    position: relative;
    overflow: hidden;
    transition: all 900ms ease-in-out;
    will-change: transform;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 44px;
}

/*
 * ARROW NAVIGATION BUTTON STYLES
 */
.kemilau-hero-slider-section .arrow {
    background: var(--gold);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: all .2s ease-in-out;
    transform-origin: 50% 50%;
    will-change: transform;
    z-index: 100;
    border: none;
    padding: 0;
}
.kemilau-hero-slider-section .arrow:hover {
    transform: translateY(-50%) scale(1.1)
}
.kemilau-hero-slider-section .arrow-next {
    right: 0.1em;
    background: url('https://alikinvv.github.io/3d-carousel/build/img/arrow-right.svg') no-repeat center var(--gold);
    background-size: 32px !important;
}
.kemilau-hero-slider-section .arrow-prev {
    left: 0.1em;
    background: url('https://alikinvv.github.io/3d-carousel/build/img/arrow-left.svg') no-repeat center var(--gold);
    background-size: 32px !important;
}
@media (min-width: 768px) {
    .kemilau-hero-slider-section .arrow {
        width: 50px;
        height: 50px;
    }
}
@media (min-width: 1024px) {
    .kemilau-hero-slider-section .arrow {
        width: 55px;
        height: 55px;
    }
}
@media (min-width: 1200px) {
    .kemilau-hero-slider-section .arrow {
        width: 60px;
        height: 60px;
    }
    .kemilau-hero-slider-section .arrow-next {
        right: -8em;
    }
    .kemilau-hero-slider-section .arrow-prev {
        left: -8em;
    }
}

/*
 * PAUSE / PLAY BUTTON STYLES (Bottom-Right Corner)
 */
.kemilau-hero-slider-section .arrow-pause {
    position: absolute;
    /* --- NEW: Positioning in the bottom-right corner --- */
    bottom: 20px;
    right: 20px;
    z-index: 100;
    
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    font-size: 18px;
    line-height: 45px;
    text-align: center;
    transition: background 0.3s ease, transform 0.2s ease;
}
.kemilau-hero-slider-section .arrow-pause:hover {
    background: var(--gold);
    color: #fff;
    /* --- NEW: Simplified transform for hover effect --- */
    transform: scale(1.1);
}
.kemilau-hero-slider-section .arrow-pause:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/*
**********************************************************
* END: Styles for Hero Slider & Reservation
**********************************************************
*/

/*
**********************************************************
* START: Styles for Plan Your Trip Section
**********************************************************
*/
/* --- Default styles for Mobile and Tablet --- */
/* These apply to all screen sizes unless overridden below */
#plan-your-trip-section {
    background-color: var(--section-bg-white);
    color: #4a4a4a;
    padding: 0px; 
    margin-top: -35px;
}


/* --- Styles for Desktops and Larger Screens --- */
/* This @media rule activates ONLY when the screen is 1025px or WIDER */
@media (min-width: 1025px) {
    #plan-your-trip-section {
        margin-top: 0;
        padding: 40px 0; 
    }
}

#plan-your-trip-section .plan-trip-wrapper {
    display: flex;
    flex-direction: column; /* Default stack on mobile */
    align-items: center; /* Center horizontally when stacked */
    justify-content: center;
    gap: 2.5rem; /* Space between text and image sections */
    padding: 2rem 1.5rem;
    width: 100%;
    /* --- FIX: Set max-width to 1200px as requested --- */
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box; /* Ensures padding is included in the width calculation */
}

#plan-your-trip-section .plan-trip-wrapper section.max-w-xl {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center; /* Center text on mobile by default */
    margin-inline: auto; /* Center section on mobile */
    padding: 0 10px;
    width: 100%; /* Ensure it takes available space */
    box-sizing: border-box;
}

#plan-your-trip-section .plan-trip-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: #2a4a4f;
}

#plan-your-trip-section h1 {
    font-weight: 900;
    white-space: normal; /* Allow text to wrap naturally */
    word-break: break-word; /* Prevent very long words from overflowing */
}

#plan-your-trip-section button {
    display: block;
    margin-top: 1rem;
    background-color: #eb1e3b;
    color: white;
    border-radius: 9999px;
    padding: 0.75rem 2rem;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
    margin-inline: auto; /* Center button on mobile */
}

#plan-your-trip-section button:hover {
    background-color: #163033;
}


@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}
#plan-your-trip-section .float-animation {
    animation: floatUpDown 4s ease-in-out infinite;
}
#plan-your-trip-section .float-animation-delay-1 {
    animation-delay: 0s;
}
#plan-your-trip-section .float-animation-delay-2 {
    animation-delay: 1.3s;
}
#plan-your-trip-section .float-animation-delay-3 {
    animation-delay: 2.6s;
}

.pc-section {
    display: flex;
    flex-direction: column; /* Default stack on mobile */
    gap: 1.5rem;
    align-items: center; /* Center images in column layout */
    width: 100%;
    max-width: 320px; /* Max width for images container on mobile/tablet */
    margin-inline: auto; /* Center the image section itself on mobile */
}

#plan-your-trip-section .plan-trip-image {
    width: 100%; /* Takes full width of its constrained parent */
    height: 250px; /* Fixed height for consistency */
    max-width: 280px; /* Absolute max-width to avoid stretching too wide on larger mobiles/small tablets */
    overflow: hidden;
    flex-shrink: 0;
    object-fit: cover;
}
#plan-your-trip-section .plan-trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Specific border-radiuses for individual images (reduced for mobile/tablet) */
#plan-your-trip-section .plan-trip-image.rounded-\[100px\] {
    border-radius: 40px;
}
#plan-your-trip-section .plan-trip-image.rounded-tl-\[100px\] {
    border-top-left-radius: 40px;
    border-bottom-right-radius: 0;
}
#plan-your-trip-section .plan-trip-image.rounded-br-\[100px\] {
    border-bottom-right-radius: 40px;
}
#plan-your-trip-section .plan-trip-image.rounded-bl-\[100px\] {
    border-bottom-left-radius: 40px;
    border-top-right-radius: 0;
}
#plan-your-trip-section .plan-trip-image.rounded-tr-\[100px\] {
    border-top-right-radius: 40px;
}


/* Tablet (md breakpoint) and larger screens */
@media (min-width: 768px) {
    #plan-your-trip-section .plan-trip-wrapper {
        flex-direction: row;
        align-items: center; /* Switched to center for better vertical alignment */
        /* --- FIX: Reduced gap for tablets to help content fit --- */
        gap: 2rem; 
        padding: 0 2rem; /* Add horizontal padding for breathing room */
    }

    /* --- FIX: Make text container flexible --- */
    #plan-your-trip-section .plan-trip-wrapper section.max-w-xl {
        flex: 1 1 55%; /* Allow it to grow and shrink with a basis of 55% */
        text-align: left;
        margin-inline: unset;
        padding: 0; 
    }

    /* --- FIX: Allow h1 to wrap on tablets --- */
    #plan-your-trip-section h1 {
        font-size: 2.5rem;
        white-space: normal;
    }
    #plan-your-trip-section .plan-trip-subtitle {
        font-size: 1.25rem;
    }

    #plan-your-trip-section button {
        margin-inline: unset;
    }

    /* --- FIX: Make image container flexible --- */
    .pc-section {
        flex: 1 1 45%; /* Allow it to grow and shrink with a basis of 45% */
        margin-top: 0; 
        flex-direction: row;
        gap: 1.5rem; /* Reduced gap between images slightly */
        max-width: unset;
        width: auto; 
        justify-content: center;
        align-items: center;
    }

    .pc-section > div { 
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center; 
    }

    #plan-your-trip-section .plan-trip-image {
        width: 192px; 
        height: 320px;
        max-width: unset; 
    }
    .pc-section > div .plan-trip-image {
        width: 160px;
        height: 160px;
        max-width: unset;
    }
    
    #plan-your-trip-section .plan-trip-image.rounded-\[100px\] { border-radius: 100px; }
    #plan-your-trip-section .plan-trip-image.rounded-tl-\[100px\] { border-top-left-radius: 100px; border-bottom-right-radius: 100px;}
    #plan-your-trip-section .plan-trip-image.rounded-br-\[100px\] { border-bottom-right-radius: 100px; }
    #plan-your-trip-section .plan-trip-image.rounded-bl-\[100px\] { border-bottom-left-radius: 100px; border-top-right-radius: 100px;}
    #plan-your-trip-section .plan-trip-image.rounded-tr-\[100px\] { border-top-right-radius: 100px; }
}

@media (min-width: 992px) {
    /* Restore larger gap on desktops */
     #plan-your-trip-section .plan-trip-wrapper {
        gap: 3rem; 
    }

    #plan-your-trip-section .plan-trip-image {
        width: 224px;
        height: 360px;
    }
    .pc-section > div .plan-trip-image {
        width: 192px;
        height: 192px;
    }
}

@media (min-width: 1200px) {
    /* Restore larger gap on large desktops */
     #plan-your-trip-section .plan-trip-wrapper {
        gap: 5rem; 
    }

    #plan-your-trip-section h1 {
        white-space: nowrap; /* Prevent title from wrapping on very wide screens */
    }

    #plan-your-trip-section .plan-trip-image {
        width: 256px;
        height: 420px;
    }
    .pc-section > div .plan-trip-image {
        width: 224px;
        height: 224px;
    }
}

@media (min-width: 1400px) {
    /* Larger image sizes for screens wider than the 1200px container */
    #plan-your-trip-section .plan-trip-image {
        width: 288px;
        height: 460px;
    }
    .pc-section > div .plan-trip-image {
        width: 256px;
        height: 256px;
    }
}
/*
**********************************************************
* END: Styles for Plan Your Trip Section
**********************************************************
*/


/*
**********************************************************
* START: Styles for Featured Rooms Section
**********************************************************
*/
.feature-five {
    position: relative;
    padding: 120px 0;
    z-index: 1;
    overflow: hidden;
    background: var(--bg-main-gradient); /* Original Variable */
    color: var(--text-primary); /* Original Variable */
}

.feature-five::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-image: url('https://pixydrops.com/solinom-html/assets/images/shapes/feature-2-1.png');
    background-position: left top; background-repeat: repeat;
    z-index: -1; animation: bgSlide 5s linear infinite; opacity: 0.50;
}

@keyframes bgSlide {
    from { background-position: 0 0; }
    to { background-position: 100% 0; }
}

.feature-five .sec-title {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
}

.feature-five .sec-title__tagline {
    font-size: 18px; font-weight: 500; color: var(--color-yellow-accent); /* Original Variable */
    text-transform: uppercase; letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(253, 241, 10, 0.3);
}

.feature-five .sec-title__title {
    font-size: 48px; font-weight: 600; color: var(--text-primary); /* Original Variable */
    text-transform: capitalize;
}

.feature-five__carousel {
    position: relative; padding: 40px 0;
}

.feature-five__carousel .owl-stage { display: flex; }
.feature-five__carousel .owl-item { padding: 0 15px; display: flex; }
.feature-five__carousel .item { width: 100%; display: flex; }

.feature-five__carousel .owl-nav button {
    position: absolute; top: 50%; transform: translateY(-50%); background: transparent;
    border: none; outline: none; margin: 0; padding: 0;
}
.feature-five__carousel .owl-nav button span {
    border: 1px solid var(--color-yellow-accent); /* Original Variable */
    width: 48px; height: 48px;
    background-color: rgba(253, 241, 10, 0.1); display: flex;
    justify-content: center; align-items: center; color: var(--color-yellow-accent); /* Original Variable */
    font-size: 16px; transition: all 300ms ease;
    backdrop-filter: blur(5px); border-radius: 50%;
}
.feature-five__carousel .owl-nav button span:hover {
    background-color: var(--color-yellow-accent); /* Original Variable */
    color: var(--color-red-secondary); /* Original Variable */
}
.feature-five__carousel .owl-prev { left: -65px; }
.feature-five__carousel .owl-next { right: -65px; }


.feature-five-card {
    background-color: var(--bg-card-inner); /* Original Variable */
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden; width: 100%; backdrop-filter: blur(10px);
    display: flex; height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-five__carousel .item:hover .feature-five-card {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px var(--accent-glow); /* Original Variable */
}

.feature-five-card__inner { display: flex; flex-direction: column; width: 100%; }

.feature-five-card__thumb { overflow: hidden; position: relative; }

.feature-five-card__thumb img {
    width: 100%; height: 250px;
    object-fit: cover; transform: scale(1);
    transition: transform 0.5s ease;
}

.feature-five__carousel .item:hover .feature-five-card__thumb img {
    transform: scale(1.1);
}

.feature-five-card__thumb::after {
    content: ""; width: 100%; height: 100%; position: absolute; top: 0; left: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}


.feature-five-card__content { padding: 25px 30px; flex-grow: 1; }
.feature-five-card__content__title { margin: 0 0 20px 0; }
.feature-five-card__content__title a { color: inherit; text-decoration: none; transition: color 300ms ease; }
.feature-five-card__content__title a:hover { color: var(--color-yellow-accent); } /* Original Variable */

.feature-five-card__content__amenities {
    list-style: none; padding: 0; margin: 0;
    color: var(--text-secondary); /* Original Variable */
    line-height: 1.6;
}

.feature-five-card__content__amenities li {
    padding-left: 20px; position: relative; margin-bottom: 5px;
}

.feature-five-card__content__amenities li::before {
    content: '✔'; position: absolute; left: 0; top: 0;
    color: var(--color-yellow-accent); /* Original Variable */
    font-weight: bold;
}

.feature-five-card__content__number {
    padding: 20px 30px; display: flex; align-items: center; justify-content: space-between;
    background: var(--bg-card-footer-gradient); /* Original Variable */
    margin-top: auto;
}

.feature-five-card__content__number__parson {
    margin: 0;
    color: var(--text-primary); /* Original Variable */
}
.feature-five-card__content__number__parson strong {
    color: var(--color-yellow-accent); /* Original Variable */
}


.btn-book-now {
    background-color: var(--color-yellow-accent); /* Original Variable */
    color: #1a1a2e; /* Using a dark color for text readability, adjust if needed */
    padding: 10px 22px; border-radius: 50px;
    text-decoration: none; font-weight: 700;
    font-size: 14px; text-align: center;
    display: inline-block; border: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    background-color: transparent;
    border-color: var(--color-yellow-accent); /* Original Variable */
    color: var(--color-yellow-accent); /* Original Variable */
    transform: translateY(-2px);
}


@media (max-width: 1450px) {
    .feature-five__carousel .owl-prev { left: 15px; }
    .feature-five__carousel .owl-next { right: 15px; }
}
@media (max-width: 1199px) {
    .feature-five__carousel .owl-nav { text-align: center; margin-top: 10px; position: relative; }
    .feature-five__carousel .owl-nav button { position: static; transform: none; display: inline-block; margin: 0 10px; }
}
@media (max-width: 991px) {
    .feature-five { padding: 100px 0; }
    .feature-five .sec-title__title { font-size: 36px; }
}
@media (max-width: 575px) {
    .feature-five__carousel .owl-nav { display: none !important; }
}
/*
**********************************************************
* END: Styles for Featured Rooms Section
**********************************************************
*/

/*
**********************************************************
* START: Styles for Top Destination Carousel
**********************************************************
*/
/*=============================================
    New Color Palette:
    - Yellow: #fdf10a
    - Red:    #eb1e3b
/*=============================================*/

/*
=============================================================
--- Encapsulated Styles for Top Destinations Section ---
--- These styles will ONLY affect #top-destinations-section ---
=============================================================
*/

/* ===== Section Background & Header ===== */
#top-destinations-section {
    background-color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

#top-destinations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(235,30,59,0.05) 0%, rgba(253,241,10,0.05) 100%);
    z-index: 0;
}

#top-destinations-section .destinations-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

#top-destinations-section .destinations-header {
    text-align: center;
    margin-bottom: 3rem;
}

#top-destinations-section .destinations-header small {
    font-weight: 600;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
    color: #eb1e3b;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#top-destinations-section .destinations-header h2 {
    font-weight: 800;
    font-size: 2.5rem;
    color: #222;
    margin: 0;
    line-height: 1.2;
}

#top-destinations-section .destinations-header .destinations-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 1rem;
    font-weight: 400;
}

/* ===== Carousel & Cards ===== */
#top-destinations-section .carousel-container {
    position: relative;
    margin: 2rem auto 0;
    /* This padding is for Desktop/Larger Screens (base styling) */
    padding: 0 60px; 
}

#top-destinations-section .carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    height: 500px;
    overflow: visible;
    position: relative;
}

#top-destinations-section .card {
    position: absolute;
    width: 340px;
    height: 480px;
    border-radius: 16px;
    will-change: transform;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    overflow: hidden;
    background: #fff;
    user-select: none;
    border: 1px solid rgba(235, 30, 59, 0.1);
}

#top-destinations-section .card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#top-destinations-section .card:hover > img {
    transform: scale(1.05);
}

#top-destinations-section .card.active {
    box-shadow: 0 25px 50px rgba(235, 30, 59, 0.2);
    transform: scale(1.05) translateY(-10px);
    z-index: 10;
}

#top-destinations-section .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#top-destinations-section .card-content .title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
    width: 100%;
}

#top-destinations-section .card-content .listing {
    font-weight: 500;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
    padding: 4px 12px;
    background-color: rgba(235, 30, 59, 0.9);
    border-radius: 20px;
}

/* ===== Buttons (Tabs & Navigation) ===== */
#top-destinations-section .btn-group {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 15px;
    flex-wrap: wrap;
}

#top-destinations-section .btn-group button {
    background: white;
    border: 2px solid #eb1e3b;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    color: #eb1e3b;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(235, 30, 59, 0.1);
}

#top-destinations-section .btn-group button.active,
#top-destinations-section .btn-group button:hover {
    background: #eb1e3b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(235, 30, 59, 0.3);
}

#top-destinations-section .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #eb1e3b;
    border: none;
    color: white;
    width: 60px; /* Default for Desktop */
    height: 60px; /* Default for Desktop */
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(235, 30, 59, 0.3);
}

#top-destinations-section .carousel-btn:hover {
    background-color: #fdf10a;
    color: #eb1e3b;
    transform: translateY(-50%) scale(1.1);
}

/* Default positioning for Desktop/Larger Screens */
#top-destinations-section .carousel-btn.prev {
    left: 100px; 
}

#top-destinations-section .carousel-btn.next {
    right: 100px; 
}

#top-destinations-section .carousel-btn svg {
    width: 24px; /* Default for Desktop */
    height: 24px; /* Default for Desktop */
}

/* Responsive Adjustments (DO NOT affect desktop) */
@media (max-width: 1024px) {
    #top-destinations-section .card {
        width: 300px;
        height: 420px;
    }
    
    #top-destinations-section .card-content .title {
        font-size: 1.5rem;
    }

    /* Tablet: Adjust container padding */
    #top-destinations-section .carousel-container {
        padding: 0 25px; /* Reduced from 60px */
    }

    /* Tablet: Slightly reduce button size */
    #top-destinations-section .carousel-btn {
        width: 55px;
        height: 55px;
    }

    /* Tablet: Position buttons closer to the new padding edge */
    #top-destinations-section .carousel-btn.prev {
        left: 5px; 
    }
    #top-destinations-section .carousel-btn.next {
        right: 5px; 
    }
}

@media (max-width: 768px) {
    #top-destinations-section .destinations-header h2 {
        font-size: 2rem;
    }
    
    #top-destinations-section .carousel {
        height: 380px;
    }
    
    #top-destinations-section .card {
        width: 240px;
        height: 340px;
    }
    
    #top-destinations-section .card-content {
        padding: 15px;
    }
    
    #top-destinations-section .card-content .title {
        font-size: 1.3rem;
    }
    
    #top-destinations-section .card-content .listing {
        font-size: 0.9rem;
    }
    
    /* Mobile/Small Tablet: Further adjust container padding */
    #top-destinations-section .carousel-container {
        padding: 0 10px; /* More reduced padding */
    }

    /* Mobile/Small Tablet: Standard button size */
    #top-destinations-section .carousel-btn {
        width: 50px; 
        height: 50px;
    }

    /* Mobile/Small Tablet: Position buttons flush with container's new padding edge */
    #top-destinations-section .carousel-btn.prev {
        left: 0px; 
    }
    #top-destinations-section .carousel-btn.next {
        right: 0px; 
    }
}

@media (max-width: 576px) {
    #top-destinations-section {
        padding: 3rem 0;
    }
    
    #top-destinations-section .destinations-header small {
        font-size: 1rem;
    }
    
    #top-destinations-section .destinations-header h2 {
        font-size: 1.8rem;
    }
    
    #top-destinations-section .btn-group button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    #top-destinations-section .carousel {
        height: 320px;
    }
    
    #top-destinations-section .card {
        width: 200px;
        height: 280px;
    }
    
    #top-destinations-section .card-content .title {
        font-size: 1.1rem;
    }

    /* Smallest Mobile: Minimal padding */
    #top-destinations-section .carousel-container {
        padding: 0 5px; 
    }

    /* Smallest Mobile: Smallest button size */
    #top-destinations-section .carousel-btn {
        width: 40px; 
        height: 40px;
    }
    /* Smallest Mobile: Adjust SVG icon size to fit smaller buttons */
    #top-destinations-section .carousel-btn svg {
        width: 20px; 
        height: 20px;
    }

    /* Smallest Mobile: Allow buttons to slightly extend beyond container for visibility */
    #top-destinations-section .carousel-btn.prev {
        left: -5px; 
    }
    #top-destinations-section .carousel-btn.next {
        right: -5px; 
    }
}
/*
**********************************************************
* END: Styles for Top Destination Carousel
**********************************************************
*/

/*
**********************************************************
* START: Styles for Travel Experience Cards Section
**********************************************************
*/
#travel-experiences-section {
    position: relative;
    /* Adjusted: Reduced overall section vertical padding for mobile/tablet for less 'extra space' */
    padding: 200px 20px; 
    background: linear-gradient(135deg, #0b0a1a 0%, #1a1a2e 100%);
    overflow: hidden;
    z-index: 1;
}

/* START: Added CSS for the top wave effect */
.svg-background-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    z-index: 1;
    overflow: hidden;
    transform: rotate(180deg);
}

.svg-background-top svg {
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 100%;
    height: 100%;
}
/* END: Added CSS */

.svg-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    z-index: 1;
    overflow: hidden;
}

.svg-background svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.travel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.travel-header {
    text-align: center;
    margin-bottom: 60px;
}

.travel-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: #fdf10a;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    line-height: 1.2;
    padding-top: 15px;
}

.travel-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 30px;
    font-weight: 300;
}

.interactive-hint {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    color: #fff;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

.mouse-icon {
    width: 20px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 10px;
    position: relative;
}

.mouse-icon::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 6px;
    background: #fff;
    border-radius: 2px;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-5px); opacity: 0.8; }
}

@keyframes scroll {
    0% { top: 5px; opacity: 1; }
    100% { top: 15px; opacity: 0; }
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 0; /* Removing redundant margin as section padding handles it */
}

.travel-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1/1;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

    cursor: pointer;
}

.travel-card:hover {
    transform: translateY(-10px) scale(1.03);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.travel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.travel-card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 2; /* <-- THIS IS THE CRITICAL CHANGE */
}

.card-content h3 {
    color: #fdf10a;
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.card-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    font-size: 1rem;
}

.explore-btn {
    background: #fdf10a;
    border: none;
    color: #111;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
    text-decoration: none; /* Add this to remove underline for links */
}

.travel-card:hover .explore-btn {
    opacity: 1;
    transform: translateY(0);
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    /* By default, this will be z-index: auto (effectively 0 or 1 compared to positioned siblings). */
    /* .card-overlay now having z-index: 2 will place it above this. */
}

.travel-card:hover .card-glow {
    opacity: 1;
}

/* Floating decorative elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    animation: float 15s infinite ease-in-out;
}

.el-1 {
    width: 300px;
    height: 300px;
    background: rgba(255,154,158,0.1);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.el-2 {
    width: 400px;
    height: 400px;
    background: rgba(250,208,196,0.1);
    bottom: 20%;
    right: 5%;
    animation-delay: -5s;
}

.el-3 {
    width: 250px;
    height: 250px;
    background: rgba(168,144,255,0.1);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 30px) scale(1.1); }
}

/* Modern Lightbox Styles */
.travel-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.travel-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background: #1a1a2e;
    border-radius: 15px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.travel-lightbox.active .lightbox-container {
    transform: scale(1);
}

.lightbox-image-container {
    position: relative;
    overflow: hidden;
}

.lightbox-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lightbox-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.lightbox-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    background: #fdf10a;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lightbox-content p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.lightbox-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.lightbox-actions button {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.book-now {
    background: #fdf10a;
    color: #111;
}

.view-more {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3) !important;
}

.lightbox-actions button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    #travel-experiences-section {
        /* Adjusted: Further reduced vertical padding for smaller devices */
        padding: 120px 20px; 
    }
    .travel-title {
        font-size: 2.5rem;
    }
    
    .travel-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .lightbox-container {
        grid-template-columns: 1fr;
        max-height: 85vh;
    }
    
    .lightbox-image-container {
        height: 200px;
    }
    
    .svg-background,
    .svg-background-top {
        height: 20%; 
    }
}

@media (max-width: 480px) {
    #travel-experiences-section {
        /* Adjusted: Even further reduced vertical padding for small mobile */
        padding: 100px 20px;
    }
    .travel-title {
        font-size: 2rem;
    }
    
    .travel-subtitle {
        font-size: 1.1rem;
    }
    
    .card-content h3 {
        font-size: 1.5rem;
    }
    
    .lightbox-content {
        padding: 25px;
    }
    
    .lightbox-content h2 {
        font-size: 1.8rem;
    }
    
    .lightbox-actions {
        flex-direction: column;
    }
    
    .svg-background,
    .svg-background-top {
        height: 15%; 
    }
}
/*
**********************************************************
* END: Styles for Travel Experience Cards Section
**********************************************************
*/

/*
**********************************************************
* START: Styles for Recent Gallery
**********************************************************
*/
/* Removed duplicate 'kemilau-section-wrapper' styles here to prevent conflicts. */

#recent-gallery-section { /* Existing styles for this section are correct */
    /* ... your Tailwind classes directly in HTML remain */
    padding-top: 4rem; /* py-16 corresponds to 4rem top/bottom */
    padding-bottom: 4rem;
}

/* Modal Structure with Navigation (placed outside section for overlay) */
#gallery-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 9999;
    /* Use visibility and opacity for smoother transitions managed by JS */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
/* This class will be toggled by JS to show/hide the modal */
#gallery-modal.active {
    visibility: visible;
    opacity: 1;
}

#gallery-modal .relative { /* Corresponds to your div with class="relative w-11/12..." */
    position: relative;
    width: 11/12; /* This is a Tailwind class, actual value from TW's CSS output will apply */
    max-width: 1800px;
    max-height: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#gallery-modal #closeGalleryBtn,
#gallery-modal #prevGalleryBtn,
#gallery-modal #nextGalleryBtn {
    /* Basic positioning for buttons within modal, as Tailwind classes were applied on HTML directly */
    position: absolute;
    z-index: 50;
    color: white;
    background-color: rgba(0,0,0,0.5);
    border-radius: 9999px; /* This makes it round based on your TW class */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
#gallery-modal #closeGalleryBtn { top: 0.5rem; right: 0.5rem; width: 2.5rem; height: 2.5rem; font-size: 1.875rem;}
#gallery-modal #prevGalleryBtn { left: 0rem; width: 3rem; height: 3rem; font-size: 2.25rem;}
#gallery-modal #nextGalleryBtn { right: 0rem; width: 3rem; height: 3rem; font-size: 2.25rem;}

/* Adjust button positioning for larger small-medium screens (from sm:ml-4/mr-4) */
@media (min-width: 640px) { /* Tailwind's 'sm' breakpoint */
    #gallery-modal #prevGalleryBtn { left: 1rem; }
    #gallery-modal #nextGalleryBtn { right: 1rem; }
}

#gallery-modal #galleryModalImage {
    border-radius: 0.75rem; /* Matches rounded-xl */
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin-left: auto; /* mx-auto */
    margin-right: auto;
    display: block;
    opacity: 1; /* Default to full opacity once loaded */
    transition: opacity 0.2s ease-in-out; /* For fade effect when image source changes */
}


/*
**********************************************************
* END: Styles for Recent Gallery
**********************************************************
*/


/*
**********************************************************
* START: Styles for 3D Map/Video Contact Section
**********************************************************
*/
#map-video-contact-section {
    background: url('images/exterior.jpg') center/cover no-repeat;
    background-size: cover;
    perspective: 1000px;
    overflow: hidden;
    position: relative;
    padding: 60px 0;
}
#map-video-contact-section .contact-3d-section-bg {
    /* Background specific to this class */
}
#map-video-contact-section .parallax-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

#map-video-contact-section .card-3d {
    width: 48%; /* Use almost full width of container */
    height: 500px;
    position: relative;
    transform-style: preserve-3d;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    overflow: hidden;
    background: rgba(255,255,255,0.9);
    animation: jiggle 8s infinite ease-in-out;
}

#map-video-contact-section .clickable-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#map-video-contact-section .clickable-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    cursor: pointer;
}

#map-video-contact-section .video-card {
    animation-delay: 0.5s;
}

#map-video-contact-section .card-content {
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#map-video-contact-section .glowing-text {
    color: #356666;
    text-shadow: 0 0 10px rgba(26, 42, 108, 0.3);
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
}

#map-video-contact-section .map-3d-container,
#map-video-contact-section .video-3d-container {
    flex-grow: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateZ(30px);
}

#map-video-contact-section .map-3d-container iframe,
#map-video-contact-section .video-3d-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Jiggle Animation */
@keyframes jiggle {
    0%, 100% { transform: rotate(0deg) translateY(0); }
    25% { transform: rotate(0.5deg) translateY(-5px); }
    50% { transform: rotate(-0.5deg) translateY(0); }
    75% { transform: rotate(0.5deg) translateY(-3px); }
}

/* Responsive for 3D Map/Video Contact Section */
@media (max-width: 1024px) {
    #map-video-contact-section .card-3d {
        width: 100%; /* Full width on tablets */
        height: 450px;
    }
}

@media (max-width: 768px) {
    #map-video-contact-section .card-3d {
        height: 400px;
    }
    #map-video-contact-section .glowing-text {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    #map-video-contact-section .card-3d {
        height: 300px;
    }
    #map-video-contact-section .parallax-container {
        padding: 15px;
        gap: 20px;
    }
    #map-video-contact-section .glowing-text {
        font-size: 20px;
        margin-bottom: 10px;
    }
}
/*
**********************************************************
* END: Styles for 3D Map/Video Contact Section
**********************************************************
*/



.super8-footer {
    background-image: linear-gradient(rgba(15, 15, 15, 0.50)), url('images/super-8-background.png'); /* Updated path */
    background-size: cover;
    background-position: center;
    color: #fff;
    font-family: 'Montserrat', sans-serif; /* Adjusted to use Montserrat only */
    position: relative;
    overflow: hidden;
    box-shadow: 0 -15px 40px rgba(235, 30, 59, 0.15);
    line-height: 1.6;
}
.super8-footer .super8-bg-logo {
    font-size: 180px;
    font-weight: 900;
    color: rgba(253, 241, 10, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 8px;
    pointer-events: none;
}
.super8-footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 60px 40px;
    border-bottom: 1px solid rgba(253, 241, 10, 0.15);
    position: relative;
    z-index: 1;
}
.super8-footer .footer-logo {
    max-height: 100px;
    filter: drop-shadow(0 0 12px rgba(253, 241, 10, 0.4));
    transition: transform 0.3s ease;
}
.super8-footer .footer-logo:hover {
    transform: scale(1.05);
}
.super8-footer .footer-social-icons {
    display: flex;
    gap: 25px;
}
.super8-footer .footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(235, 30, 59, 0.25);
    color: #fff;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 20px;
    border: 1px solid rgba(253, 241, 10, 0.3);
}
.super8-footer .footer-social-icon:hover {
    background-color: #eb1e3b;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(235, 30, 59, 0.5);
    color: #fdf10a;
}
.super8-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    padding: 60px;
    position: relative;
    z-index: 1;
    padding-bottom: 0px;
}
.super8-footer .footer-section-title {
    color: #fdf10a;
    font-size: 22px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.super8-footer .footer-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #eb1e3b, #fdf10a);
}
.super8-footer .hotel-name {
    color: #fdf10a;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.super8-footer .hotel-name i {
    font-size: 24px;
}
.super8-footer .hotel-description {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.super8-footer .footer-address,
.super8-footer .footer-phone,
.super8-footer .footer-map-link {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.super8-footer .footer-address i,
.super8-footer .footer-phone i,
.super8-footer .footer-map-link i {
    color: #fdf10a;
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}
.super8-footer .address-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.super8-footer .phone-link {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.super8-footer .phone-link:hover {
    color: #fdf10a;
    text-decoration: underline;
}
.super8-footer .footer-map-link a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}
.super8-footer .footer-map-link a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #fdf10a;
    transition: width 0.3s ease;
}
.super8-footer .footer-map-link a:hover {
    color: #fdf10a;
}
.super8-footer .footer-map-link a:hover::after {
    width: 100%;
}
.super8-footer .quick-links-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.super8-footer .quick-links-columns li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    position: relative;
    font-weight: 400;
}
.super8-footer .quick-links-columns li a i {
    color: #fdf10a;
    font-size: 16px;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.super8-footer .quick-links-columns li a span {
    position: relative;
}
.super8-footer .quick-links-columns li a span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #eb1e3b, #fdf10a);
    transition: width 0.3s ease;
}
.super8-footer .quick-links-columns li a:hover {
    color: #fdf10a;
    padding-left: 5px;
}
.super8-footer .quick-links-columns li a:hover i {
    transform: scale(1.2);
}
.super8-footer .quick-links-columns li a:hover span::after {
    width: 100%;
}
.super8-footer .policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.super8-footer .policy-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}
.super8-footer .policy-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.super8-footer .policy-list li i {
    color: #fdf10a;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}
.super8-footer .policy-detail {
    flex: 1;
}
.super8-footer .policy-list strong {
    color: #fdf10a;
    font-weight: 600;
}
.super8-footer .policy-list li:hover {
    transform: translateX(5px);
}
.super8-footer .footer-bottom-bar {
    background-color: rgba(10, 10, 10, 0.7);
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(253, 241, 10, 0.15);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 15px;
}
.super8-footer .footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}
.super8-footer .footer-legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
}
.super8-footer .footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
}
.super8-footer .footer-legal-links a:hover {
    color: #fdf10a;
    text-decoration: underline;
}
.super8-footer .divider {
    color: rgba(255, 255, 255, 0.3);
}
.super8-footer .footer-credits {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}
.super8-footer .footer-credits a {
    color: #fdf10a;
    text-decoration: none;
    transition: all 0.3s ease;
}
.super8-footer .footer-credits a:hover {
    color: #eb1e3b;
    text-decoration: underline;
}
@keyframes super8-pulse {
    0% { box-shadow: 0 0 0 0 rgba(235, 30, 59, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(235, 30, 59, 0); }
    100% { box-shadow: 0 0 0 0 rgba(235, 30, 59, 0); }
}
.super8-footer .footer-social-icon:hover {
    animation: super8-pulse 1s infinite;
}
@media (max-width: 1200px) {
    .super8-footer .super8-bg-logo {
        font-size: 140px;
    }
}
@media (max-width: 992px) {
    .super8-footer .super8-bg-logo {
        font-size: 100px;
    }
    .super8-footer .footer-content {
        padding: 50px 40px;
        gap: 40px;
    }
    .super8-footer .footer-top,
    .super8-footer .footer-bottom-bar {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media (max-width: 768px) {
    .super8-footer .super8-bg-logo {
        font-size: 70px;
        letter-spacing: 5px;
    }
    .super8-footer .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 40px 30px;
    }
    .super8-footer .footer-content {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 40px;
    }
    .super8-footer .footer-section-title {
        text-align: center;
    }
    .super8-footer .footer-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .super8-footer .hotel-info-card {
        text-align: center;
    }
    .super8-footer .hotel-name,
    .super8-footer .footer-address,
    .super8-footer .footer-phone,
    .super8-footer .footer-map-link {
        justify-content: center;
        flex-direction: column;
    }
    .super8-footer .quick-links-columns {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    .super8-footer .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 30px;
    }
    .super8-footer .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .super8-footer .super8-bg-logo {
        font-size: 50px;
    }
    .super8-footer .footer-section-title {
        font-size: 20px;
    }
    .super8-footer .hotel-name {
        font-size: 20px;
    }
}




/* Footer Bottom - Enhanced */
.footer-bottom {
    text-align: center;
    padding: 30px 0 40px;
    position: relative;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0) 0%, rgba(10, 10, 15, 0.8) 100%);
    /* Adding overflow hidden as the default 'footer-bottom-bar' and its background overlap issue might arise due to layering without it */
    overflow: hidden; 
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, 
                transparent, 
                rgba(243, 214, 127, 0.5), 
                rgba(243, 214, 127, 0.8), 
                rgba(243, 214, 127, 0.5), 
                transparent);
    margin: 25px auto;
    width: 70%;
    box-shadow: 0 0 10px rgba(243, 214, 127, 0.2);
}

.credits {
    font-size: 1rem;  /* Increased from 0.85rem */
    color: #fdf10a;  /* Increased opacity */
    line-height: 1.8;  /* Increased line height */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.credits p {
    margin-bottom: 15px;  /* Increased spacing */
    letter-spacing: 0.3px;
}

.credits a {
    color: #f3d67f;
    font-weight: 600;  /* Slightly bolder */
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 8px;  /* Increased spacing */
    position: relative;
    padding: 0 2px;
}

.credits a:hover {
    color: #ffffff;
    text-decoration: none;
}

.credits a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.credits a:hover::after {
    width: 100%;
}

/* Optional: Add a subtle animation to the footer */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-bottom {
    animation: fadeInUp 0.8s ease-out forwards;
}






















/* Scoped styles for amenities slider */
        .amenities-slider-section {
            --primary-color: #f00000;
            --accent-color: #fdf10a;
            --text-color: #333333;
            --box-shadow: rgba(0, 0, 0, 0.1);
            --overlay-dark: rgba(0, 0, 0, 0.7);
            --hover-color: #fdf10a;
            
            width: 100%;
            overflow: hidden;
            position: relative;
            margin: 40px 0;
        }

        .amenities-slider-section .amenities-slider-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: bold;
            color: #f00000;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .amenities-slider-section .amenities-slider-container {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .amenities-slider-section .amenities-slider {
            display: flex;
            gap: 30px;
            width: max-content;
            animation: scrollMarquee 30s linear infinite;
            padding: 20px 0;
        }

        .amenities-slider-section .amenities-slide {
            flex: 0 0 250px;
            background: white;
            border: 1px solid var(--box-shadow);
            border-radius: 10px;
            box-shadow: 0 4px 10px var(--box-shadow);
            text-align: center;
            padding: 25px 20px;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            cursor: pointer;
        }

        .amenities-slider-section .amenities-slide:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .amenities-slider-section .icon-wrapper {
            width: 80px;
            height: 80px;
            margin: 0 auto 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: var(--accent-color);
            border-radius: 50%;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            border: 2px solid white;
        }

        .amenities-slider-section .icon-wrapper i {
            font-size: 2rem;
            color: white;
        }

        .amenities-slider-section .amenities-slide p {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--text-color);
            margin: 10px 0 0;
        }

        .amenities-slider-section .amenities-info-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay-dark);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .amenities-slider-section .amenities-info-overlay.active {
            display: flex;
        }

        .amenities-slider-section .info-content {
            background: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            width: 90%;
            max-width: 500px;
            box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
            position: relative;
        }

        .amenities-slider-section .close-btn {
            background: var(--primary-color);
            border: none;
            color: #fff;
            font-size: 1.5rem;
            position: absolute;
            top: 15px;
            right: 15px;
            padding: 8px;
            border-radius: 50%;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .amenities-slider-section .close-btn:hover {
            background: var(--hover-color);
        }

        .amenities-slider-section .info-title {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .amenities-slider-section .info-details {
            font-size: 1rem;
            color: var(--text-color);
            line-height: 1.6;
        }

        @keyframes scrollMarquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @media (max-width: 1200px) {
            .amenities-slider-section .amenities-slide {
                flex: 0 0 220px;
            }
        }

        @media (max-width: 768px) {
            .amenities-slider-section {
                padding: 40px 0;
            }

            .amenities-slider-section .amenities-slider-title {
                font-size: 2rem;
                padding: 0 20px;
            }

            .amenities-slider-section .amenities-slide {
                flex: 0 0 200px;
                padding: 20px 15px;
            }

            .amenities-slider-section .icon-wrapper {
                width: 60px;
                height: 60px;
            }

            .amenities-slider-section .icon-wrapper i {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .amenities-slider-section .amenities-slider-title {
                font-size: 1.8rem;
            }
            
            .amenities-slider-section .amenities-slide {
                flex: 0 0 180px;
                padding: 15px 10px;
            }
            
            .amenities-slider-section .amenities-slide p {
                font-size: 1rem;
            }
        }


        /* Scoped styles for premium amenities */
    .amenities-section-mod {
        --primary-color: #f00000;
        --secondary-color: #fdf10a;
        --accent-color: #f00000;
        --text-color: #333;
        --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        --transition: all 0.3s ease;
        
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .amenities-section-mod * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .amenities-section-mod .section-container {
        margin: 0 auto;
        padding: 0 20px;
    }

    .amenities-section-mod .section-title {
        text-align: center;
        font-size: 3rem;
        color: #f00000;
        position: relative;
        display: inline-block;
        left: 50%;
        transform: translateX(-50%);
    }

    .amenities-section-mod .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        border-radius: 2px;
    }

    .amenities-section-mod .amenity-container {
        display: flex;
        align-items: stretch;
        margin-bottom: 50px;
        gap: 40px;
        position: relative;
        min-height: 500px;
    }

    .amenities-section-mod .text-container {
        flex: 1;
        padding: 50px;
        border-radius: 15px;
        box-shadow: var(--shadow);
        transition: var(--transition);
        z-index: 2;
        flex-direction: column;
        justify-content: center;
    }

    .amenities-section-mod .text-container:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .amenities-section-mod .image-container {
        flex: 1;
        min-height: 500px;
        border-radius: 15px;
        box-shadow: var(--shadow);
        position: relative;
        overflow: hidden;
    }

    .amenities-section-mod .image-scroller {
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .amenities-section-mod .amenity-title {
        font-size: 2rem;
        margin-bottom: 25px;
        color: #f00000;
        position: relative;
        padding-bottom: 15px;
    }

    .amenities-section-mod .amenity-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: var(--secondary-color);
    }

    .amenities-section-mod .amenity-list {
        list-style-type: none;
    }

    .amenities-section-mod .amenity-list li {
        padding: 12px 0;
        font-size: 1.2rem;
        color: var(--text-color);
        position: relative;
        padding-left: 40px;
        transition: var(--transition);
    }

    .amenities-section-mod .amenity-list li::before {
        content: "•";
        position: absolute;
        left: 15px;
        color: var(--secondary-color);
        font-size: 1.5rem;
    }

    @media (max-width: 1200px) {
        .amenities-section-mod .amenity-container {
            gap: 30px;
            min-height: 450px;
        }
    }

    @media (max-width: 768px) {
        .amenities-section-mod .amenity-container {
            flex-direction: column;
            min-height: 800px;
        }
        
        .amenities-section-mod .image-container,
        .amenities-section-mod .text-container {
            width: 100%;
            min-height: 400px;
        }
    }



    /* About Section Styling */
.about-section {
    background: #FFFFFF;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* Background Sketch Illustration */
.about-section::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    filter: grayscale(100%);
    z-index: 0;
}

/* Container */
.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Left Content */
.about-text {
    flex: 1;
    max-width: 1200px;
}

/* Subtitle */
.about-subtitle {
    font-size: 1.3rem;
    color: #f00000;
    margin-bottom: 10px;
}

/* Title */
.about-title {
    font-size: 2.8rem;
    font-weight: 400;
    color: #f00000;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Highlighted Text in Title */
.about-title span {
    color: #fdf10a;
}

/* Description */
.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

/* Additional Details */
.about-details {
    font-size: 1.1rem;
    color: #f00000;
    line-height: 1.7;
    margin-bottom: 20px;
}














/* Scoped styles for the Highlighted Amenities Carousel */
        #tour-categories-section .tour-categories-carousel-item {
            transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.7s ease-out;
            will-change: transform, opacity;
            position: absolute;
            top: 50%;
            left: 50%;
            transform-origin: center center;
            display: flex;
            flex-direction: column;
        }
        
        #tour-categories-section .tour-categories-carousel-container {
            perspective: 1500px; /* Gives 3D depth effect */
            height: 100%;
            width: 100%;
        }
        
        #tour-categories-section .tour-categories-carousel {
            height: 100%;
            width: 100%;
        }
        
        #tour-categories-section .tour-categories-carousel-wrapper {
            margin: 0 auto;
        }
        
        /* Text styles for carousel items */
        #tour-categories-section .tour-categories-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #000;
            margin-top: 1rem;
            text-align: center;
        }
        
        #tour-categories-section .tour-categories-readmore {
            font-size: 1rem;
            color: #1f8db9; /* Coordinated color */
            font-weight: 600;
            text-align: center;
            margin-top: 0.5rem;
        }
        
        /* Image styling for carousel items */
        #tour-categories-section .tour-categories-image {
            border-radius: 1rem;
            object-fit: cover;
            width: 100%;
            height: 280px;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
            border: 2px solid rgba(255,255,255,0.2);
        }
        
        /* Text container for carousel items */
        #tour-categories-section .tour-categories-text-container {
            padding: 0 10px;
            text-align: center;
            margin-top: 10px;
        }

        .tem-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .tem-nola-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .tem-nola-title {
            font-size: 2.5rem;
            color: #f00000;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .tem-nola-subtitle {
            font-size: 1.1rem;
            color: #666;
        }

        .tem-nola-category-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap; /* Allows tabs to wrap on smaller screens */
        }

        .tem-nola-tab {
            background-color: #eee;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            color: #555;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .tem-nola-tab:hover {
            background-color: #ddd;
        }

        .tem-nola-tab.active {
            background-color: #fdf10a; /* Coordinated with carousel dots */
            color: black;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .tem-nola-tab i {
            font-size: 1.2rem;
        }

        .tem-nola-category-content {
            display: none;
            animation: fadeIn 0.5s ease-out; /* Fade-in effect when changing tabs */
        }

        .tem-nola-category-content.active {
            display: block;
        }

        .tem-nola-hero-image {
            width: 100%;
            height: 300px;
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Placeholder images for attraction sections (can be replaced with actual images) */
        .park-image { background-image: url('https://via.placeholder.com/1200x300?text=New+Orleans+Parks'); }
        .historic-image { background-image: url('https://via.placeholder.com/1200x300?text=Historic+New+Orleans'); }
        .museum-image { background-image: url('https://via.placeholder.com/1200x300?text=New+Orleans+Museums'); }
        /* Add other hero image classes if more categories are added */

        .tem-nola-attraction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .tem-nola-attraction-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: center; /* Center content vertically */
            padding: 20px; /* Add padding for content */
            height: 100%; /* Ensures all cards in a row are the same height */
        }

        .tem-nola-attraction-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }

        /* Image removed for individual attractions */
        /* .tem-nola-attraction-image { ... } */

        .tem-nola-attraction-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #333;
            margin: 0 0 10px; /* Adjusted margin as no image above */
            text-align: center;
        }

        .tem-nola-attraction-description {
            font-size: 0.95rem;
            color: #666;
            margin: 0;
            text-align: center;
            flex-grow: 1; /* Pushes content down for consistent heights */
        }

        /* Keyframe animation for content fade-in */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .tem-nola-title {
                font-size: 2rem;
            }
            .tem-nola-category-tabs {
                gap: 10px;
            }
            .tem-nola-tab {
                padding: 10px 20px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .tem-nola-title {
                font-size: 1.8rem;
            }
            .tem-nola-tab {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
            .tem-nola-attraction-grid {
                grid-template-columns: 1fr; /* Stack items vertically on small screens */
            }
        }



        .location-container {
  width: 100%;
  max-width: 100%;
  padding: 40px 0;
  background: white;
}

.location-title {
  text-align: center;
  color: #f00000;
  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: #014886;
}

.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(1, 72, 134, 0.1);
  border: 1px solid rgba(1, 72, 134, 0.1);
}

.coordinates-box h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #f00000;
  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: #fdf10a;
  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(1, 72, 134, 0.1);
  border: 1px solid rgba(1, 72, 134, 0.1);
}

.directions-form label {
  font-weight: 600;
  color: #f00000;
  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: #014886;
  box-shadow: 0 0 0 3px rgba(1, 72, 134, 0.2);
}

.directions-form button {
  background: #f00000;
  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: #fdf10a;
  transform: translateY(-2px);
}

.location-map {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(1, 72, 134, 0.1);
  border: 1px solid rgba(1, 72, 134, 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: #f00000;
            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: #feb226;
            font-size: 1.5rem;
            margin-right: 15px;
            margin-top: 3px;
        }
        
        .info-text h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--hampton-blue);
        }
        
        .info-text p, .info-text a {
            font-size: 1.1rem;
            color: #000000;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .info-text a:hover {
            color: var(--hampton-blue);
        }
        
        .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;
            }
        }


.nav-container {
        display: flex;
        justify-content: center;
        padding: 20px;
    }
    
    .nav-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 1000px;
    }
    
    .nav-card {
        background: white;
        border-radius: 12px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        border: 2px solid #f00000;
        position: relative;
        overflow: hidden;
    }
    
    .nav-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: #fdf10a;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }
    
    .nav-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }
    
    .nav-card:hover::before {
        transform: scaleX(1);
    }
    
    .nav-icon {
        font-size: 28px;
        margin-bottom: 15px;
        color: #f00000;
        transition: all 0.3s ease;
    }
    
    .nav-card:hover .nav-icon {
        color: #fdf10a;
        transform: scale(1.1);
    }
    
    .nav-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #f00000;
        transition: all 0.3s ease;
    }
    
    .nav-desc {
        font-size: 14px;
        color: #555;
        transition: all 0.3s ease;
    }
    
    .nav-card:hover .nav-title {
        color: #fdf10a;
    }
    
    .nav-card:hover .nav-desc {
        color: #f00000;
    }
    
    .nav-link {
        text-decoration: none;
        display: block;
        height: 100%;
    }
    
    @media (max-width: 900px) {
        .nav-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 500px) {
        .nav-grid {
            grid-template-columns: 1fr;
        }
    }



















/* Base styles for the container */
.attractions-container {
  position: relative; /* Ensures content stays above background */
  z-index: 1;
  margin: 0 auto; /* Center the container on larger screens */
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns for desktop */
  gap: 40px;
  padding: 20px; /* Use 20px uniformly for all sides for general container padding */
  max-width: 1200px; /* Optional: constrain overall container width on very large screens */
}

/* Base styles for each category card */
.category {
  border-radius: 16px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden; /* Ensures child elements (like image borders) respect border-radius */
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  position: relative;
  background-color: #fff; /* White background for cards */
}

/* Hover effect for category cards */
.category:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

/* Specific background images with overlay for different categories (these implicitly provide image height) */
.transport-image {
  height: 200px; /* Define image/background section height */
  width: 100%;
  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;
  border-bottom: 4px solid #fcb100;
}

.airport-image {
  height: 200px; /* Define image/background section height */
  width: 100%;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
              url('images/airport.jpg'); /* Assuming this path is correct relative to your CSS file */
  background-size: cover;
  background-position: center;
  border-bottom: 4px solid #fcb100;
}

.restaurant-image {
  height: 200px; /* Define image/background section height */
  width: 100%;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
              url('images/restaurent.jpg'); /* Assuming this path is correct relative to your CSS file */
  background-size: cover;
  background-position: center;
  border-bottom: 4px solid #fcb100;
}

/* If you have a .cafe-image, define it similarly */
/*
.cafe-image {
  height: 200px;
  width: 100%;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
              url('images/cafe.jpg'); // Adjust image path
  background-size: cover;
  background-position: center;
  border-bottom: 4px solid #fcb100;
}
*/

/* Header section of each category */
.category-header {
  padding: 20px;
  background-color: #f00000; /* Red background for headers */
  color: white;
  position: relative;
  margin-top: -7px; /* Pulls header slightly up over the image border */
}

/* Title inside the category header */
.category-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  z-index: 2; /* Ensures text is above any potential pseudo-elements */
  margin: 0; /* Remove default margin from h2 */
}

/* Decorative line under category header (can be used for design, though your given rules made it transparent) */
.category-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  /* If you want a line here, uncomment and set background-color, e.g., background-color: #d00000; */
}

/* Styling for the list of attractions */
.attraction-list {
  padding: 20px;
}

/* Individual attraction item styling */
.attraction {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee; /* Separator between attractions */
}

/* No bottom border for the last attraction */
.attraction:last-child {
  border-bottom: none;
}

/* Information section within each attraction item */
.attraction-info {
  flex: 1; /* Allows it to grow and take available space */
  margin-right: 15px; /* Spacing before the distance badge */
}

/* Name of the attraction */
.attraction-name {
  font-weight: 500;
  margin-bottom: 4px;
  color: #000;
}

/* Type of the attraction */
.attraction-type {
  font-size: 0.85rem;
  color: Black;
}

/* Distance badge styling */
.attraction-distance {
  background-color: #fdf10a; /* Yellow background for distance */
  color: black; /* White text for distance */
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 70px;
  text-align: center;
  transition: all 0.3s ease; /* Smooth transition for hover effect */
  flex-shrink: 0; /* Prevents the distance from shrinking on smaller screens */
}

/* Hover effect for distance badge within an attraction item */
.attraction:hover .attraction-distance {
  background-color: #f00000; /* Red background on hover */
  transform: scale(1.05); /* Slightly enlarges on hover */
}

/* Media query for mobile and tablet devices */
@media (max-width: 900px) {
  /* Stacks attraction cards into a single column on smaller screens */
  .attractions-container {
    grid-template-columns: 1fr; /* Single column */
    padding: 20px; /* Ensure padding is consistent */
  }

  /* Ensures each card has a maximum width, is centered, and crucially, has a minimum height */
  .category {
    max-width: 500px; /* Constrains card width to a max of 500px */
    margin: 0 auto; /* Centers the card horizontally if space allows */
    min-height: 450px; /* NEW: Sets a minimum height for the card on mobile/tablet. ADJUST THIS VALUE! */
                       /* This helps ensure cards with less content don't look disproportionately small. */
                       /* Cards will still grow taller if content exceeds this min-height. */
  }
}





   /* Scoped styles with tem- prefix */
.nola-attractions-section {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
}

.nola-attractions-section .tem-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nola-attractions-section .tem-nola-header {
    text-align: center;
    margin-bottom: 40px;
}

.nola-attractions-section .tem-nola-title {
    font-size: 2.5rem;
    color: #f00000;
    margin-bottom: 10px;
}

.nola-attractions-section .tem-nola-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.nola-attractions-section .tem-nola-category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.nola-attractions-section .tem-nola-tab {
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: #f00000;
}

.nola-attractions-section .tem-nola-tab.active {
    background: #fdf10a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.nola-attractions-section .tem-nola-category-content {
    display: none;
    animation: temFadeIn 0.5s ease forwards;
}

@keyframes temFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.nola-attractions-section .tem-nola-category-content.active {
    display: block;
}

.nola-attractions-section .tem-nola-hero-image {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    margin-bottom: 30px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.nola-attractions-section .parks-image {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
                    url('images/garden.jpg');
}

.nola-attractions-section .recreation-image {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),  
                    url('images/stadium.jpg');
}

.nola-attractions-section .landmarks-image {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
                    url('images/business.jpg');
}

.nola-attractions-section .natural-image {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
                    url('images/river.jpg');
}
    
.nola-attractions-section .tem-nola-attraction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.nola-attractions-section .tem-nola-attraction-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #f00000;
}

.nola-attractions-section .tem-nola-attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-left-color: #fdf10a;
}

.nola-attractions-section .tem-nola-attraction-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.nola-attractions-section .tem-nola-attraction-description {
    color: #5a5a72;
    line-height: 1.5;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .nola-attractions-section .tem-nola-category-tabs {
        gap: 10px;
    }
    
    .nola-attractions-section .tem-nola-tab {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .nola-attractions-section .tem-nola-hero-image {
        height: 250px;
    }
    
    .nola-attractions-section .tem-nola-attraction-grid {
        grid-template-columns: 1fr;
    }
}



/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    /* --- CHANGE: Moved from right to left --- */
    left: 30px; 
    width: 50px;
    height: 50px;
    background-color: #102f64;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    /* Hidden by default */
    visibility: hidden;
    opacity: 0;
}

.back-to-top:hover {
    background-color: #fab618; /* Added a slightly darker hover color for better feedback */
    transform: translateY(-5px);
}

.back-to-top i {
    color: White;
}

/* This class is added by JavaScript when the user scrolls */
.back-to-top.visible {
    visibility: visible;
    opacity: 1;
}



/* ==================================================================== */
/* == UNIVERSAL ICON FIX FOR FONT AWESOME (Works on i, em, and span) == */
/* ==================================================================== */

/*
  PART 1: RESET TAG STYLES
  Yeh code 'em', 'i', aur 'span' teeno tags ko select karke,
  unke design ko ekdum clear aur normal kar dega taaki icons theek se dikhein.
*/
em[class*="fa-"],
i[class*="fa-"],
span[class*="fa-"] {
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
}


/*
  PART 2: APPLY FONT AWESOME STYLES
  Yeh rules icon classes ko font assign karenge chahe tag koi sa bhi ho.
*/

/* Solid Icons (Example: fas fa-home) */
.fa,
.fas {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free';
    font-weight: 900 !important;
}

/* Regular Icons (Example: far fa-clock) */
.far {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free';
    font-weight: 400 !important;
}

/* Brand Icons (Example: fab fa-facebook) */
.fab {
    font-family: 'Font Awesome 6 Brands', 'Font Awesome 5 Brands';
    font-weight: 400 !important;
}