/* ---------------------------------- */
/* ---      GLOBAL STYLES         --- */
/* ---------------------------------- */

/* Universal Reset and Base Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    /* A neutral base font stack */
    font-family: 'Montserrat', sans-serif; /* MODIFIED: Paragraph Font */
    background-color: #f9fafb;
    color: #333;
    line-height: 1.6;
    
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ---------------------------------- */
/* ---    TOURM HEADER STYLES     --- */
/* ---------------------------------- */


/* ===================================== */
/* ---   GLOBAL & RESET STYLES       --- */
/* ===================================== */

/* --- CRITICAL FIX FOR STICKY HEADER --- */
/* This ensures no parent element is blocking the 'position: sticky' behavior. */
html, body {
    overflow-x: clip; /* Prevents horizontal scroll without breaking sticky positioning */
}

/* Ensure there isn't a wrapper div causing the problem */
/* If you have a main wrapper like #root or .app, ensure it does NOT have overflow:hidden */
#root, #__next, .app-wrapper {
    overflow: visible !important; /* Use with caution, but can override framework defaults */
}

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif; /* MODIFIED: Paragraph Font */
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    cursor: pointer;
    background-color: transparent;
    font-family: inherit;
}

ul {
    list-style: none;
}


/* ===================================== */
/* ---      TOURM HEADER STYLES      --- */
/* ===================================== */

/* Top Bar - Mobile First */
.top-bar {
    display: flex;
    flex-direction: column; /* Stack elements vertically on small screens */
    align-items: center;    /* Center the stacked elements */
    text-align: center;     /* IMPORTANT: Centers text for elements like the long address */
    gap: 12px;
    width: 100%;
    background-color: white;
    border-bottom: 1px solid #f1f5f9;
    padding: 16px;
    font-size: 14px;
    color: #4b5563;
}

/* Content Sections within Top Bar */
.contact-info, .address-info, .social-icons {
    display: flex;
    align-items: center;
    justify-content: center; /* Center content within sections by default for mobile */
    gap: 8px;
    font-size: 16px;
}

.social-icons {
    gap: 20px;
}

.social-icons a {
    color: #003c7e;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #FFD369;
    transform: scale(1.1);
}

.phone-icon, .map-icon {
    color: #003c7e;
    font-size: 15px;
}

/* Desktop Layout - Applied on screens 1024px and wider */
@media (min-width: 1024px) {
    .top-bar {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        align-items: center;
        padding: 12px 32px;
        gap: 0;
        text-align: left; /* Reset text-align for desktop; items will control their own alignment */
    }

    /* Adjust justification for desktop's three-column layout */
    .contact-info {
        justify-content: flex-start; /* Align contact to the left */
    }

    .address-info {
        justify-content: center; /* Keep address centered */
    }

    .social-icons {
        justify-content: flex-end; /* Align social icons to the right */
    }
}

/* Main Header */
.main-header {
    position: sticky; /* This is now guaranteed to work */
    top: 0;
    width: 100%;
    z-index: 99999;
    transition: all 0.3s ease;
}

.header-scrolled {
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 72px;
    position: relative;
}

@media (min-width: 1024px) {
    .header-container { height: 96px; }
}

/* Header Section Styles */
.logo-section, .cta-section {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    color: white;
    z-index: 20;
    background: #003c7e;
    overflow: hidden;
}

/* Padding for Logo and CTA Sections */
.logo-section { padding-left: 16px; padding-right: 10px; }
.cta-section { padding-right: 16px; padding-left: 48px; }

/* Responsive padding adjustments for desktop screens */
@media (min-width: 1024px) {
    .logo-section { padding-left: 40px; padding-right: 64px; }
    .cta-section { padding-right: 40px; padding-left: 64px; }
}

/* Logo container and icon styles */
.logo-container { display: flex; align-items: center; gap: 12px; }
.logo-icon { position: relative; }

/* Style for the new logo image (with responsive sizing) */
.logo-image {
    height: 60px;     /* A larger default height for mobile screens */
    width: auto;      /* Ensures the width scales proportionally */
    display: block;   /* Prevents extra space below the image */
    transition: height 0.3s ease; /* Adds a smooth transition effect */
}

/* For tablets and larger screens */
@media (min-width: 768px) {
    .logo-image {
        height: 70px; /* Slightly larger for tablets */
    }
}

/* For desktop screens (matches your existing 1024px breakpoint) */
@media (min-width: 1024px) {
    .logo-image {
        height: 80px; /* The largest size for desktops */
    }
}

/* Text next to the logo */
.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.5px;
}
.logo-text p { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; margin-top: 4px; font-weight: 700; opacity: 0.8; }

/* Desktop Navigation */
.desktop-nav { display: none; }

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
        flex-grow: 1;
        align-items: center;
        justify-content: center;
        padding: 0 16px;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(8px);
    }
}

.nav-list { 
    display: flex; 
    align-items: center; 
    gap: 30px; /* MODIFIED: Increased gap further for more breathing room */
    height: 100%; 
}
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }

.nav-link {
    display: flex; align-items: center; gap: 6px; /* MODIFIED: slightly more gap */
    font-size: 18px; /* MODIFIED: Increased font size significantly */
    font-weight: 700; transition: color 0.3s ease;
    position: relative; 
    padding: 16px 12px; /* MODIFIED: Increased padding for a much larger click area */
    color: #1f2937;
}

.nav-link:hover, .nav-link.active { color: #003c7e; }

.nav-item .nav-link.active .nav-underline {
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 2px;
    background-color: #003c7e;
}

.dropdown-arrow { 
    font-size: 16px; /* MODIFIED: Increased icon size to match new text size */
    transition: transform 0.3s ease; 
}
.nav-item:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute; top: 100%; left: 0; width: 256px;
    background-color: white; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 0 0 16px 16px; border-top: 4px solid #003c7e;
    opacity: 0; transform: translateY(16px);
    pointer-events: none; transition: all 0.3s ease;
    overflow: hidden; z-index: 100;
}

.nav-item:hover .dropdown-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.dropdown-item {
    display: block; padding: 16px 24px; font-size: 14px;
    font-weight: 600; color: #374151; border-bottom: 1px solid #f9fafb;
    transition: all 0.3s ease;
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background-color: #f9fafb; color: #003c7e; }

/* CTA Button */
.cta-button {
    display: flex; align-items: center; gap: 8px; background-color: #FFD369;
    color: #003c7e; padding: 16px 32px; border-radius: 9999px; font-weight: 800;
    font-size: 18px; transition: all 0.3s ease;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    margin-left: -40px;
}
.cta-button:hover { background-color: white; transform: scale(1.05); }
.arrow-icon { transition: transform 0.3s ease; }
.cta-button:hover .arrow-icon { transform: translateX(4px); }

/* Mobile Menu */
.mobile-menu-toggle {
    flex-grow: 1; display: flex;
    align-items: center; justify-content: center;
}
@media (min-width: 1024px) {
    .mobile-menu-toggle { display: none; }
}

.hamburger-button {
    padding: 12px; border-radius: 16px; background-color: #f9fafb;
    border: 1px solid #e5e7eb; box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    color: #003c7e; transition: transform 0.2s ease;
}
.hamburger-button:active { transform: scale(0.95); }
.hamburger-icon {
    width: 24px; height: 20px; position: relative;
    display: flex; flex-direction: column; justify-content: space-between;
}
.hamburger-line { display: block; height: 2px; background-color: currentColor; border-radius: 1px; }
.hamburger-line.middle { width: 16px; margin: 0 auto; }

/* Mobile Overlay & Menu Panel */
.mobile-menu-overlay {
    position: fixed; inset: 0; background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px); z-index: 60;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed; top: 0; right: 0; width: 90%; max-width: 400px;
    height: 100%; background-color: white; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 99999; transform: translateX(100%); transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex; flex-direction: column;
}
.mobile-menu.active { transform: translateX(0); }

.mobile-menu-header {
    padding: 24px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9fafb;
}
.mobile-logo { display: flex; align-items: center; gap: 12px; }
.mobile-logo-icon { font-size: 24px; color: #003c7e; }
.mobile-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 800;
    color: #1a333a;
}

