  /* ==========================================================================
       RATES & PRICING PAGE (DARK LUXURY)
       ========================================================================== */
    :root {
        --res-bg-main: #030407;
        --res-surface: #0a0d16;
        --res-surface-hover: #111827;
        --res-border: rgba(255, 255, 255, 0.08);
        --res-text-main: #f8fafc;
        --res-text-muted: #94a3b8;
        --res-accent: #1d63ed;
        --res-accent-hover: #3b82f6;
    }

    body {
        background-color: var(--res-bg-main);
        color: var(--res-text-main);
        font-family: 'Inter', sans-serif;
    }

    /* --- Hero Section --- */
    .reservation-hero-banner {
        position: relative;
        padding: 160px 2rem 80px 2rem;
        background-image: url('https://i.pinimg.com/1200x/c9/2b/50/c92b5024f0e0642734335cf6972adb90.jpg?auto=format&fit=crop&w=1920&q=80'); /* Luxury city aesthetic */
        background-size: cover;
        background-position: center;
        text-align: center;
        border-bottom: 1px solid var(--res-border);
    }

    .reservation-hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(3, 4, 7, 0.9) 0%, rgba(3, 4, 7, 0.75) 100%);
        z-index: 1;
    }

    .banner-hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
    }

    .banner-hero-content h1 {
        font-size: clamp(2rem, 5vw, 4rem);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin: 0 0 1rem 0;
        color: #fff;
    }

    .banner-hero-content p {
        font-size: 1.1rem;
        color: var(--res-text-muted);
        line-height: 1.7;
    }

    /* --- Page Content Wrapper --- */
    .rates-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 5rem 2rem;
    }

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .section-header h2 {
        font-size: 2rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--res-text-main);
        margin: 0 0 1rem 0;
    }

    .section-header p {
        color: var(--res-text-muted);
        font-size: 1.05rem;
        line-height: 1.6;
        margin: 0;
    }

    /* --- Info Grid Cards --- */
    .info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 5rem;
    }

    .info-card {
        background-color: var(--res-surface);
        border: 1px solid var(--res-border);
        border-radius: 16px;
        padding: 2.5rem;
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .info-card:hover {
        transform: translateY(-5px);
        border-color: rgba(29, 99, 237, 0.4);
    }

    .info-icon {
        width: 50px;
        height: 50px;
        background-color: rgba(29, 99, 237, 0.1);
        color: var(--res-accent);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .info-card h4 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--res-text-main);
        margin: 0 0 1rem 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .info-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .info-card li, .info-card p {
        color: var(--res-text-muted);
        font-size: 0.95rem;
        line-height: 1.5;
        position: relative;
    }
    
    .info-card li {
        padding-left: 1.2rem;
    }

    .info-card li::before {
        content: '\f0da'; /* solid play/triangle icon */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 2px;
        color: var(--res-accent);
        font-size: 0.8rem;
    }

    /* --- Rates Table & Search --- */
    .rates-table-wrapper {
        background-color: var(--res-surface);
        border: 1px solid var(--res-border);
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
        margin-bottom: 5rem;
    }

    .rates-search-container {
        position: relative;
        max-width: 500px;
        margin: 0 auto 2rem auto;
    }

    .rates-search-icon {
        position: absolute;
        left: 1.2rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--res-accent);
        font-size: 1.1rem;
    }

    .rates-search-input {
        width: 85%;
        background-color: var(--res-bg-main);
        border: 1px solid var(--res-border);
        color: var(--res-text-main);
        padding: 1.2rem 1.2rem 1.2rem 3rem;
        border-radius: 8px;
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        outline: none;
        transition: all 0.3s ease;
    }

    .rates-search-input:focus {
        border-color: var(--res-accent);
        box-shadow: 0 0 0 3px rgba(29, 99, 237, 0.15);
    }

    .no-results-message {
        text-align: center;
        color: var(--res-error);
        padding: 2rem;
        font-weight: 600;
        display: none;
        background-color: rgba(239, 68, 68, 0.1);
        border-radius: 8px;
        border: 1px solid rgba(239, 68, 68, 0.2);
    }

    .table-responsive {
        overflow-x: auto;
    }

    .rates-table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;
    }

    .rates-table th {
        background-color: var(--res-bg-main);
        color: var(--res-accent);
        padding: 1.2rem 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.85rem;
        border-bottom: 2px solid var(--res-border);
    }

    .rates-table td {
        padding: 1rem;
        border-bottom: 1px solid var(--res-border);
        color: var(--res-text-muted);
        font-size: 0.95rem;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    /* Highlighting Prices */
    .rates-table td:nth-child(even) {
        font-weight: 700;
        color: var(--res-text-main);
    }

    .rates-table tbody tr:hover td {
        background-color: rgba(29, 99, 237, 0.05);
        color: var(--res-text-main);
    }

    /* --- CTA Section --- */
    .contact-cta {
        background: linear-gradient(135deg, var(--res-surface) 0%, #061124 100%);
        border: 1px solid var(--res-accent);
        border-radius: 16px;
        padding: 4rem 2rem;
        text-align: center;
        box-shadow: 0 20px 40px rgba(29, 99, 237, 0.15);
    }

    .contact-cta h3 {
        font-size: 2rem;
        font-weight: 800;
        text-transform: uppercase;
        margin: 0 0 1rem 0;
        color: #fff;
    }

    .contact-cta p {
        color: var(--res-text-muted);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 2rem auto;
    }

    .cta-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-cta {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .btn-cta-rates-primary {
        background-color: var(--res-accent);
        color: #fff;
        border: 1px solid var(--res-accent);
    }

    .btn-cta-rates-primary:hover {
        background-color: var(--res-accent-hover);
        border-color: var(--res-accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(29, 99, 237, 0.3);
    }

    .btn-cta-rates-secondary {
        background-color: transparent;
        color: #fff;
        border: 1px solid var(--res-border);
    }

    .btn-cta-rates-secondary:hover {
        background-color: var(--res-surface-hover);
        border-color: var(--res-text-muted);
    }

    /* Mobile */
    @media (max-width: 768px) {
        .rates-content { padding: 3rem 1.5rem; }
        .reservation-hero-banner { padding: 140px 1.5rem 60px 1.5rem; }
        
        /* Stack the 4 column table into 2 columns on mobile */
        .rates-table thead { display: none; }
        .rates-table tbody tr {
            display: grid;
            grid-template-columns: 1fr;
            border-bottom: 2px solid var(--res-accent);
        }
        .rates-table td {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid var(--res-border);
        }
        /* Hide empty cells created by the specific 4-col layout on mobile if any */
        .rates-table td:empty { display: none; }
    }