    /* ==========================================================================
       QUOTE REQUEST 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://images.unsplash.com/photo-1549921296-339288ee2778?auto=format&fit=crop&w=1920&q=80');
        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.7) 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(2.5rem, 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;
    }

    /* --- Main Wrapper --- */
    .booking-wrapper {
        max-width: 1400px;
        margin: 80px auto; 
        padding: 0 2rem;
        display: flex;
        gap: 4rem;
        align-items: flex-start;
    }

    /* --- Left Pane: Main Form --- */
    .main-form-pane {
        flex: 1;
        background-color: var(--res-surface);
        border: 1px solid var(--res-border);
        border-radius: 16px;
        padding: 3.5rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }

    .form-header-title {
        font-weight: 800;
        font-size: 1.8rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 0.5rem;
        color: var(--res-text-main);
    }

    .form-header-desc {
        color: var(--res-text-muted);
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--res-border);
    }

    .form-section-heading {
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--res-accent);
        border-bottom: 1px solid var(--res-border);
        padding-bottom: 0.5rem;
        margin: 2.5rem 0 1.5rem 0;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .form-section-heading:first-of-type { margin-top: 0; }

    /* --- Form Inputs --- */
    .input-group { margin-bottom: 1.5rem; position: relative; }
    .row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

    .input-group label {
        display: block;
        margin-bottom: 0.6rem;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--res-text-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .input-group input, 
    .input-group select,
    .input-group textarea {
        width: 90%;
        background-color: var(--res-bg-main);
        border: 1px solid var(--res-border);
        color: var(--res-text-main);
        padding: 1.1rem;
        border-radius: 8px;
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        outline: none;
        transition: all 0.3s ease;
        color-scheme: dark;
        resize: vertical;
    }

    .input-group input:focus,
    .input-group select:focus,
    .input-group textarea:focus {
        border-color: var(--res-accent);
        box-shadow: 0 0 0 3px rgba(29, 99, 237, 0.15);
        background-color: var(--res-surface-hover);
    }

    /* --- Checkbox Cards (Fleet Preferences) --- */
    .checkbox-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .check-card {
        background-color: var(--res-bg-main);
        border: 1px solid var(--res-border);
        border-radius: 12px;
        padding: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .check-card input[type="checkbox"] { display: none; }

    .check-card span {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--res-text-main);
        margin-bottom: 0.3rem;
    }

    .check-card small {
        font-size: 0.85rem;
        color: var(--res-text-muted);
    }

    .check-card:hover { border-color: rgba(29, 99, 237, 0.4); }

    .check-card.selected {
        border-color: var(--res-accent);
        background-color: rgba(29, 99, 237, 0.05);
        box-shadow: 0 0 0 1px var(--res-accent);
    }

    .check-card.selected::after {
        content: '\f058';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 15px; right: 15px;
        color: var(--res-accent);
        font-size: 1.2rem;
    }

    /* --- Security Notice Box --- */
    .notice-box {
        background: rgba(29, 99, 237, 0.05);
        border: 1px solid rgba(29, 99, 237, 0.2);
        padding: 1.5rem;
        border-radius: 8px;
        font-size: 0.9rem;
        color: var(--res-text-main);
        line-height: 1.6;
        margin: 2rem 0;
    }
    
    .notice-box i { color: var(--res-accent); margin-right: 5px; }

    /* --- Submit Button --- */
    .btn-main {
        background-color: var(--res-accent);
        color: #fff;
        border: 1px solid var(--res-accent);
        padding: 1.2rem 2rem;
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        border-radius: 8px;
        cursor: pointer;
        width: 100%;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .btn-main: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);
    }

    /* --- Right Pane: Sticky SLA Sidebar --- */
    .sidebar-pane {
        width: 420px;
        position: sticky;
        top: 140px;
    }

    .info-card {
        background-color: var(--res-surface);
        border: 1px solid var(--res-border);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }

    .info-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .info-card-content { padding: 2.5rem; }

    .card-title-area {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 1rem;
    }

    .icon-wrapper {
        width: 45px;
        height: 45px;
        background-color: rgba(29, 99, 237, 0.1);
        color: var(--res-accent);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .card-title-area h3 {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--res-text-main);
    }

    .card-intro {
        color: var(--res-text-muted);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

   

   
    .sla-step:last-child { padding-bottom: 0; }

    

    .sla-time {
        display: inline-block;
        font-size: 0.8rem;
        font-weight: 700;
        color: #ffffff;
        background-color: rgba(29, 99, 237, 0.1);
        padding: 0.2rem 0.6rem;
        border-radius: 4px;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
    }

    .sla-step.urgent .sla-time {
        color:#3b82f6;
        background-color: rgba(250, 204, 21, 0.1);
    }

    .sla-text h4 {
        margin: 0 0 0.4rem 0;
        font-size: 1rem;
        font-weight: 700;
        color: var(--res-text-main);
    }

    .sla-text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--res-text-muted);
        line-height: 1.5;
    }

    /* --- Extended Transparency Section --- */
    .extended-content-section {
        background-color: var(--res-surface);
        padding: 6rem 2rem;
        border-top: 1px solid var(--res-border);
    }

    .content-grid {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 5rem;
        align-items: center;
    }

    .extended-content-section h2 {
        font-size: 2.2rem;
        font-weight: 800;
        text-transform: uppercase;
        margin: 0;
    }

    .icon-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .icon-list li {
        display: flex;
        align-items: flex-start;
        gap: 1.2rem;
        background-color: var(--res-bg-main);
        padding: 1.2rem;
        border-radius: 8px;
        border: 1px solid var(--res-border);
    }

    .icon-list i {
        color: var(--res-accent);
        font-size: 1.2rem;
        margin-top: 3px;
    }

    .icon-list span {
        color: var(--res-text-muted);
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .icon-list strong {
        color: var(--res-text-main);
        font-weight: 600;
    }

    .content-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
        border: 1px solid var(--res-border);
    }

    /* Mobile */
    @media (max-width: 1024px) {
        .booking-wrapper { flex-direction: column; }
        .sidebar-pane { width: 100%; position: static; }
        .content-grid { grid-template-columns: 1fr; gap: 3rem; }
    }
    @media (max-width: 768px) {
        .main-form-pane { padding: 2rem 1.5rem; }
        .row-grid, .checkbox-grid { grid-template-columns: 1fr; }
        .reservation-hero-banner { padding: 140px 1.5rem 60px 1.5rem; }
    }