.close-menu-button {
    width: 44px; height: 44px; border-radius: 50%;
    background-color: white; border: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    display: flex; align-items: center; justify-content: center;
    color: #1f2937; transition: background-color 0.3s ease;
}
.close-menu-button:hover { background-color: #f9fafb; }
.close-icon { font-size: 20px; }

.mobile-menu-content { flex-grow: 1; overflow-y: auto; padding: 24px; }
.mobile-nav-item { padding: 4px 0; }

.mobile-nav-link, .mobile-dropdown-toggle {
    display: block; width: 100%; text-align: left;
    padding: 16px 0; font-size: 18px; font-weight: 700;
    border-bottom: 1px solid #f9fafb; color: #111827;
}
.mobile-dropdown-toggle { display: flex; justify-content: space-between; align-items: center;}

.mobile-nav-link:hover, .mobile-nav-link.active, .mobile-dropdown-toggle:hover { color: #003c7e; }

.mobile-dropdown-icon { font-size: 20px; transition: transform 0.3s ease; color: #003c7e; }
.mobile-dropdown-icon.rotated { transform: rotate(180deg); }

.mobile-dropdown-menu {
    max-height: 0; overflow: hidden; background-color: #f9fafb;
    border-radius: 16px; margin-top: 8px;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-dropdown-menu.active { max-height: 500px; }
.mobile-dropdown-item {
    display: block; padding: 14px 20px; color: #374151; font-weight: 600;
    border-bottom: 1px solid white; transition: color 0.3s ease;
}
.mobile-dropdown-item:last-child { border-bottom: none; }
.mobile-dropdown-item:hover { color: #003c7e; }

.mobile-social-section { margin-top: 48px; }
.mobile-social-title {
    font-size: 10px; text-transform: uppercase; letter-spacing: 3px;
    color: #9ca3af; font-weight: 800; margin-bottom: 20px;
}
.mobile-social-icons { display: flex; gap: 16px; }
.mobile-social-icon {
    width: 44px; height: 44px; border-radius: 16px;
    border: 1px solid #f1f5f9; display: flex;
    align-items: center; justify-content: center;
    color: #6b7280; transition: all 0.3s ease;
}
.mobile-social-icon:hover { background-color: #003c7e; color: white; }

.mobile-menu-footer { padding: 24px; background-color: white; border-top: 1px solid #f1f5f9; }
.mobile-cta-button {
    width: 100%; display: flex; justify-content: center;
    align-items: center; gap: 12px; background-color: #003c7e; color: white;
    padding: 16px; border-radius: 16px; font-weight: 800; font-size: 16px;
    box-shadow: 0 20px 25px -5px rgba(26, 178, 209, 0.3);
    transition: background-color 0.3s ease;
}
.mobile-cta-button:hover { background-color: #159eb9; }

/* ---------------------------------- */
/* ---  DIAMANT SLIDER STYLES     --- */
/* ---------------------------------- */

#slider-section {
    width: 100%;
    min-height: 100vh;
    background: #1a1a1a;
    position: relative;
}

.slider-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #1a1a1a;
}

.slider-container .slides { position: absolute; inset: 0; z-index: 1; }
.slider-container .slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transform: scale(1.1);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}
.slider-container .slide.active { opacity: 1; transform: scale(1); }
.slider-container .overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.4); z-index: 3; }

.slider-container .content {
    position: relative; z-index: 3; display: flex;
    flex-direction: column; align-items: center;
    justify-content: center; text-align: center;
    height: 100%; padding: 2rem;
    animation: fadeInContent 1s ease-in-out;
}
@keyframes fadeInContent {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slider-container .subtitle {
    font-family: 'Montserrat', sans-serif; /* MODIFIED: Paragraph Font */
    font-size: 0.9rem;
    font-weight: 300;
    color: #FFD369; letter-spacing: 1px; margin-bottom: 2rem;
}
.slider-container .title {
    font-family: 'Montserrat', sans-serif; /* MODIFIED: Title Font */
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
    color: #ffffff;
}

.slider-container .separator {
    width: 150px; margin: 2rem 0; display: flex;
    align-items: center; justify-content: center;
}
.slider-container .separator::before,
.slider-container .separator::after { content: ''; flex: 1; height: 1px; background: rgba(201, 169, 105, 0.5); }
.slider-container .diamond {
    width: 16px; height: 16px; border: 1px solid #c9a969;
    transform: rotate(45deg); flex-shrink: 0; margin: 0 15px;
}
.slider-container .cta-button {
    font-family: 'Montserrat', sans-serif; /* MODIFIED: Paragraph Font */
    font-size: 0.75rem;
    margin-left: 7px;
    letter-spacing: 2px; color:#FFD369; background: #003c7e;
    border: 1px solid rgba(255, 255, 255, 0.8); padding: 0.8rem 2rem;
    text-transform: uppercase; transition: all 0.3s ease;
}
.slider-container .cta-button:hover { background: #ffffff; color: #000; }
.slider-container .cta-button::after {
    content: ''; position: absolute; inset: 4px;
    border: 1px dotted rgba(255, 255, 255, 0.4); pointer-events: none;
}
.slider-container .navigation {
    position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%);
    display: flex; justify-content: space-between; z-index: 4; pointer-events: none;
}

.slider-container .nav-wrapper {
    width: 110px; height: 180px; display: flex; align-items: center;
    pointer-events: all; position: relative;
}
.slider-container .nav-wrapper::before {
    content: ''; position: absolute; top: 0; height: 100%;
    width: calc(100% - 35px); background-color: #FFD369;
}
.slider-container .prev-wrapper { justify-content: flex-end; }
.slider-container .prev-wrapper::before {
    left: 0; clip-path: path('M50 0 H0 V180 H50 C 90 140, 90 120, 50 90 C 90 60, 90 40, 50 0 Z');
}
.slider-container .next-wrapper { justify-content: flex-start; }
.slider-container .next-wrapper::before {
    right: 0; clip-path: path('M25 0 H75 V180 H25 C -15 140, -15 120, 25 90 C -15 60, -15 40, 25 0 Z');
}

.slider-container .nav-btn {
    width: 70px; height: 70px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease; background-color: #2a2a2e; color: #c9a969;
    position: relative; z-index: 2;
}
.slider-container .nav-btn::after {
    content: ''; position: absolute; inset: -6px; border-radius: 50%;
    background: #003c7e; z-index: -1;
}
.slider-container .nav-btn.prev { transform: translateX(50%); }
.slider-container .nav-btn.next { transform: translateX(-50%); }
.slider-container .nav-btn:hover { background-color: #c9a969; color: white; }


/* --- MODIFICATION AREA START --- */
.slider-container .preview-container {
    position: absolute; top: 50%; transform: translateY(-50%) scale(0.8); z-index: 1;
    width: 90px; height: 90px; border-radius: 50%; overflow: hidden;
    border: 2px solid white; opacity: 0; /* Keep it hidden by default */
    transition: opacity 0.3s ease, transform 0.3s ease; 
    pointer-events: none; /* Keep pointer events none by default */
}

/* 
*   FIX: Use :hover on the parent wrapper to show the preview.
*   This makes the preview appear when the user's mouse enters the nav area.
*/
.slider-container .nav-wrapper:hover .preview-container {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.slider-container .prev-wrapper .preview-container { right: -150px; }
.slider-container .next-wrapper .preview-container { left: -150px; }

/* 
*   REMOVED the `.preview-container.visible` rule as it is no longer needed.
*/

.slider-container .preview-image { 
    width: 100%; height: 100%; background-size: cover; background-position: center; 
}
/* --- MODIFICATION AREA END --- */


.slider-container .pagination {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); margin-left: 10px;
    z-index: 4; color: #000; width: 220px; height: 115px;
    display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
    padding-bottom: 1rem; background-color: #FFD369;
    clip-path: path('M0 45C0 45 44 45 110 30C176 45 220 45 220 45V115H0V45Z');
}
.slider-container .dots { display: flex; gap: 15px; align-items: center; }
.slider-container .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background-color: #003c7e; transition: all 0.3s ease;
}
.slider-container .dot.active {
    background-color: black; border: 1px solid black; transform: scale(1.5); position: relative;
}
.slider-container .dot.active::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); width: 4px; height: 4px;
    border-radius: 50%; background-color: #c9a969;
}
@media (max-width: 768px) {
    .slider-container .nav-wrapper { width: 55px; }
    .slider-container .nav-btn { width: 50px; height: 50px; }

    /* This rule correctly hides the preview on screens smaller than 768px */
    .slider-container .preview-container { display: none; }

    .slider-container .nav-wrapper::before {
        clip-path: none; width: calc(100% - 25px);
    }
    .slider-container .prev-wrapper::before { border-top-right-radius: 25px; border-bottom-right-radius: 25px; }
    .slider-container .next-wrapper::before { border-top-left-radius: 25px; border-bottom-left-radius: 25px; }
}

/* ---------------------------------- */
/* ---  OUR COMPANY TILE STYLES   --- */
/* ---------------------------------- */

/* Default style for Desktops (screens wider than 1024px) */
#our-company-section {
    position: relative;
    width: 100vw;
    height: 100dvh; 
    background-color: white;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* Styles for Tablets and Mobile devices (screens 1024px wide or smaller) */
@media (max-width: 1024px) {
    #our-company-section {
        height: auto;
        min-height: 100dvh;
        padding-top: 100px; /* --- CHANGE HERE --- */
        padding-bottom: 80px; /* --- CHANGE HERE --- */
        box-sizing: border-box; 
    }
}


/* ---------------------------------------------------- */
/* --- HEADER/TITLE STYLES (CORRECTED FOR OVERLAP) --- */
/* ---------------------------------------------------- */

/* This wrapper holds the title and subtitle to prevent overlap */
.company-header-group {
    position: absolute;
    top: 3rem; 
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.company-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 7vw, 3rem);
    font-weight: 700;
    color: #003c7e;
    line-height: 1.15;
}

.company-section-subtitle {
    max-width: 650px;
    color: #4b5563;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.6;
}

/* --- Smoke Effect Styles --- */
@keyframes smoke-effect {
  0% { opacity: 0; transform: scale(0.8); filter: blur(10px); text-shadow: 0 0 15px #FFD369, 0 0 25px #FFD369, 0 0 40px #FFD369; }
  50% { filter: blur(5px); text-shadow: 0 0 10px #FFD369, 0 0 15px #FFD369; }
  100% { opacity: 1; transform: scale(1); filter: blur(0); text-shadow: none; }
}
.smoke-effect > span { 
    display: inline-block; opacity: 0; animation-name: smoke-effect; 
    animation-duration: 2s; animation-fill-mode: forwards; 
    animation-timing-function: cubic-bezier(0.1, 0.7, 1.0, 0.1); 
}

/* --- Image Styles --- */
.company-center-visual .company-image { 
    width: 100%; height: 100%; object-fit: cover; border-radius: inherit; 
}


/* --- Tile Clusters --- */
.tile-cluster {
    position: absolute;
    width: clamp(250px, 30vw, 350px);
    height: clamp(250px, 30vw, 350px);
    pointer-events: none;
}
.cluster-top-right { top: -30px; right: -30px; }
.cluster-bottom-left { bottom: -30px; left: -30px; }

.small-tile {
    position: absolute;
    width: 17%;
    height: 17%;
    transform: rotate(45deg);
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    box-shadow: 4px 4px 15px rgba(0,0,0,0.25), inset 1px 1px 2px rgba(255,255,255,0.1);
    border: 0.5px solid rgba(255,255,255,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    pointer-events: auto;
}
.small-tile:hover, .small-tile.active {
    transform: scale(1.15) rotate(45deg);
    box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.3), inset 2px 2px 3px rgba(255, 255, 255, 0.15);
    z-index: 1000 !important;
}

/* --- Tile Positioning --- */
.tile-0 { top: 0; right: 0; opacity: 1.0; z-index: 100; }
.tile-1 { top: 12%; right: 12%; opacity: 0.895; z-index: 84; }
.tile-2 { top: 24%; right: 24%; opacity: 0.79; z-index: 68; }
.tile-5 { top: 12%; right: 0; opacity: 0.9475; z-index: 92; }
.tile-6 { top: 24%; right: 12%; opacity: 0.8425; z-index: 76; }
.tile-9 { top: 0; right: 12%; opacity: 0.9475; z-index: 84; }
.tile-10 { top: 12%; right: 24%; opacity: 0.8425; z-index: 68; }
.tile-13 { top: 24%; right: 0; opacity: 0.895; z-index: 84; }
.tile-14 { top: 36%; right: 12%; opacity: 0.79; z-index: 68; }
.tile-16 { top: 0; right: 24%; opacity: 0.895; z-index: 68; }

.tile-bottom-0 { bottom: 0; left: 0; opacity: 1.0; z-index: 100; }
.tile-bottom-1 { bottom: 12%; left: 12%; opacity: 0.895; z-index: 84; }
.tile-bottom-2 { bottom: 24%; left: 24%; opacity: 0.79; z-index: 68; }
.tile-bottom-5 { bottom: 12%; left: 0; opacity: 0.9475; z-index: 92; }
.tile-bottom-6 { bottom: 24%; left: 12%; opacity: 0.8425; z-index: 76; }
.tile-bottom-9 { bottom: 0; left: 12%; opacity: 0.9475; z-index: 84; }
.tile-bottom-10 { bottom: 12%; left: 24%; opacity: 0.8425; z-index: 68; }
.tile-bottom-13 { bottom: 24%; left: 0; opacity: 0.895; z-index: 84; }
.tile-bottom-14 { bottom: 36%; left: 12%; opacity: 0.79; z-index: 68; }
.tile-bottom-16 { bottom: 0; left: 24%; opacity: 0.895; z-index: 68; }


/* --- Content Area Styles (Refined) --- */
.company-content-area {
    position: relative; 
    z-index: 10; 
    width: 100%; 
    height: 100%;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    padding-top: clamp(15rem, 25vh, 20rem);
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 2rem;
    gap: 1.5rem;
    box-sizing: border-box; 
}

.company-text-container {
    width: 100%; 
    max-width: 32rem;
    text-align: center;
}

.company-text-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.company-text-container p {
    color: #4b5563; 
    font-size: clamp(0.95rem, 2.5vw, 1.1rem); 
    line-height: 1.6;
}

/* Increased width for more impact on mobile/tablet */
.company-center-visual {
    width: clamp(280px, 75vw, 30rem); 
    max-width: 90%; 
    flex-shrink: 0; 
    display: flex;
    align-items: center; 
    justify-content: center;
    aspect-ratio: 1 / 1; 
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px); 
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.company-center-visual svg { 
    width: 50%; height: 50%; color: #1e40af; opacity: 0.7; 
}


/* ------------------------------- */
/* --- Media Query Breakpoints --- */
/* ------------------------------- */

/* Breakpoint for DESKTOP styles */
@media (min-width: 1025px) {
    .company-header-group {
        top: 2rem;
        gap: 1.25rem;
    }

    .company-content-area { 
        flex-direction: row; 
        justify-content: center;
        align-items: center;
        padding-left: 2rem;
        padding-right: 2rem;
        gap: 2rem; 
        margin-top: -80px !important;
    }
    
    .company-text-container { 
        flex: 1; 
        max-width: 450px;
    }

    .company-text-container.left { text-align: right; }
    .company-text-container.right { text-align: left; }
}


/* CONSOLIDATED RULES for TABLET and MOBILE */
@media (max-width: 1024px) {
    .company-header-group {
        top: 5rem; 
    }

    .company-content-area {
        /* This is the key fix: reduces top padding on tablets and mobiles */
        padding-top: clamp(10rem, 20vh, -40px); /* --- CHANGE HERE --- */
        padding-bottom: 1.5rem;
        gap: 1.25rem;
    }

    .company-text-container h2 {
        font-size: clamp(1.2rem, 3.5vw, 1.5rem);
    }
}




/* 1. The main section container. It manages layout and spacing for any content inside it. */
.bw-common-title-section {
    display: flex;
    flex-direction: column; /* Stacks children (heading, subheading) vertically */
    align-items: center;     /* Centers them horizontally */
    justify-content: center; /* Centers the whole block vertically */
    gap: 1.5rem;             /* AUTOMATIC spacing between the heading and subheading */
    padding: 1rem;      /* Gives the entire section breathing room */
    min-height: 10vh;
    text-align: center;      /* Ensures text alignment is centered */
}

/* 2. The main heading style. */
.bw-common-title-heading {
    font-family: 'Playfair Display', serif; /* MODIFIED: Title Font */
    font-size: 2.25rem;
    font-weight: 700;
    color: #003c7e;
}

/* Media query for larger screens */
@media (min-width: 640px) {
    .bw-common-title-heading {
        font-size: 3rem;
    }
}

/* 3. The subheading style. */
.bw-common-title-subheading {
    max-width: 650px;
    width: 90%;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- --- New, Renamed Animation with `bw-` Prefix --- --- */

/* 4. Renamed animation keyframes to avoid any conflicts. */
@keyframes bw-smoke-animation {
  0% {
    opacity: 0;
    transform: scale(0.8);
    filter: blur(10px);
    text-shadow: 0 0 15px #FFD369, 0 0 25px #FFD369, 0 0 40px #FFD369;
  }
  50% {
    filter: blur(5px);
    text-shadow: 0 0 10px #FFD369, 0 0 15px #FFD369;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    text-shadow: none;
  }
}

/* 5. A new trigger class that applies the renamed animation to its child <span> elements. */
/* MODIFIED FOR SLOWER SPEED */
.bw-text-reveal-smoke.animate > span {
  display: inline-block;
  opacity: 0;
  animation-name: bw-smoke-animation;
  
  /* CHANGED: Increased from 2s to 3.5s for a much slower individual letter animation */
  animation-duration: 3.5s; 
  
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.1, 0.7, 1.0, 0.1);
  
  /* CHANGED: Increased the delay multiplier from 0.02s to 0.05s for a slower wave effect */
  animation-delay: calc(0.05s * var(--char-index)); 
}

#app { 
  position: relative; /* New positioning context for absolute elements like bubbles */
  font-family: 'Montserrat', sans-serif; /* MODIFIED: Paragraph Font */
  background-color: #003c7e;
  color: white;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
#app * { margin: 0; padding: 0; box-sizing: border-box; }

/* Bubble Background */
#app #bubbles { position: absolute; top: 0; left: 0; width: 100%; height: 450px; overflow: hidden; z-index: 0; }
#app .bubble { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(4px); }

/* Header Section */
#app .header-section { position: relative; z-index: 10; width: 100%; text-align: center; padding: 80px 20px; background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent); display: flex; flex-direction: column; align-items: center; }
#app .header-line { width: 64px; height: 2px; background: #FFD369; margin: 0 auto 32px; }
#app .subtitle { color: #FFD369; font-size: 12px; font-weight: 700; letter-spacing: 0.5em; margin-bottom: 16px; text-transform: uppercase; font-style: italic; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }

/* Title and Word Animation Styles */
#app .main-title {
    font-family: 'Playfair Display', serif; /* MODIFIED: Title Font */
    color: white;
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
    text-transform: uppercase;
    line-height: 1.1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3em;
}
#app .word-container { position: relative; display: inline-flex; opacity: 0; transform: translateY(20px); animation: app_wordFadeIn 1s forwards; }

/* ISOLATED KEYFRAMES: Renamed to avoid global conflicts */
@keyframes app_wordFadeIn { to { opacity: 1; transform: translateY(0); } }

#app .word-container .char { display: inline-block; opacity: 0; transform: translateY(30px) scale(0.8); animation: app_charFadeUp 0.6s forwards; }
#app .word-container .highlight { color: #FFD369; }

/* ISOLATED KEYFRAMES: Renamed to avoid global conflicts */
@keyframes app_charFadeUp { to { opacity: 1; transform: translateY(0) scale(1); } }

#app .particle-burst { position: absolute; top: 50%; left: 50%; width: 1px; height: 1px; z-index: -1; transform: translate(-50%, -50%); }
#app .title-particle { position: absolute; background-color: rgba(255, 211, 105, 0.7); border-radius: 50%; opacity: 0; animation: app_smokeBurst 0.8s ease-out forwards; }

/* ISOLATED KEYFRAMES: Renamed to avoid global conflicts */
@keyframes app_smokeBurst {
  0% { opacity: 1; transform: scale(0.2) translate(0, 0); }
  100% { opacity: 0; transform: scale(1.8) translate(var(--x-end), var(--y-end)); }
}

#app .book-button { position: relative; padding: 16px 48px; border: 2px solid #FFD369; color: #FFD369; font-size: 14px; font-weight: 900; letter-spacing: 0.3em; text-transform: uppercase; background: transparent; cursor: pointer; transition: all 0.5s ease; }
#app .book-button:hover { background: #FFD369; color: #003c7e; }

/* Carousel Section and Buttons */
#app .carousel-section { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 0 10px; position: relative; z-index: 10; }
#app .carousel-container { position: relative; width: 100%; max-width: 1400px; height: 550px; display: flex; align-items: center; overflow: hidden; }
#app .nav-button { flex-shrink: 0; position: relative; width: 64px; height: 64px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 40; transition: all 0.3s ease; }
#app .nav-button:hover { transform: scale(1.1); background: #FFD369; color: #003c7e; }

/* Slides Container & Cards */
#app .slides-wrapper { display: flex; width: 100%; height: 100%; }
#app .slide { min-width: 100%; display: flex; height: 100%; gap: 24px; }
#app .room-card { position: relative; width: 50%; height: 100%; overflow: hidden; cursor: pointer; background: #002b5a; }
#app .room-card:hover .room-image { transform: scale(1.1); }
#app .room-image { position: absolute; width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 1.5s cubic-bezier(0.33, 1, 0.68, 1); }
#app .room-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 60, 126, 0.5), rgba(0, 0, 0, 0.1), transparent); }
#app .room-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 48px; }
#app .room-title {
    font-family: 'Playfair Display', serif; /* MODIFIED: Title Font */
    color: #FFD369;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Remaining Styles (now scoped) */
#app .room-description { color: rgba(255, 255, 255, 0.95); font-size: 16px; font-weight: 400; margin-bottom: 32px; line-height: 1.6; }
#app .room-features { display: flex; align-items: center; gap: 40px; color: #FFD369; border-top: 1px solid rgba(255, 255, 255, 0.2); padding-top: 32px; }
#app .feature-item { display: flex; align-items: center; gap: 12px; }
#app .feature-text { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; }
#app .progress-container { position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: rgba(255, 255, 255, 0.1); z-index: 20; }
#app .progress-bar { height: 100%; background: #FFD369; transition: width 1s ease; }

/* === MOBILE FIXES === */
@media (max-width: 768px) {
  #app .header-section { 
    padding: 60px 20px 40px; /* Adjusted padding */
  }
  #app .main-title { 
    font-size: 48px; 
    margin-bottom: 32px;
  }
  
  /* Carousel fixes */
  #app .carousel-container {
    height: auto; /* Allow container to fit the stacked cards */
  }
  #app .slide { 
    flex-direction: column; /* Stack cards vertically */
    gap: 16px; /* Add a small gap between stacked cards */
  }
  #app .room-card {
    width: 100%;    /* Make cards take full width */
    height: 450px;  /* Give cards a reasonable fixed height */
  }

  /* Content inside cards */
  #app .room-content { 
    padding: 24px; 
  }
  #app .room-title { 
    font-size: 24px; 
  }
  #app .room-features {
    gap: 24px; /* Reduce gap between feature items */
    flex-wrap: wrap; /* Allow features to wrap if needed */
  }

  /* Navigation button tweaks */
  #app .carousel-section {
    padding: 0; /* Remove side padding on main section */
  }
  #app .nav-button { 
    width: 48px; 
    height: 48px; 
    position: absolute; /* Take buttons out of flow to position them */
    top: 50%;
    transform: translateY(-50%); /* Center vertically */
  }
  #app .nav-button.prev {
    left: 8px; /* Position left button */
  }
  #app .nav-button.next {
    right: 8px; /* Position right button */
  }
  
  /* To use the positioning above, you'll need to add the `prev` and `next` classes to your nav buttons in your HTML. 
     For example: <button class="nav-button prev">...</button> */
}

/* Global Reset - Scoped within the slider section */
        #attraction-slider-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        #attraction-slider-section {
            font-family: 'Montserrat', sans-serif; /* MODIFIED: Paragraph Font */
            background-color: #000;
            overflow-x: hidden;
        }

        /* Using a class for the main container to avoid conflicting with the <main> tag */
        .attraction-slider-main-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background-color: white;
        }

        /* BACKGROUND LAYERS */
        #attraction-slider-section .background-container {
            position: absolute;
            inset: 0;
            display: flex;
            height: 100%;
        }

        #attraction-slider-section .left-background {
            position: relative;
            width: 75%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: background-image 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @media (min-width: 768px) {
            #attraction-slider-section .left-background {
                width: 68%;
            }
        }

        #attraction-slider-section .left-background::after {
            content: '';
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.4);
        }

        #attraction-slider-section .right-background {
            position: relative;
            width: 25%;
            height: 100%;
            background-color: #003c7e;
            overflow: hidden;
        }

        @media (min-width: 768px) {
            #attraction-slider-section .right-background {
                width: 32%;
            }
        }

        #attraction-slider-section .pattern-overlay {
            position: absolute;
            inset: 0;
            pointer-events: none;
            margin-top: 80px;
        }

        #attraction-slider-section .pattern-svg {
            width: 100%;
            height: 100%;
            stroke: #FFD369;
            fill: none;
        }

        /* CARD SLIDER */
        #attraction-slider-section .card-slider-container {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            align-items: center;
            overflow: visible;
            z-index: 20;
        }

        #attraction-slider-section .cards-wrapper {
            display: flex;
            gap: 1rem;
            padding-left: 8%;
            transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
        }

        @media (min-width: 640px) {
            #attraction-slider-section .cards-wrapper {
                gap: 1.5rem;
                padding-left: 12%;
            }
        }

        @media (min-width: 768px) {
            #attraction-slider-section .cards-wrapper {
                gap: 2rem;
                padding-left: 20%;
            }
        }

        @media (min-width: 1024px) {
            #attraction-slider-section .cards-wrapper {
                gap: 2.5rem;
                padding-left: 25%;
            }
        }

        #attraction-slider-section .card {
            position: relative;
            flex-shrink: 0;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            background-size: cover;
            background-position: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @media (min-width: 768px) {
            #attraction-slider-section .card {
                border-radius: 2rem;
            }
        }

        #attraction-slider-section .card.active {
            width: 260px;
            height: 380px;
            z-index: 30;
            opacity: 1;
            transform: scale(1);
        }

        @media (min-width: 640px) {
            #attraction-slider-section .card.active {
                width: 320px;
                height: 450px;
            }
        }

        @media (min-width: 768px) {
            #attraction-slider-section .card.active {
                width: 400px;
                height: 550px;
            }
        }

        #attraction-slider-section .card.inactive {
            width: 160px;
            height: 280px;
            margin-top: auto;
            opacity: 1;
            filter: brightness(0.85);
            transform: scale(0.95) translateY(1rem);
        }

        @media (min-width: 640px) {
            #attraction-slider-section .card.inactive {
                width: 220px;
                height: 350px;
            }
        }

        @media (min-width: 768px) {
            #attraction-slider-section .card.inactive {
                width: 280px;
                height: 400px;
                transform: scale(0.95) translateY(2rem);
            }
        }

        #attraction-slider-section .card.exiting {
            animation: attraction-slider-exitCard 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        #attraction-slider-section .card.entering {
            animation: attraction-slider-enterCard 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            animation-delay: 0s;
        }
        
        @keyframes attraction-slider-exitCard {
            from { transform: translateX(0) scale(1); opacity: 1; }
            to { transform: translateX(-100px) scale(0.9); opacity: 0; }
        }

        @keyframes attraction-slider-enterCard {
            from { transform: translateX(100px) scale(0.9); opacity: 0; }
            to { transform: translateX(0) scale(1); opacity: 1; }
        }

        #attraction-slider-section .card-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
            transition: opacity 0.5s;
        }

        #attraction-slider-section .card-gradient.active { opacity: 1; }
        #attraction-slider-section .card-gradient.inactive { opacity: 0; }

        #attraction-slider-section .card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 1.5rem;
            width: 100%;
            opacity: 0;
            animation: attraction-slider-fadeInUp 0.5s ease-out 0.3s forwards;
        }

        @media (min-width: 768px) {
            #attraction-slider-section .card-content { padding: 3rem; }
        }

        #attraction-slider-section .card-title {
            font-family: 'Playfair Display', serif; /* MODIFIED: Title Font */
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            letter-spacing: 0.05em;
            color: white;
            text-transform: uppercase;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        @media (min-width: 768px) {
            #attraction-slider-section .card-title { font-size: 1.875rem; }
        }

        #attraction-slider-section .card-description {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            line-height: 1.5;
            max-width: 320px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        @media (min-width: 768px) {
            #attraction-slider-section .card-description { font-size: 1rem; }
        }

        #attraction-slider-section .card-button {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.625rem 1.5rem;
            border: 1px solid #003c7e;
            border-radius: 9999px;
            font-size: 0.625rem;
            font-weight: 600;
            color: #003c7e;
            background-color: #FFD369;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @media (min-width: 768px) {
            #attraction-slider-section .card-button {
                font-size: 0.875rem;
                padding: 0.75rem 1.5rem;
            }
        }

        #attraction-slider-section .card-button:hover {
            background-color: #003c7e;
            color: #FFD369;
            border-color: #FFD369;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 60, 126, 0.3);
        }

        #attraction-slider-section .button-arrow {
            font-size: 1rem;
            transition: transform 0.3s;
        }

        @media (min-width: 768px) {
            #attraction-slider-section .button-arrow { font-size: 1.25rem; }
        }

        #attraction-slider-section .card-button:hover .button-arrow { transform: translateX(6px); }

        /* NAVIGATION CONTROLS */
        #attraction-slider-section .navigation-container {
            position: absolute;
            bottom: 4%;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            z-index: 40;
            pointer-events: none;
        }

        #attraction-slider-section .nav-buttons {
            display: flex;
            align-items: center;
            gap: 1rem;
            pointer-events: auto;
        }

        #attraction-slider-section .nav-button {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: white;
            cursor: pointer;
            transition: all 0.2s;
            background: #003c7e;
        }

        @media (min-width: 768px) {
            #attraction-slider-section .nav-button {
                width: 3rem;
                height: 3rem;
            }
        }

        #attraction-slider-section .nav-button:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: #FFD369;
            color: #FFD369;
        }

        #attraction-slider-section .nav-button:active { transform: scale(0.9); }
        #attraction-slider-section .nav-button:disabled { opacity: 0.5; cursor: not-allowed; }

        #attraction-slider-section .nav-button svg {
            width: 1rem;
            height: 1rem;
        }

        @media (min-width: 768px) {
            #attraction-slider-section .nav-button svg {
                width: 1.25rem;
                height: 1.25rem;
            }
        }
        
        /* Renamed and Scoped Animation */
        @keyframes attraction-slider-fadeInUp {
            from { opacity: 0; transform: translateY(1.5rem); }
            to { opacity: 1; transform: translateY(0); }
        }


        /*
**********************************************************
* START: Styles for Amenities Section Background
**********************************************************
*/
#amenities {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
    z-index: 1;
}

.amenities-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

#amenities .section-title {
    text-align: center;
}

/* Using the new colors for the title gradient */
#amenities .section-title h2 {
    font-family: 'Playfair Display', serif; /* MODIFIED: Title Font */
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #003c7e, #FFD369);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    line-height: 1.2;
}

#amenities .section-title p {
    font-family: 'Montserrat', sans-serif; /* MODIFIED: Paragraph Font */
    font-size: 1.3rem;
    color: black; /* Text color updated to black */
    max-width: 600px;
    margin: 0 auto 30px;
    font-weight: 300;
}

.svg-background-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    z-index: 1;
    overflow: hidden;
    transform: rotate(180deg);
}

.svg-background-top svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.svg-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    z-index: 1;
    overflow: hidden;
}

.svg-background svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*
**********************************************************
* START: Horizontal Timeline for Amenities (Updated Styles)
**********************************************************
*/
.timeline-container {
    position: relative;
    padding-top: 10px;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #FFD369, #003c7e);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 50%;
    left: 0;
    height: 4px;
    background: #003c7e;
    transform: translateY(-50%);
    z-index: 2;
    width: 0%;
    transition: width 0.5s ease;
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}

.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-marker {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    border: 4px solid #FFD369; /* New Accent Color */
    margin-bottom: 20px;
    position: relative;
    z-index: 4;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-marker {
    background: #003c7e; /* New Main Color */
    border-color: #003c7e; /* New Main Color */
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(0, 60, 126, 0.2); /* New Shadow Color */
}

.timeline-content {
    text-align: center;
    opacity: 0.7;
    transform: translateY(10px);
    transition: all 0.3s ease;
    width: 160px;
}

.timeline-item.active .timeline-content {
    opacity: 1;
    transform: translateY(0);
}

.timeline-icon {
    font-size: 2rem;
    color: #FFD369; /* New Accent Color */
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-icon {
    color: #003c7e; /* New Main Color */
    transform: scale(1.2);
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif; /* MODIFIED: Title Font */
    font-size: 1.1rem;
    font-weight: 600;
    color: black;
    margin-bottom: 8px;
}

.timeline-content p {
    font-family: 'Montserrat', sans-serif; /* MODIFIED: Paragraph Font */
    color: black;
    font-size: 0.85rem;
    line-height: 1.4;
}

.amenity-details-wrapper {
    position: relative;
    min-height: 400px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.amenity-detail {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.amenity-detail.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.detail-image {
    width: 45%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.amenity-detail:hover .detail-image img {
    transform: scale(1.05);
}

.detail-content {
    width: 55%;
    padding: 0 0 0 40px;
}

.detail-content h3 {
    font-family: 'Playfair Display', serif; /* MODIFIED: Title Font */
    font-size: 1.8rem;
    color: #003c7e; /* New Main Color */
    margin-bottom: 15px;
}

.detail-content p {
    font-family: 'Montserrat', sans-serif; /* MODIFIED: Paragraph Font */
    color: black; /* Text color updated to black */
    margin-bottom: 20px;
    line-height: 1.7;
}

/*
**********************************************************
* START: Improved Responsive Adjustments
**********************************************************
*/
@media (max-width: 1200px) {
    .timeline-item {
        width: 140px;
    }
    .timeline-content {
        width: 140px;
    }
}

@media (max-width: 992px) {
    .amenity-detail {
        flex-direction: column;
        padding: 30px;
        align-items: stretch;
    }
    .detail-image {
        width: 100%;
        height: 250px;
        margin-bottom: 25px;
    }
    .detail-content {
        width: 100%;
        padding: 0;
    }

    /* Timeline adjustments for tablet */
    .timeline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    .timeline-item {
        width: calc(33.33% - 30px);
        margin-bottom: 20px;
    }
    .timeline-line {
        display: none;
    }
    .timeline-progress {
        display: none;
    }
    .timeline-container {
        padding-top: 60px;
    }
}

@media (max-width: 1180px) {
    #amenities {
        padding: 100px 20px;
    }
    #amenities .section-title h2 {
        font-size: 2.5rem;
    }
    #amenities .section-title p {
        font-size: 1.1rem;
    }

    /* Timeline adjustments for mobile */
    .timeline {
        gap: 20px;
    }
    .timeline-item {
        width: calc(50% - 20px);
    }
    .svg-background,
    .svg-background-top {
        height: 15%;
    }

    .amenity-details-wrapper {
        min-height: 500px;
    }
}

@media (max-width: 576px) {
    #amenities {
        padding: 100px 15px;
    }
    #amenities .section-title h2 {
        font-size: 2rem;
    }
    #amenities .section-title p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    /* Timeline adjustments for small mobile */
    .timeline {
        gap: 15px;
    }
    .timeline-item {
        width: 100%;
        max-width: 250px;
        margin: 0 auto 15px;
    }
    .timeline-content {
        width: 100%;
    }
    .timeline-icon {
        font-size: 1.8rem;
    }
    .timeline-content h3 {
        font-size: 1rem;
    }
    .timeline-content p {
        font-size: 0.8rem;
    }

    .amenity-detail {
        padding: 20px;
    }
    .detail-image {
        height: 200px;
    }
    .detail-content h3 {
        font-size: 1.5rem;
    }

    .svg-background,
    .svg-background-top {
        height: 10%;
    }
}

@media (max-width: 400px) {
    .timeline-item {
        max-width: 100%;
    }
    .detail-content h3 {
        font-size: 1.3rem;
    }
    .amenity-details-wrapper {
        min-height: 550px;
    }
}


/* Original styles for default (mobile-first) */
.video-panorama-container {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Fix for Tablet Devices */
@media (min-width: 768px) and (max-width: 1024px) {
    .video-panorama-container {
        height: auto; /* Overrides the 100vh for tablet screens */
    }
}

.video-panorama-bg-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 48vh;
    background-color: white;
    z-index: 1;
}

.video-panorama-bg-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 52vh;
    background-color: #ffffff;
    z-index: 1;
}

/* Full Width Panorama Canvas */
.video-panorama-canvas {
    width: 100%;
    max-width: 100vw;
    height: auto;
    min-height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    padding: 0;
}

.video-panorama-concave-mask {
    position: relative;
    width: 100%;
    height: 55vw;
    max-height: 620px;
    clip-path: polygon(
        0% 0%, 50% 12%, 100% 0%,
        100% 100%, 50% 88%, 0% 100%
    );
    background-color: #ffffff;
}

/* Tiny "Bitly" Gaps */
.video-panorama-cards-grid {
    display: flex;
    gap: 3px;
    width: 100%;
    height: 100%;
}

.video-panorama-card {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #000;
}

.video-panorama-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Character faces orientation */
.video-panorama-card-outer-left img {
    object-position: 70% 50%;
}

.video-panorama-card-outer-right img {
    object-position: 30% 50%;
}

.video-panorama-play-button-hitbox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 100;
}

.video-panorama-play-button-circle {
    width: 120px;
    height: 120px;
    background: #003c7e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
}

.video-panorama-play-button-circle:hover {
    transform: scale(1.05);
}

.video-panorama-play-triangle {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 32px solid #FFD369;
    margin-left: 8px;
}

.video-panorama-accent-dot {
    position: absolute;
    top: 25%;
    left: 10%;
    width: 8px;
    height: 8px;
    background-color: #FFD369;
    border-radius: 50%;
    z-index: 20;
}

.video-panorama-palette-action-btn {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 56px;
    background-color: #FFD369;
    border-radius: 4px 0 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Modal Styling */
.video-panorama-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    display: none; /* Hidden by default */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-panorama-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.video-panorama-modal-content {
    position: relative;
    width: 95%;
    max-width: 960px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.video-panorama-modal-overlay.active .video-panorama-modal-content {
    transform: translateY(0);
}

.video-panorama-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    transition: background-color 0.2s ease;
}

.video-panorama-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.video-panorama-video-responsive {
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.video-panorama-video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .video-panorama-container {
        height: auto;
    }

    .video-panorama-bg-top,
    .video-panorama-bg-bottom {
        height: 0;
    }

    .video-panorama-concave-mask {
        height: 70vw;
        clip-path: polygon(
            0% 2%, 50% 10%, 100% 2%,
            100% 98%, 50% 90%, 0% 98%
        );
    }

    .video-panorama-play-button-circle {
        width: 80px;
        height: 80px;
    }

    .video-panorama-play-triangle {
        border-top: 14px solid transparent;
        border-bottom: 14px solid transparent;
        border-left: 22px solid #00adef;
        margin-left: 6px;
    }

    .video-panorama-palette-action-btn {
        width: 32px;
        height: 48px;
    }
} 



        /*
         * ISOLATION WRAPPER
         * All styles are scoped to this container to prevent conflicts.
         */
        #exceptional-wheel-container {
            position: relative;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden; /* Ensures cards don't stick out of the container on smaller screens */
        }

        /* Original styles, now scoped */
        #exceptional-wheel-container .wheel {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); /* This keeps the wheel centered */
            animation: rotate-wheel 140s linear infinite;
            pointer-events: none;
            z-index: 1;
            transform-origin: center;
        }

        #exceptional-wheel-container .card {
            position: absolute;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.08);
            background-color: #111;
            pointer-events: auto;
            transform-origin: center;
            transition: transform 0.3s ease;
        }

        #exceptional-wheel-container .card:hover {
            transform: translate(-50%, -50%) scale(1.05) rotate(var(--card-rotation));
        }

        #exceptional-wheel-container .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /*
         * CENTERED CONTENT
         * Positioned absolutely to sit perfectly in the middle of the wheel.
         */
        #exceptional-wheel-container .content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); /* This centers the content block */
            z-index: 10;
            text-align: center;
            width: 100%;
            max-width: 1200px;
            padding: 0 24px;
            pointer-events: none;
            margin-top: 0; /* Removed original margin-top */
        }

        @media (max-width: 767px) {
            #exceptional-wheel-container .content {
                padding: 0 16px;
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            #exceptional-wheel-container .content {
                padding: 0 20px;
            }
        }

        #exceptional-wheel-container .heading {
            font-family: 'Playfair Display', serif; /* MODIFIED: Title Font */
            font-weight: 700;
            color: #003c7e;
            line-height: 1.05;
            margin-bottom: 16px;
            letter-spacing: -0.03em;
            pointer-events: auto;
            margin-top: 0;
            text-align: center;
        }

        @media (max-width: 767px) {
            #exceptional-wheel-container .heading {
                font-size: 32px !important;
                line-height: 1.1;
                margin-bottom: 12px;
                padding: 0 10px;
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            #exceptional-wheel-container .heading {
                font-size: 48px !important;
                line-height: 1.08;
            }
        }

        #exceptional-wheel-container .subtext {
            color: black;
            line-height: 1.5;
            max-width: 650px;
            margin: 0 auto 40px;
            font-weight: 400;
            pointer-events: auto;
            text-align: center;
        }

        @media (max-width: 767px) {
            #exceptional-wheel-container .subtext {
                font-size: 14px !important;
                line-height: 1.4;
                margin: 0 auto 30px;
                padding: 0 16px;
                max-width: 90%;
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            #exceptional-wheel-container .subtext {
                font-size: 16px !important;
                line-height: 1.5;
                margin: 0 auto 35px;
                max-width: 80%;
            }
        }

        #exceptional-wheel-container .button {
            background-color: #FFD369;
            color: #003c7e;
            border: none;
            border-radius: 100px;
            padding: 8px 28px 8px 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 14px;
            box-shadow: 0 12px 24px rgba(255, 106, 61, 0.25);
            pointer-events: auto;
            transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            font-family: inherit; /* This will inherit 'Montserrat' */
        }

        #exceptional-wheel-container .button:hover {
            transform: scale(1.05);
        }

        @media (max-width: 767px) {
            #exceptional-wheel-container .button {
                padding: 6px 20px 6px 6px;
                font-size: 16px;
                gap: 10px;
            }
            
            #exceptional-wheel-container .button-icon-wrapper {
                width: 36px !important;
                height: 36px !important;
            }
        }

        #exceptional-wheel-container .button-icon-wrapper {
            width: 42px;
            height: 42px;
            background-color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease;
        }

        @keyframes rotate-wheel {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        @media (max-width: 767px) {
            #exceptional-wheel-container .wheel {
                animation-duration: 120s;
            }
        }


/*=============== Footer CSS ===============*/
.best-western-footer {
    background-color: #003c7e;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif; /* MODIFIED: Paragraph Font */
    position: relative;
    overflow: hidden;
    box-shadow: 0 -15px 40px rgba(0, 60, 126, 0.3);
    line-height: 1.6;
    border-top: 5px solid #FFD369;
    transform-style: preserve-3d;
    perspective: 1000px;
    font-size: 17px;
}

.best-western-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, #FFD369, transparent);
    animation: shine 4s infinite linear;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.best-western-footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    position: relative;
    z-index: 1;
}

.best-western-footer .logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.best-western-footer .footer-logo {
    max-height: 80px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.best-western-footer .footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
}
.best-western-footer .center-logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.best-western-footer .center-logo {
    max-height: 120px;
}

.best-western-footer .footer-social-icons {
    display: flex;
    gap: 15px;
}

.best-western-footer .footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: transparent;
    color: #FFD369;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
    font-size: 18px;
    border: 2px solid #FFD369;
    position: relative;
}

.best-western-footer .footer-social-icon:hover {
    background-color: #FFD369;
    color: #003c7e;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.best-western-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 100px;
    padding: 40px 60px;
    position: relative;
    z-index: 1;
}

.best-western-footer .footer-section-title {
    font-family: 'Playfair Display', serif; /* MODIFIED: Title Font */
    color: #FFD369;
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.best-western-footer .footer-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #FFD369;
    transition: width 0.3s ease;
}

.best-western-footer .footer-section:hover .footer-section-title::after {
    width: 90px;
}

.best-western-footer .hotel-name {
    font-family: 'Playfair Display', serif; /* MODIFIED: Title Font */
    color: #FFD369;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.best-western-footer .hotel-name i {
    font-size: 24px;
}

.best-western-footer .hotel-description {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 211, 105, 0.3);
}

.best-western-footer .footer-address,
.best-western-footer .footer-phone,
.best-western-footer .footer-map-link {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.best-western-footer .footer-address i,
.best-western-footer .footer-phone i,
.best-western-footer .footer-map-link i {
    color: #FFD369;
    font-size: 20px;
    margin-top: 4px;
}

.best-western-footer .phone-link,
.best-western-footer .map-link a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.best-western-footer .phone-link:hover,
.best-western-footer .map-link a:hover {
    color: #FFD369;
}

.best-western-footer .quick-links-columns {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.best-western-footer .quick-links-columns li a {
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid transparent;
}

.best-western-footer .quick-links-columns li a i {
    color: #FFD369;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.best-western-footer .quick-links-columns li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFD369;
    border-left: 3px solid #FFD369;
    transform: translateX(5px);
}

.best-western-footer .quick-links-columns li a:hover i {
    transform: rotate(360deg);
}

.best-western-footer .policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.best-western-footer .policy-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 211, 105, 0.3);
    transition: all 0.3s ease;
}

.best-western-footer .policy-list li:last-child {
    border-bottom: none;
}

.best-western-footer .policy-list li i {
    color: #FFD369;
    font-size: 20px;
}

.best-western-footer .policy-list strong {
    color: #FFD369;
    font-weight: 600;
}

.best-western-footer .policy-list li:hover {
    transform: translateX(8px);
}

.best-western-footer .footer-bottom {
    text-align: center;
    padding: 25px 0 35px;
    position: relative;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}
.best-western-footer .divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 211, 105, 0.7), transparent);
    margin: 20px auto;
    width: 60%;
}

.best-western-footer .credits {
    font-size: 1rem;
    color: #FFD369;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.best-western-footer .credits p {
    margin-bottom: 15px;
    color: #FFFFFF;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.best-western-footer .credits a {
    color: #FFD369;
    font-weight: 600;
    text-decoration: none;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}

.best-western-footer .credits a:hover {
    color: #FFFFFF;
    text-decoration-color: #FFFFFF;
}

/*=============== Responsive Design ===============*/
@media (max-width: 992px) {
    .best-western-footer .footer-top {
        padding: 40px;
    }
    .best-western-footer .center-logo-container {
        display: none;
    }
    
    /* MODIFIED: Tablet view now uses a single-column layout like mobile */
    .best-western-footer .footer-content {
        grid-template-columns: 1fr; /* Switch to a 1-column layout for tablets */
        gap: 50px; /* Reduce the large gap to better fit content */
    }
}

@media (max-width: 768px) {
    .best-western-footer .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .best-western-footer .footer-content {
        grid-template-columns: 1fr; /* Switch to a single column for portrait tablets and mobiles */
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .best-western-footer .footer-section-title,
    .best-western-footer .hotel-name {
        font-size: 20px;
    }
    .best-western-footer .footer-top{
         padding: 40px 20px;
    }
     .best-western-footer .footer-content {
         padding: 40px 20px;
    }
    .best-western-footer .quick-links-columns {
        grid-template-columns: 1fr;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    /* --- CHANGE: Moved from left to right --- */
    right: 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;
    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;
}








/* --- UPDATED CSS --- */

.amenities-unique {
  position: relative;
  padding: 50px 20px;
  /* UPDATED: New background using the primary color */
  background: #003c7e; 
  overflow: hidden;
  /* Optional: Animation for background is kept */
  animation: gradientShift 12s ease infinite;
  font-family: 'Montserrat', sans-serif;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Style */
.amenity-item {
  background: #fff;
  padding: 40px 25px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border-top: 4px solid transparent;
}

.amenity-item:hover {
  transform: translateY(-12px) scale(1.02);
  /* UPDATED: Hover border now uses the new accent color */
  border-top: 4px solid #FFD369;
  /* UPDATED: Hover shadow uses a subtle version of the new primary color */
  box-shadow: 0 20px 45px rgba(0, 60, 126, 0.2); 
}

/* Icon Circle */
.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  /* UPDATED: Icon background uses the new accent color */
  background: #FFD369; 
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  /* UPDATED: Icon color for contrast with the new background */
  color: #003c7e; 
  transition: all 0.4s ease;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.amenity-item:hover .icon-circle {
  /* UPDATED: Icon hover background uses the new primary color */
  background: #003c7e;
  /* UPDATED: Icon hover color for contrast */
  color: #fff;
  /* UPDATED: Hover shadow effect using the new accent color for a 'glow' */
  box-shadow: 0 0 25px rgba(255, 211, 105, 0.6); 
}

.amenity-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 400;
  text-transform: uppercase;
}

.amenity-item p {
  font-size: 0.95rem;
  /* KEPT: Dark paragraph color for readability on a white background */
  color: #555;
  line-height: 1.6;
}

/* Background decorative overlay */
.amenities-unique::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  /* UPDATED: Overlay with a transparent version of the new accent color */
  background: rgba(255, 211, 105, 0.1); 
  border-radius: 50%;
  z-index: 0;
}

.amenities-unique::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  /* UPDATED: Overlay with a transparent version of the new primary color */
  background: rgba(255, 211, 105, 0.15); 
  border-radius: 50%;
  z-index: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

/* You may need to adjust or remove the gradient animation if you are not using a gradient */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}




/* 
===================================================================
--- ISOLATED ROOM AMENITIES COMPONENT (LARGE VERSION) ---
All classes are prefixed with 'room-amenities-showcase-' to avoid conflicts.
===================================================================
*/

.room-amenities-showcase {
    width: 100%;
    max-width: 1100px; /* INCREASED: Was 900px */
    margin: 0 auto;
    padding: 40px 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    font-family: 'Montserrat', sans-serif;
}

/* This class is added by JavaScript when the section is visible */
.room-amenities-showcase.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.room-amenities-showcase__title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem; /* INCREASED: Was 2.2rem */
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 70px; /* INCREASED: Was 50px */
    position: relative;
}

.room-amenities-showcase__title::after {
    content: '';
    display: block;
    width: 80px; /* INCREASED: Was 70px */
    height: 4px; /* INCREASED: Was 3px */
    background-color: #3498db;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* The main container for the 3 columns (left, middle, right) */
.room-amenities-showcase__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px; /* INCREASED: Was 40px */
}

/* Styling for the center image */
.room-amenities-showcase__image-wrapper img {
    width: 350px; /* INCREASED: Was 250px */
    height: 350px; /* INCREASED: Was 250px */
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid #ffffff; /* INCREASED: Was 6px */
    box-shadow: 0 10px 40px rgba(44, 62, 80, 0.2);
    transition: transform 0.4s ease;
}

.room-amenities-showcase__image-wrapper:hover img {
    transform: scale(1.05);
}

/* Styling for the Left and Right amenity lists */
.room-amenities-showcase__list {
    display: flex;
    flex-direction: column;
    gap: 35px; /* INCREASED: Was 25px */
    width: 280px; /* INCREASED: Was 220px */
}

.room-amenities-showcase__list--left {
    text-align: right;
}

.room-amenities-showcase__list--right {
    text-align: left;
}

/* Styling for a single amenity item */
.room-amenities-showcase__item {
    font-size: 1.2rem; /* INCREASED: Was 1rem */
    color: #34495e;
    font-weight: 600;
    position: relative;
    padding: 10px 0; /* INCREASED: Was 8px */
    cursor: default;
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Set starting position for animations */
.room-amenities-showcase__list--left .room-amenities-showcase__item { transform: translateX(-20px); }
.room-amenities-showcase__list--right .room-amenities-showcase__item { transform: translateX(20px); }

/* Animate items into view when parent container is visible */
.room-amenities-showcase.is-visible .room-amenities-showcase__item {
    opacity: 1;
    transform: translateX(0);
}

/* The interactive line that appears on hover */
.room-amenities-showcase__item::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
}

/* Line position for the left column */
.room-amenities-showcase__list--left .room-amenities-showcase__item::after {
    left: 105%; 
}

/* Line position for the right column */
.room-amenities-showcase__list--right .room-amenities-showcase__item::after {
    right: 105%; 
}

/* Show the line on hover */
.room-amenities-showcase__item:hover::after {
    width: 35px; /* INCREASED: Was 25px */
}

/* Stagger the animation of each list item */
.room-amenities-showcase.is-visible .room-amenities-showcase__item:nth-child(1) { transition-delay: 0.2s; }
.room-amenities-showcase.is-visible .room-amenities-showcase__item:nth-child(2) { transition-delay: 0.3s; }
.room-amenities-showcase.is-visible .room-amenities-showcase__item:nth-child(3) { transition-delay: 0.4s; }
.room-amenities-showcase.is-visible .room-amenities-showcase__item:nth-child(4) { transition-delay: 0.5s; }


/* =========================================
*  Nearby Attractions Section
* ========================================= */

.attractions-container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 40px 20px;
    max-width: 1500px; /* Added max-width for better control */
    font-family: 'Montserrat', sans-serif;
}

.attractions-container .category {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 1;
}

.attractions-container .category:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.attractions-container .category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 4px solid #FFD369; /* UPDATED */
}

.attractions-container .category-header {
    padding: 20px;
    background-color: #003c7e; /* UPDATED */
    color: white;
    text-align: center;
}

.attractions-container .category-header h2, .title2 {
    font-family: 'Playfair Display', serif;
    color: white;
    margin: 0;
    font-size: 24px;
}

.attractions-container .attraction-list {
    padding: 20px;
}

.attractions-container .attraction {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.attractions-container .attraction:last-child {
    border-bottom: none;
}

.attractions-container .attraction-info {
    flex: 1;
}

.attractions-container .attraction-name, .title3-attraction {
    margin-bottom: 4px;
    font-size: 16px;
    color: #333;
}

.attractions-container .attraction-type {
    color: #000;
}

.attractions-container .attraction-distance {
    background-color: #FFD369; /* UPDATED */
    color: black;
    padding: 5px 12px;
    border-radius: 20px;
    min-width: 70px;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.attractions-container .attraction:hover .attraction-distance {
    background-color: #003c7e; /* UPDATED */
    transform: scale(1.05);
    color: white;
}


.attractions-section {
  background: #f9f7f3;
  padding: 39px 8% 80px 8%;
  font-family: 'Montserrat', sans-serif;
  color: #333;
}

/* Header */
.attractions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.attractions-title {
  font-size: 2.8rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #2c2c2c;
  margin: 0;
  position: relative;
  font-family: 'Playfair Display', serif;
}

.attractions-title span {
  color: #003c7e; /* UPDATED */
}

.attractions-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #FFD369; /* UPDATED */
  display: block;
  margin: 12px 0 0;
  border-radius: 2px;
}


/* CTA Button */
.action-btn {
  background: #FFD369; /* UPDATED */
  color: #003c7e;      /* UPDATED */
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: background .3s, color .3s;
  font-weight: 600;
  text-transform: uppercase;
}
.action-btn:hover {
  background: #003c7e; /* UPDATED */
  color: #FFD369;     /* UPDATED */
}

/* Mosaic Grid */
.mt-attractions-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}

.mosaic-item {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}

.mosaic-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.mosaic-item.large { grid-column: 1 / span 2; }
.mosaic-item.tall { grid-row: span 2; }

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55) !important;
    opacity: 0.8;
    color: #fff;
    justify-content: flex-end;
    padding: 20px;
    transition: opacity .3s ease;
}

.mosaic-item:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 6px;
  color: #FFD369; /* UPDATED */
}
.overlay p {
  font-size: 15px;
  line-height: 1.5;
  color: #f1f1f1;
  text-shadow: 1px 1px 1px black;
}

/* Existing footer styles */
.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 30px;
    color: #fff;
    border-top: 1px solid #7c7272;
    width: 100%;
    margin: 35px auto 0;
    padding: 41px 10px 10px 10px;
    font-family: 'Montserrat', sans-serif;
}


/* =============================================================
   --- RESPONSIVE FIXES (NO STYLE CHANGES) ---
============================================================= */

@media (max-width: 1200px) {}

@media (max-width: 992px) { /* Tablet view */
    .room-amenities-showcase {
        padding: 40px 20px;
    }
    .room-amenities-showcase__container {
        gap: 30px;
    }
    .room-amenities-showcase__image-wrapper img {
        width: 280px;
        height: 280px;
    }
    .room-amenities-showcase__list {
        width: 230px;
    }
    
    .mt-attractions-mosaic {
        grid-template-columns: repeat(2, 1fr);
    }
    .mosaic-item.large,
    .mosaic-item.tall {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 768px) { /* Mobile view */

    /* --- Room Amenities Section --- */
    .room-amenities-showcase__container {
        flex-direction: column; 
        gap: 40px;
    }
    .room-amenities-showcase__list {
        width: 100%;
        max-width: 320px;
    }
    .room-amenities-showcase__list--left,
    .room-amenities-showcase__list--right {
        text-align: center;
    }
    .room-amenities-showcase__item::after {
        display: none;
    }

    /* --- Attractions Cards Section --- */
    .attractions-container {
        grid-template-columns: 1fr;
    }

    /* --- Attractions Mosaic Section --- */
    .attractions-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    .mt-attractions-mosaic {
      grid-template-columns: 1fr;
      grid-auto-rows: auto;
    }
    .mosaic-item {
      height: 200px;
    }
    .mosaic-item.large,
    .mosaic-item.tall {
      grid-column: auto;
      grid-row: auto;
    }
}


.location-container {
    width: 100%;
    max-width: 100%;
    background: white;
    font-family: 'Montserrat', sans-serif;
}

.location-title {
    text-align: center;
    color: #003c7e; /* UPDATED */
    font-size: 2.4rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
}

.location-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #003c7e; /* UPDATED */
}

.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 90%;
    margin: 0 auto;
    align-items: stretch;
}

.location-info {
    flex: 1;
    min-width: 300px;
}

.coordinates-box {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 60, 126, 0.1); /* UPDATED */
    border: 1px solid rgba(0, 60, 126, 0.1);     /* UPDATED */
}

.coordinates-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #003c7e; /* UPDATED */
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.coordinate {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 12px;
    font-size: 19px;
}

.coordinate i {
    color: #FFD369; /* UPDATED */
    font-size: 1.2rem;
}

.directions-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 60, 126, 0.1); /* UPDATED */
    border: 1px solid rgba(0, 60, 126, 0.1);     /* UPDATED */
}

.directions-form label {
    font-weight: 600;
    color: #003c7e; /* UPDATED */
    font-size: 20px;
    text-align: left;
}

.directions-form input {
    padding: 9px;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.directions-form input:focus {
    outline: none;
    border-color: #003c7e;                       /* UPDATED */
    box-shadow: 0 0 0 3px rgba(0, 60, 126, 0.2); /* UPDATED */
}

.directions-form button {
    background: #003c7e; /* UPDATED */
    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;
    font-family: 'Montserrat', sans-serif;
}

.directions-form button:hover {
    background: #FFD369; /* UPDATED */
    color: #003c7e;      /* UPDATED */
    transform: translateY(-2px);
}

.location-map {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 60, 126, 0.1); /* UPDATED */
    border: 1px solid rgba(0, 60, 126, 0.1);     /* UPDATED */
    transition: transform 0.3s ease;
}

.location-map:hover {
    transform: translateY(-5px);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .location-content {
      flex-direction: column;
    }
    
    .location-info, .location-map {
      width: 100%;
    }
}


/* Right Side: Image */
.location-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-image .image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-image .image:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-container {
        flex-direction: column;
        padding: 30px;
    }

    .location-image {
        margin-top: 30px;
    }
}



.content-wrapper {
    display: flex;
    gap: 30px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
}

.contact-card {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: 450px;
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-card h2 {
    color: #003c7e; /* UPDATED */
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.contact-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #FFD369; /* UPDATED */
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    color: #FFD369; /* UPDATED */
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 24px;
    text-align: center;
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #003c7e; /* UPDATED */
    font-family: 'Playfair Display', serif;
}

.info-text p, .info-text a {
    font-size: 1.1rem;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.info-text a:hover {
    color: #003c7e; /* UPDATED */
    text-decoration: underline;
}

.map-container {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: 450px;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .contact-card, .map-container {
        width: 100%;
        height: auto;
    }
    
    .map-container {
        height: 350px;
    }
}


.highlighted-attraction-section {
    color: black;
    text-align: center;
    margin-top: 45px;
    font-family: 'Montserrat', sans-serif;
}
.highlighted-container {
    max-width: 1200px;
    margin: 40px auto;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #ffffff;
}
.highlighted-header {
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #f7f9fc, #dfeaf1);
}
.highlighted-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
}
.highlighted-subtitle {
    font-size: 1.3rem;
}
.highlighted-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 40px;
}
.highlighted-description {
    flex: 1;
    text-align: left;
}
.highlighted-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.highlighted-features li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #444;
    display: flex;
    align-items: center;
}
.highlighted-features li strong {
    color: #003c7e; /* UPDATED */
}
.highlighted-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}
.highlighted-reservation-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #003c7e;  /* UPDATED */
    color: #fff !important;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.highlighted-reservation-btn:hover {
    background: #FFD369; /* UPDATED */
    color: #003c7e !important; /* UPDATED */
    transform: translateY(-3px);
}
.highlighted-image {
    flex: 1;
    max-height: 300px;
    overflow: hidden;
}
.highlighted-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.highlighted-img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
    .highlighted-content {
        flex-direction: column;
    }
    .highlighted-title {
        font-size: 2rem;
    }
    .highlighted-subtitle {
        font-size: 1.1rem;
    }
}



.permission-banner {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
            color: white;
            padding: 15px;
            text-align: center;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            display: none;
            font-weight: 600;
        }

        .permission-banner button {
            background: white;
            color: #2c5282;
            border: none;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            margin-left: 15px;
            transition: all 0.3s ease;
        }

        .permission-banner button:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .voice-assistant-container {
            max-width: 1200px;
            margin: 70px auto 30px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            padding: 30px;
            position: relative;
            overflow: hidden;
        }

        .assistant-header {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-bottom: 2em;
            padding: 25px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e6f2ff 100%);
            border-radius: 15px;
            border: 1px solid #d1e7ff;
            position: relative;
        }

        .ai-badge {
            position: absolute;
            top: 15px;
            right: 20px;
            background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
            color: white;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.85em;
            font-weight: bold;
            letter-spacing: 1px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .assistant-avatar {
            width: 110px;
            height: 110px;
            position: relative;
            background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 10px 30px rgba(49, 130, 206, 0.3);
            overflow: hidden;
            flex-shrink: 0;
        }

        .avatar-face {
            width: 75px;
            height: 75px;
            position: relative;
            background: #fff;
            border-radius: 50%;
            box-shadow: inset 0 -8px 15px rgba(0,0,0,0.1);
        }

        .avatar-eyes {
            position: absolute;
            top: 22px;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 22px;
        }

        .avatar-eye {
            width: 13px;
            height: 22px;
            background: #333;
            border-radius: 50%;
            position: relative;
            overflow: hidden;
            animation: blink 5s infinite;
        }

        @keyframes blink {
            0%, 90%, 100% { height: 22px; }
            92%, 98% { height: 4px; }
        }

        .avatar-pupil {
            width: 7px;
            height: 7px;
            background: #fff;
            border-radius: 50%;
            position: absolute;
            top: 7px;
            left: 3px;
            transition: transform 0.3s ease;
        }

        .avatar-mouth {
            position: absolute;
            bottom: 18px;
            left: 50%;
            transform: translateX(-50%);
            width: 32px;
            height: 14px;
            background: #3182ce;
            border-radius: 0 0 16px 16px;
            transition: all 0.3s ease;
        }

        .avatar-mouth.listening {
            animation: listeningMouth 1.5s ease-in-out infinite;
        }

        @keyframes listeningMouth {
            0%, 100% { height: 10px; }
            50% { height: 14px; }
        }

        .avatar-mouth.speaking {
            animation: speakingMouth 0.5s ease-in-out infinite;
        }

        @keyframes speakingMouth {
            0%, 100% {
                width: 32px;
                border-radius: 0 0 16px 16px;
            }
            50% {
                width: 22px;
                border-radius: 10px;
            }
        }

        .avatar-mouth.searching {
            animation: searchingMouth 2s ease-in-out infinite;
        }

        @keyframes searchingMouth {
            0%, 100% {
                transform: translateX(-50%) scale(1);
                opacity: 1;
            }
            50% {
                transform: translateX(-50%) scale(0.8);
                opacity: 0.7;
            }
        }

        .assistant-info {
            text-align: left;
            flex: 1;
        }

        .assistant-name {
            font-size: 1.4em;
            color: #1a365d;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .assistant-title {
            color: #3182ce;
            font-size: 1em;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .assistant-description {
            color: #4a5568;
            font-size: 0.95em;
            line-height: 1.6;
        }

        .status-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 1.8em;
            padding: 18px;
            background: #f8fafc;
            border-radius: 12px;
            border: 2px solid #e2e8f0;
        }

        .status-text {
            font-size: 1.05em;
            color: #2d3748;
            font-weight: 500;
        }

        .status-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #e2e8f0;
        }

        .status-dot.active {
            background: #38a169;
            animation: pulseDot 2s infinite;
        }

        @keyframes pulseDot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.2); }
        }

        .status-dot.searching {
            background: #ed8936;
            animation: pulseDot 1s infinite;
        }

        .controls-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-bottom: 2em;
        }

        .btn {
            padding: 1.1em 1.8em;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-size: 1em;
            font-weight: 600;
            transition: all 0.3s ease;
            min-width: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        #listen-btn {
            background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
            color: white;
        }

        #listen-btn:hover:not(:disabled) {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(49, 130, 206, 0.3);
        }

        #listen-btn.listening {
            background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
            cursor: not-allowed;
        }

        #stop-btn {
            background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
            color: white;
        }

        #stop-btn:hover:not(:disabled) {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(229, 62, 62, 0.3);
        }

        #stop-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .website-structure {
            background: #f8fafc;
            padding: 1.8em;
            border-radius: 15px;
            border: 2px solid #e2e8f0;
            margin-bottom: 1.8em;
            text-align: left;
        }

        .website-structure h3 {
            color: #1a365d;
            margin-bottom: 1.2em;
            font-size: 1.2em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 12px;
        }

        .page-item {
            background: white;
            padding: 12px 18px;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
            font-size: 0.95em;
            color: #4a5568;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .page-item:hover {
            background: #3182ce;
            color: white;
            transform: translateY(-3px);
            border-color: #3182ce;
            box-shadow: 0 5px 15px rgba(49, 130, 206, 0.2);
        }

        .page-icon {
            font-size: 1.2em;
        }

        #conversation-log {
            text-align: left;
            height: 380px;
            overflow-y: auto;
            border: 2px solid #e2e8f0;
            padding: 1.8em;
            border-radius: 15px;
            background: #f8fafc;
            font-size: 0.95em;
            margin-top: 1.8em;
        }

        .message {
            margin-bottom: 14px;
            padding: 12px 16px;
            border-radius: 15px;
            max-width: 90%;
            word-wrap: break-word;
            position: relative;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(5px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .user-message {
            background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
            color: white;
            margin-left: auto;
            border-bottom-right-radius: 5px;
        }

        .assistant-message {
            background: white;
            color: #4a5568;
            border-bottom-left-radius: 5px;
            border: 1px solid #e2e8f0;
            margin-right: auto;
        }

        .assistant-message.found {
            background: #e6fffa;
            border-left: 4px solid #38b2ac;
        }

        .assistant-message.not-found {
            background: #fff5f5;
            border-left: 4px solid #fc8181;
        }

        .assistant-message.redirect {
            background: #ebf8ff;
            border-left: 4px solid #4299e1;
        }

        .system-message {
            background: #fefcbf;
            color: #744210;
            font-style: italic;
            text-align: center;
            margin: 10px auto;
            font-size: 0.9em;
            max-width: 95%;
            border: 1px dashed #ecc94b;
            border-radius: 8px;
            padding: 10px 14px;
        }

        .message-time {
            font-size: 0.8em;
            opacity: 0.7;
            margin-top: 5px;
            text-align: right;
        }

        .message-icon {
            margin-right: 8px;
            font-size: 1.1em;
        }

        .frontdesk-info {
            display: inline-block;
            margin-top: 10px;
            padding: 10px 14px;
            background: #fed7d7;
            color: #c53030;
            border-radius: 8px;
            font-weight: 500;
            border: 1px solid #fc8181;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .frontdesk-info:hover {
            background: #feb2b2;
            transform: scale(1.05);
        }

        .frontdesk-info a {
            color: #c53030;
            text-decoration: none;
            font-weight: bold;
        }

        .frontdesk-info a:hover {
            text-decoration: underline;
        }

        .found-info {
            display: inline-block;
            margin-top: 10px;
            padding: 10px 14px;
            background: #c6f6d5;
            color: #22543d;
            border-radius: 8px;
            font-weight: 500;
            border: 1px solid #9ae6b4;
        }

        .search-result {
            margin-top: 10px;
            padding: 10px;
            background: #edf2f7;
            border-radius: 6px;
            border-left: 3px solid #4299e1;
            font-size: 0.95em;
        }

        .voice-selector {
            margin-top: 1em;
            padding: 12px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 0.95em;
            color: #4a5568;
            background: white;
            width: 100%;
            max-width: 280px;
            transition: all 0.3s ease;
        }

        .voice-selector:focus {
            outline: none;
            border-color: #3182ce;
            box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
        }

        .loading {
            display: inline-block;
            width: 18px;
            height: 18px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid #3182ce;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-right: 10px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .clickable-phone {
            color: #3182ce;
            text-decoration: none;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .clickable-phone:hover {
            color: #2c5282;
            text-decoration: underline;
            transform: scale(1.05);
        }

        .auto-stop-indicator {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background: rgba(255,255,255,0.9);
            padding: 8px 15px;
            border-radius: 15px;
            font-size: 0.85em;
            color: #4a5568;
            display: none;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .inactivity-warning {
            color: #e53e3e;
            font-weight: bold;
        }

        .mic-permission-prompt {
            background: #4299e1;
            color: white;
            padding: 15px 18px;
            border-radius: 12px;
            margin-top: 18px;
            animation: pulse 2s infinite;
            font-weight: 500;
            display: none;
            text-align: center;
        }

        .input-confidence {
            font-size: 0.75em;
            color: #718096;
            margin-top: 6px;
            text-align: right;
        }

        .listening-indicator {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-top: 15px;
            display: none;
        }

        .listening-dot {
            width: 10px;
            height: 10px;
            background: #38a169;
            border-radius: 50%;
            opacity: 0.3;
        }

        .listening-dot.active {
            opacity: 1;
            transform: scale(1.3);
        }

        .contact-highlight {
            background: linear-gradient(135deg, #e6f2ff 0%, #d1e7ff 100%);
            padding: 12px;
            border-radius: 8px;
            margin-top: 10px;
            border-left: 4px solid #3182ce;
        }

        .contact-info {
            margin-top: 12px;
        }

        .source-info {
            margin-top: 8px;
            font-size: 0.85em;
            color: #718096;
            font-style: italic;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .voice-assistant-container {
                padding: 20px;
                margin-top: 60px;
            }
            
            .assistant-header {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .assistant-info {
                text-align: center;
            }
            
            .pages-grid {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            }
            
            .btn {
                min-width: 140px;
                padding: 1em 1.5em;
            }
            
            #conversation-log {
                height: 320px;
            }
        }

        @media (max-width: 480px) {
            .pages-grid {
                grid-template-columns: 1fr;
            }
            
            .controls-container {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 280px;
            }
        }

        

/* Scoped styles using section ID */
        
#hotel-navigation-section .container {
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
}
        
#hotel-navigation-section .navigation-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    margin-top: -40px;
}
        
#hotel-navigation-section .nav-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
        
#hotel-navigation-section .nav-item {
    display: flex;
    height: 100%;
}
        
#hotel-navigation-section .nav-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
    text-decoration: none;
    background: white;
    border-radius: 8px;
    padding: 25px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    height: 120px; /* Fixed height for rectangular format */
}
        
#hotel-navigation-section .nav-link:hover {
    background: #003c7e; /* UPDATED */
    color: white;
    box-shadow: 0 8px 16px rgba(0, 60, 126, 0.2); /* UPDATED */
    transform: translateY(-3px);
}
        
#hotel-navigation-section .nav-icon {
    font-size: 24px;
    margin-bottom: 12px;
    color: #FFD369; /* UPDATED */
    transition: all 0.3s ease;
}
        
#hotel-navigation-section .nav-link:hover .nav-icon {
    color: #FFD369; /* Retained Gold for pop on blue bg */
    transform: scale(1.1);
}
        
#hotel-navigation-section .nav-text {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}
        
#hotel-navigation-section .nav-desc {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.4;
}
        
/* Responsive styles */
@media (max-width: 992px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: repeat(2, 1fr);
    }
            
    #hotel-navigation-section .nav-link {
        height: 110px;
        padding: 20px 10px;
    }
}
        
@media (max-width: 576px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: 1fr;
    }
            
    #hotel-navigation-section .nav-link {
        height: 100px;
        padding: 15px 10px;
    }
            
    #hotel-navigation-section {
        padding: 30px 0;
    }
}



/* Main Dining Section */
.dining-categories-section {
    width: 100%;
    padding: 2rem 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.dining-categories-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.dining-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.dining-category-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    overflow: hidden;
}

.dining-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 60, 126, 0.15); /* UPDATED Shadow */
}

.dining-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; 
    color: #003c7e; /* UPDATED */
    margin-top: 0;
    margin-bottom: 1.5rem; 
    position: relative;
    font-weight: 700;
    width: 100%;
}

.dining-category-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #FFD369; /* UPDATED */
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

.dining-category-image {
    width: 100%;
    height: 250px;
    border-radius: 8px; /* Standardized radius */
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.dining-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1); 
}

.dining-category-image:hover img {
    transform: scale(1.08); 
}

.dining-features-grid {
    width: 100%;
}

.dining-feature-column {
    padding: 0;
    background: none;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
}

.dining-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.dining-feature-item {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 211, 105, 0.3); /* UPDATED */
    transition: all 0.3s ease-in-out;
}

.dining-feature-item:hover {
    background-color: rgba(255, 211, 105, 0.1); /* UPDATED */
    padding-left: 15px; 
}

.dining-feature-item:last-child {
    border-bottom: none;
}

.dining-feature-icon {
    color: #FFD369; /* UPDATED */
    margin-right: 1.5rem; 
    font-size: 1.6rem; 
    min-width: 28px; 
    text-align: center;
}

.dining-feature-text {
    color: black; /* UPDATED */
    font-size: 1.15rem; 
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 1280px) {
    .dining-categories-container {
        padding: 0 1.5rem;
    }
    .dining-category-title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .dining-categories-section {
        padding: 4rem 0;
    }
    .dining-categories-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .dining-category-card {
        padding: 2rem;
    }
    .dining-category-image {
        height: 220px;
        margin-bottom: 1.5rem;
    }
    .dining-category-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .dining-categories-container {
        padding: 0 1rem;
    }
    .dining-category-card {
        padding: 1.8rem;
    }
    .dining-category-image {
        height: 200px;
    }
    .dining-category-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    .dining-feature-item {
        padding: 0.8rem 0;
    }
    .dining-feature-icon {
        font-size: 1.4rem;
        min-width: 24px;
        margin-right: 1rem;
    }
    .dining-feature-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .dining-categories-section {
        padding: 3rem 0;
    }
    .dining-categories-grid {
        gap: 2rem;
    }
    .dining-category-card {
        padding: 1.5rem;
    }
    .dining-category-title {
        font-size: 1.5rem;
    }
    .dining-category-title:after {
        width: 50px;
        height: 3px;
        margin-top: 0.5rem;
    }
    .dining-category-image {
        height: 180px;
        margin-bottom: 1rem;
    }
}




.faq-section {
    margin: 20px auto;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-family: 'Playfair Display', serif;
    color: #003a70;
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #003a70, #fcb100);
    border-radius: 2px;
}

.faq-header p {
    color: black;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}

.faq-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid #003a70;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.faq-question {
    padding: 25px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: #fcb100;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 18px;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.faq-answer {
    padding: 25px;
    position: relative;
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(to right, transparent, #003a70, transparent);
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.faq-answer a {
    color: #003a70;
    font-weight: 600;
    text-decoration: none !important;
}

.faq-answer a:hover {
    color: #fcb100;
    border-bottom-color: #fcb100;
}

.faq-answer .fa-caret-right {
    color: #fcb100;
    margin-right: 8px;
}

@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-header h2 {
        font-size: 28px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 20px;
    }
}