/* ==========================================================================
   EZCAR TPL52 - UNIFIED STYLESHEET
   ==========================================================================
   CLIENT: Change ONLY the CSS Variables in :root to customize the theme.


/* Utility: hidden state - used instead of inline style="display:none"
   JS toggles this class via classList.add/remove('ez-hidden')
   Can be overridden per client in custom.css 
   
   TABLE OF CONTENTS:
   1.  CSS Variables (:root)
   2.  Base / Global
   3.  Navigation (Top Bar + Header)
   4.  Hero Section (Common)
   5.  Booking Search Form (index.php)
   6.  Neumorphic Components
   6b. EZ- Component Classes
   6c. Sidebar Search Form (.ez-sf-*)
   7.  Vehicle Results Page
   8.  Insurance Cards & Flip
   9.  Booking Process (Tabs, Payment, Tooltips)
   10. Index Page - Includes Box & Features
   11. Footer
   12. Manage Booking (change_booking_1 & change_booking_2)
   13. Web Check-In (scoped #webCheckinPage)
   14. Flatpickr Customization
   15. Animations & Keyframes
   16. Footer (styles)
   17. Utilities
   18. Booking Confirmation Page
   19. Web Check-In Helpers
   20. Print Styles
   ========================================================================== */

.ez-hidden { display: none !important; }

/* ==========================================================================
   1. CSS VARIABLES (:root)
   ========================================================================== */
:root {
    --primary-color: #3b82f6;
    --secondary-color: #6c757d;
    --accent-color: #22c55e;
    --accent-color-dark: #16a34a;
    --accent-color-light: #66BB6A;
    --accent-color-mid: #34d399;
    --accent-glow-strong: rgba(52, 211, 153, 1);
    --accent-glow: rgba(52, 211, 153, 0.7);
    --accent-glow-soft: rgba(52, 211, 153, 0.45);
    --accent-glow-dim: rgba(52, 211, 153, 0.35);
    --accent-glow-faint: rgba(52, 211, 153, 0.08);
    --accent-bg-subtle: rgba(52, 211, 153, 0.14);
    --accent-bg-glass: rgba(16, 185, 129, 0.10);
    --accent-bg-radial: rgba(52, 211, 153, 0.18);
    --accent-border-subtle: rgba(52, 211, 153, 0.22);
    --accent-border-medium: rgba(52, 211, 153, 0.30);
    --accent-text-85: rgba(52, 211, 153, 0.85);
    --accent-text-70: rgba(52, 211, 153, 0.70);
    --success-dark: #059669;
    --flatpickr-hover-bg: #bbf7d0;
    --flatpickr-hover-text: #166534;
    --light-bg: #f8f9fa;
    --dark-bg: #343a40;
    --white: #ffffff;
    --neumorphic-bg: #f0f2f5;
    --text-color: #333;
    --text-muted: #6c757d;
    --border-color: #e2e8f0;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --form-bg: var(--white);
    --form-text: var(--text-color);
    --form-label: #555;
    --shadow-light: #ffffff;
    --shadow-dark: #d1d9e6;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --topbar-bg: #59b55d;
    --wci-dark-bg: #0F172A;
    --wci-darker-bg: #0a0f1d;
    --wci-light-text: #F8FAFC;
    --wci-muted-text: #F8FAFC;
    --wci-glass-bg: rgba(255, 255, 255, 0.05);
    --wci-glass-border: rgba(255, 255, 255, 0.15);
    /* JS state colors - override in custom.css per client */
    --book-btn-color: var(--accent-color-dark);
    --accent-selected-bg: #f0fdf4;
}

/* ==========================================================================
   2. BASE / GLOBAL
   ========================================================================== */
html, body { overflow-x: hidden; scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; margin: 0; padding: 0; box-sizing: border-box; background-color: var(--light-bg); color: var(--text-color) !important; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif !important; }

/* ==========================================================================
   3. NAVIGATION (Top Bar + Header)
   ========================================================================== */
.top-nav-bar { background-color: var(--topbar-bg); }
.language-menu { z-index: 99999 !important; display: none; }
.language-selector:hover .language-menu { display: block !important; }

/* Mobile nav hamburger toggle */
#nav-menu.nav-menu--open { max-height: 1000px; }
#nav-icon.nav-icon--open { transform: rotate(90deg); }

/* Desktop nav - ensure links always visible on lg screens */
@media (min-width: 1024px) {
    #nav-menu {
        position: static !important;
        max-height: none !important;
        width: auto !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 2rem !important;
        overflow: visible !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
    }
    #nav-menu > div {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 1rem !important;
        padding: 0 !important;
    }
    #nav-toggle { display: none !important; }
}

.main-header { position: fixed; top: 0; left: 0; width: 100%; background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); z-index: 1000; }
.header-container { max-width: 1200px; margin: 0 auto; padding: 1rem; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.5rem; font-weight: 700; color: var(--dark-bg); text-decoration: none; }
.logo i { color: var(--accent-color); }
.nav-links { display: flex; align-items: center; gap: 1.5rem; font-size: 1em; }
.nav-links a, .nav-links .step { color: var(--secondary-color); text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; transition: color 0.3s ease; }
.nav-links a:hover, .nav-links a:hover span { color: var(--accent-color); }
.nav-links .separator { color: var(--secondary-color); opacity: 0.4; font-size: 0.8em; }
.nav-links .step { opacity: 0.5; font-size: 0.9em; }
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--dark-bg); }

@media (max-width: 1024px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; width: 100%; background: var(--white); box-shadow: 0 10px 10px rgba(0,0,0,0.1); padding: 1rem; align-items: flex-start; gap: 1rem; }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    .nav-links .separator, .nav-links .step { display: none; }
}

/* ==========================================================================
   4. HERO SECTION (Common)
   ========================================================================== */
.hero { position: relative; width: 100%; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--white); overflow: hidden; padding: 50px 20px; background-size: cover; background-position: center; background-attachment: fixed; padding-top: 19px; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 20px; margin-bottom: 30px; }
.hero h1 { font-family: 'Roboto', sans-serif; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 15px; font-weight: 700; text-shadow: 0 4px 10px rgba(0,0,0,0.4); }
.hero p { font-family: 'Roboto', sans-serif; font-size: clamp(0.9rem, 1.8vw, 1.2rem); margin-bottom: 30px; font-weight: 400; text-shadow: 0 2px 5px rgba(0,0,0,0.3); }
.hero-main-area { position: relative; z-index: 3; width: 100%; max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: flex-start; gap: 80px; padding: 0 20px; }
.hero-main-area .booking-form-wrapper { flex: 1 1 450px; max-width: 500px; }
.hero-main-area .col-md-6 { flex: 1 1 400px; max-width: 500px; display: flex; flex-direction: column; gap: 24px; margin-left: 20px; }
.hero-main-area--centered { justify-content: center; }

@media (max-width: 992px) { .hero-main-area { grid-template-columns: 1fr; gap: 30px; padding-bottom: 50px; } }
@media (max-width: 768px) {
    .hero { min-height: 100vh; padding-left: 14px; padding-right: 14px; }
    .hero-main-area { flex-direction: column; align-items: center; padding: 0; }
    .hero-main-area .booking-form-wrapper, .hero-main-area .col-md-6 { flex: 1 1 100%; max-width: 92%; width: 92%; margin-left: auto; margin-right: auto; }
}

/* ==========================================================================
   5. BOOKING SEARCH FORM (index.php)
   ========================================================================== */
.booking-form-wrapper { position: relative; z-index: 3; background: var(--glass-bg); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(15px); border: 1px solid var(--glass-border); padding: 16px 20px; border-radius: 15px; box-shadow: 0 8px 25px rgba(0,0,0,0.1); width: 100%; left: 0; max-width: 480px; margin-top: -11px; }
.booking-form { display: flex; flex-direction: column; gap: 4px; }
.booking-form, .booking-form label, .booking-form button { font-family: 'Montserrat', sans-serif; }
.booking-form input, .booking-form select { font-family: 'Montserrat', sans-serif; letter-spacing: -0.01em; }
.form-row { display: flex; flex-wrap: nowrap; flex-direction: row; gap: 12px; justify-content: space-between; margin-bottom: 6px; }
.form-group { flex: 1 1 48%; display: flex; flex-direction: column; min-width: 0; }
.form-group.full-width { flex: 1 1 100%; }
.form-group.checkbox-group { flex-direction: row; align-items: center; flex: 1 1 100%; gap: 8px; margin-top: -5px; margin-bottom: 10px; }
.form-group.checkbox-group label { font-weight: 400; margin-bottom: 0; cursor: pointer; color: var(--white); text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }
.form-group label { font-size: 0.78em; margin-bottom: 5px; color: var(--white); font-weight: 600; display: flex; align-items: center; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); letter-spacing: 0.02em; }
.form-group label i { margin-right: 6px; color: var(--accent-color); }
.form-group input[type="text"], .form-group input[type="date"], .form-group input[type="time"], .form-group select { width: 100%; padding: 9px 12px; border: 1px solid var(--border-color); border-radius: 8px; font-size: 0.86em; font-family: 'Montserrat', sans-serif; letter-spacing: -0.01em; color: var(--text-color); transition: all 0.3s ease; box-sizing: border-box; background-color: var(--white); line-height: 1.3; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; background-size: 18px; }
.form-group input:focus, .form-group select:focus { border-color: var(--accent-color); box-shadow: 0 0 0 3px rgba(34,197,94,0.3); outline: none; }
.form-group button { width: 100%; padding: 10px 18px; background-color: var(--accent-color); color: var(--white); border: none; border-radius: 8px; font-size: 1em; margin-top: 8px; font-weight: 700; cursor: pointer; transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 6px 12px rgba(34,197,94,0.25); }
.form-group button i { font-size: 1em; }
.form-group button:hover { background-color: var(--accent-color-dark); transform: translateY(-2px); box-shadow: 0 10px 18px rgba(34,197,94,0.35); }
.form-group button:active { transform: translateY(0); box-shadow: 0 4px 8px rgba(34,197,94,0.25); }
.optional-fields-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; padding-top: 6px; border-top: 1px solid rgba(255,255,255,0.1); }
.optional-fields-row .form-group { flex: 1 1 calc(50% - 6px); min-width: 140px; max-width: 100%; }
.optional-fields-row .form-group:only-child { flex: 1 1 100%; }
.optional-fields-row .form-group:nth-child(3):last-child { flex: 1 1 100%; }
.optional-fields-row .form-group:last-child:nth-child(odd) { flex: 1 1 100%; }

@media (max-width: 992px) { .form-group { flex: 1 1 calc(50% - 12px); } }
@media (max-width: 768px) {
    .booking-form-wrapper { padding: 14px !important; width: 92%; max-width: 92%; margin-top: 15px; margin-left: auto; margin-right: auto; left: 0; box-sizing: border-box; }
    .form-group { flex: 1 1 100%; }
    .form-row { flex-direction: column; flex-wrap: wrap; }
    .optional-fields-row .form-group { flex: 1 1 100%; }
}

/* ==========================================================================
   6. NEUMORPHIC COMPONENTS
   ========================================================================== */
.neumorphic-card { background: #f9fafb; border-radius: 20px; transition: all 0.3s ease; }
.neumorphic-card:hover { transform: translateY(-2px); }
.neumorphic-button { background: var(--neumorphic-bg); border-radius: 15px; box-shadow: 5px 5px 10px var(--shadow-dark), -5px -5px 10px var(--shadow-light); transition: all 0.3s ease; }
.neumorphic-button:active { box-shadow: inset 3px 3px 7px var(--shadow-dark), inset -3px -3px 7px var(--shadow-light); transform: scale(0.98); }
.neumorphic-input { background: var(--neumorphic-bg); border-radius: 10px; box-shadow: inset 2px 2px 5px var(--shadow-dark), inset -2px -2px 5px var(--shadow-light); border: none; padding: 0.75rem 1rem; color: var(--text-color); transition: all 0.3s ease; }
.neumorphic-input:focus { outline: none; box-shadow: inset 2px 2px 5px var(--shadow-dark), inset -2px -2px 5px var(--shadow-light), 0 0 0 2px var(--accent-color); }
.neumorphic-checkbox { appearance: none; width: 20px; height: 20px; border-radius: 5px; background: #e0e5ec; box-shadow: inset 2px 2px 5px var(--shadow-dark), inset -2px -2px 5px var(--shadow-light); display: inline-block; position: relative; cursor: pointer; transition: all 0.2s ease; }
.neumorphic-checkbox:checked { background: var(--accent-color); box-shadow: inset 2px 2px 5px #388E3C, inset -2px -2px 5px #81C784; }
.neumorphic-checkbox:checked::after { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: white; font-size: 12px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.active-neumorphic-item { box-shadow: inset 5px 5px 10px var(--shadow-dark), inset -5px -5px 10px var(--shadow-light), 0 0 0 2px var(--accent-color); background-color: #e0e5ec; transform: translateY(-2px); }

/* Floating Label */
.floating-label-input { position: relative; }
.floating-label-input input, .floating-label-input select { width: 100%; padding: 0.55rem; border: 1px solid #ccc; border-radius: 10px; background: #e0e5ec; box-shadow: inset 2px 2px 5px var(--shadow-dark), inset -2px -2px 5px var(--shadow-light); color: var(--text-color); transition: all 0.2s ease; }
.floating-label-input label { position: absolute; left: 1rem; top: 1rem; color: #625f5f; pointer-events: none; transition: all 0.2s ease; }
.floating-label-input input:focus + label, .floating-label-input input:not(:placeholder-shown) + label, .floating-label-input select:focus + label, .floating-label-input select:not([value=""]) + label { top: -0.5rem; left: 0.8rem; font-size: 0.75rem; color: var(--accent-color); background: #e0e5ec; padding: 0 0.2rem; border-radius: 5px; box-shadow: 2px 2px 5px var(--shadow-dark), -2px -2px 5px var(--shadow-light); }
.floating-label-input textarea:focus + label, .floating-label-input textarea:not(:placeholder-shown) + label { top: -0.5rem; left: 0.8rem; font-size: 0.75rem; color: var(--accent-color); background: #e0e5ec; padding: 0 0.2rem; border-radius: 5px; box-shadow: 2px 2px 5px var(--shadow-dark), -2px -2px 5px var(--shadow-light); }


/* ==========================================================================
   6b. EZ- COMPONENT CLASSES (Customizable per company via CSS Variables)
   ==========================================================================
   All inline styles from JS have been moved here.
   Companies override ONLY the :root variables in their own CSS file.
   ========================================================================== */

/* --- EZ Accent Colors --- */
.ez-accent-text       { color: var(--accent-color-dark); }
.ez-accent-bg         { background-color: var(--accent-color-dark); }
.ez-accent-gradient   { background: linear-gradient(135deg, var(--accent-color-dark) 0%, var(--accent-color) 100%); }
.ez-accent-link       { color: var(--accent-color-dark); font-weight: 600; }
.ez-accent-link:hover { text-decoration: underline; }

/* --- EZ Pricing Container (right panel of vehicle card) --- */
.ez-pricing-container {
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

/* --- EZ Pricing Grid (2-column layout) --- */
.ez-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    flex: 1 1 auto;
    min-height: 200px;
}

/* --- EZ Pricing Single (1-column layout) --- */
.ez-pricing-single {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: 100%;
}

/* --- EZ Price Card (individual price box) --- */
.ez-price-card {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    background: var(--white);
    border-radius: 12px;
    padding: 14px 12px;
    border: 2px solid var(--border-color);
    transition: box-shadow 0.2s;
    overflow: hidden;
}
.ez-price-card--active  { border-color: var(--accent-color); }
.ez-price-card--muted   { border-color: var(--border-color); }

/* --- EZ Price Card Header (title label at top) --- */
.ez-price-card-header {
    background: var(--accent-color-dark);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 8px;
    margin: -14px -12px 10px -12px;
    line-height: 1.3;
}
.ez-price-card--muted .ez-price-card-header {
    background: var(--text-muted);
}

/* --- EZ Price Labels & Values --- */
.ez-price-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
}
.ez-price-original {
    color: var(--error);
    text-decoration: line-through;
    font-size: 14px;
}
.ez-price-hidden {
    font-size: 14px;
    visibility: hidden;
}
.ez-price-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-color-dark);
    display: block;
}
.ez-price-value--large {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-color-dark);
    display: block;
}
.ez-price-txt {
    font-size: 11px;
    color: #4b5563;
    margin-top: 8px;
}

/* --- EZ Deposit Label & Value --- */
.ez-deposit-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.ez-deposit-value {
    font-size: 16px;
    color: var(--accent-color-dark);
    font-weight: 700;
}

/* --- EZ Book Button (vehicle cards) --- */
.ez-book-btn {
    width: 100%;
    background: var(--accent-color-dark);
    color: var(--white);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 10px rgba(34,197,94,0.2);
    letter-spacing: 0.3px;
}
.ez-book-btn:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(34,197,94,0.3);
}

/* --- EZ Vehicle Image --- */
.ez-vehicle-img {
    max-height: 160px;
}

/* --- EZ Price Strike (max charge exceeded) --- */
.ez-price-strike {
    text-decoration: line-through;
    color: var(--error);
}

/* --- Insurance Card Flip Effect --- */
.insurance-card {
    perspective: 800px;
    transform-style: preserve-3d;
    transition: border-color 0.3s ease;
}
.insurance-card.ez-flip-animate {
    animation: ezCardFlip 0.6s ease-in-out;
}
@keyframes ezCardFlip {
    0%   { transform: rotateY(0deg); }
    50%  { transform: rotateY(90deg); }
    100% { transform: rotateY(0deg); }
}

/* --- EZ Info Panel Header (booking tabs) --- */
.ez-info-header {
    background-color: var(--accent-color-dark);
}

/* --- EZ Tab Buttons --- */
.ez-btn-next,
.ez-btn-submit {
    background-color: var(--accent-color-dark);
    color: var(--white);
}
.ez-btn-next:hover,
.ez-btn-submit:hover {
    background-color: var(--accent-color);
}

/* --- EZ Badge (duration, subtotal in booking header) --- */
.ez-badge {
    background-color: var(--accent-color-dark);
    color: var(--white);
}

/* --- EZ Summary Total --- */
.ez-summary-total {
    color: var(--accent-color-dark);
}

/* --- EZ Insurance Price --- */


/* --- EZ Extras Icon --- */
.ez-extra-icon {
    color: var(--accent-color-dark);
    font-size: 1.25rem;
}

/* --- EZ Why Book List (index.php) --- */
.ez-why-book-list {
    font-size: 18px;
    line-height: 1.6;
}

/* --- EZ Navigation --- */
.ez-nav-link:hover {
    color: var(--accent-color) !important;
}

/* --- EZ Topbar Logo --- */
.ez-topbar-logo {
    max-height: 40px;
    width: auto;
}

/* --- EZ Deposit Labels (inside price cards) --- */
.ez-label-container { text-align: left; margin-top: 10px; padding: 0 4px; }
.ez-label-text { font-size: 11px; color: #374151; margin: 2px 0; line-height: 1.4; }
.ez-label-icon--check { color: var(--accent-color); }
.ez-label-icon--cross { color: var(--error); }
.ez-label-icon--info  { color: var(--primary-color); }
.ez-label-icon--star  { color: var(--warning); }
.ez-label-icon--fire  { color: #f97316; }

/* --- EZ Confirmation Pages (booking.confirm.php, booking.info.php) --- */
.ez-confirm-vehicle-name {
    font-weight: 600;
    color: #ffffff;
}
.ez-confirm-prepaid-separator {
    margin-top: 5px;
    border-top: 1px dashed var(--accent-color);
    padding-top: 5px;
}
.ez-confirm-pending-icon {
    color: var(--warning);
}


/* ==========================================================================
   6c. SIDEBAR SEARCH FORM (vehicle.results.php - booking_form.php sidebar mode)
   ========================================================================== */

/* Wrapper */
.ez-sf-wrapper {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 16px;
}

/* Collapsible Header */
.ez-sf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 16px;
    cursor: pointer;
    background: var(--white);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
    user-select: none;
}
.ez-sf-header:hover {
    background: #fafbfc;
}
.ez-sf-header h3 {
    font-size: 0.90rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ez-sf-header h3 i {
    color: var(--accent-color-dark);
    font-size: 0.85rem;
}
.ez-sf-toggle-icon {
    color: var(--text-muted);
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}
.ez-sf-wrapper.collapsed .ez-sf-toggle-icon {
    transform: rotate(180deg);
}

/* Expanded state: show border under header */
.ez-sf-wrapper:not(.collapsed) .ez-sf-header {
    border-bottom-color: var(--border-color);
}

/* Form Body */
.ez-sf-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 800px;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease;
    opacity: 1;
}
.ez-sf-wrapper.collapsed .ez-sf-body {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}

/* Field */
.ez-sf-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ez-sf-field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
}
.ez-sf-field label i {
    color: var(--accent-color-dark);
    font-size: 0.75rem;
    width: 14px;
    text-align: center;
}
.ez-sf-field input[type="text"],
.ez-sf-field select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.82rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    line-height: 1.3;
}
.ez-sf-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 14px;
    padding-right: 28px;
}
.ez-sf-field input:focus,
.ez-sf-field select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(34,197,94,0.15);
    outline: none;
}

/* Date + Time Row (side by side) */
.ez-sf-row {
    display: flex;
    gap: 8px;
}
.ez-sf-field--grow {
    flex: 1 1 60%;
    min-width: 0;
}
.ez-sf-field--time {
    flex: 0 0 80px;
}

/* Submit Button */
.ez-sf-submit {
    width: 100%;
    padding: 8px 16px;
    background: var(--accent-color-dark);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 10px rgba(34,197,94,0.2);
    margin-top: 4px;
}
.ez-sf-submit:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(34,197,94,0.3);
}
.ez-sf-submit:active {
    transform: translateY(0);
}

/* ==========================================================================
   7. VEHICLE RESULTS PAGE
   ========================================================================== */

/* --- Left Column: Search Form + Filters (Desktop) --- */
.ez-sidebar-column {
    align-self: flex-start;
}

/* Filters must match Modify Search width */
.ez-sidebar-column .ez-filters-aside,
.ez-sidebar-column .ez-filters-aside > div {
    width: 100%;
    box-sizing: border-box;
}

/* Sidebar locked state (when user is in booking flow) */
.ez-sidebar--locked {
    pointer-events: none;
    opacity: 0.45;
    position: relative;
}
.ez-sidebar--locked::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: not-allowed;
}

/* Desktop: Modify Search always open (override collapsed class) */
@media (min-width: 992px) {
    .ez-sf-wrapper .ez-sf-body,
    .ez-sf-wrapper.collapsed .ez-sf-body {
        max-height: none !important;
        padding-top: 14px !important;
        padding-bottom: 16px !important;
        opacity: 1 !important;
        overflow: visible !important;
    }
    .ez-sf-wrapper.collapsed .ez-sf-toggle-icon {
        transform: rotate(0deg);
    }
    .ez-sf-wrapper.collapsed .ez-sf-header {
        border-bottom-color: var(--border-color);
    }
    /* Force wrapper to show all content on desktop */
    .ez-sf-wrapper {
        overflow: visible !important;
    }
    .ez-sf-wrapper.collapsed {
        overflow: visible !important;
    }
    .ez-sf-toggle-icon {
        display: none;
    }
    .ez-sf-header {
        cursor: default;
        pointer-events: none;
    }
}

/* --- Filters aside: visible on desktop, drawer on mobile --- */
.ez-filters-aside {
    /* Desktop: just a normal block */
}

.vehicle-card { transition: transform 0.3s ease, box-shadow 0.3s ease; background: var(--white); border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); overflow: hidden; }
.vehicle-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.gradient-button-red { background-image: linear-gradient(to right, var(--accent-color), var(--accent-color-light)); transition: all 0.3s ease; color: white; border-radius: 15px; box-shadow: 3px 3px 7px var(--shadow-dark), -3px -3px 7px var(--shadow-light); }
.gradient-button-red:hover { box-shadow: 5px 5px 10px rgba(255,107,107,0.4); }
.select-button-green { background-image: linear-gradient(to right, var(--accent-color), var(--accent-color-light)); transition: all 0.3s ease; color: white; border-radius: 15px; box-shadow: 3px 3px 7px var(--shadow-dark), -3px -3px 7px var(--shadow-light); }
.select-button-green:hover { background-image: linear-gradient(to right, var(--accent-color-light), var(--accent-color)); box-shadow: 5px 5px 10px rgba(76,175,80,0.4); }
.car-feature { font-size: 0.80rem; font-weight: 500; color: #555; display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.75rem; }
.car-feature i { color: var(--accent-color); font-size: 1rem; line-height: 1 !important; }
.bg-color { background-color: #64ba68; border-radius: 5px; height: 39px; padding: 15px; }
.rental-info-container { display: flex; justify-content: space-between; align-items: center; }
.rental-info-container > div { text-align: right; }
.rental-info-container > div:first-child { text-align: left; }
.range-slider-container input[type="range"] { -webkit-appearance: none; appearance: none; background: transparent; cursor: pointer; z-index: 10; }
.range-slider-container input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; height: 16px; width: 16px; background-color: var(--accent-color); border: 2px solid white; border-radius: 50%; pointer-events: all; margin-top: -8px; }
#max-price-slider { z-index: 11; }
#min-price-slider { z-index: 10; }
.range-slider-container input[type="range"]::-webkit-slider-runnable-track { background: transparent; height: 1px; }
#priceIncludesList { max-height: 97px; overflow: hidden; transition: max-height 0.3s ease-in-out; }

/* --- Dual-Thumb Range Slider --- */
.ez-dual-range {
    position: relative;
    width: 100%;
    height: 24px;
}
.ez-dual-range__track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #e5e7eb;
    border-radius: 4px;
    transform: translateY(-50%);
}
.ez-dual-range__fill {
    position: absolute;
    top: 50%;
    height: 4px;
    background: var(--accent-color);
    border-radius: 4px;
    transform: translateY(-50%);
    left: 0%;
    right: 0%;
}
.ez-dual-range__input {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    pointer-events: none;
    outline: none;
}
.ez-dual-range__input::-webkit-slider-runnable-track {
    background: transparent;
    height: 4px;
}
.ez-dual-range__input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    cursor: pointer;
    pointer-events: all;
    margin-top: -7px;
}
.ez-dual-range__input::-moz-range-track {
    background: transparent;
    height: 4px;
}
.ez-dual-range__input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    cursor: pointer;
    pointer-events: all;
}

/* --- Filters Sidebar - Refined --- */
#filterSidebar {
    font-size: 0.875rem;
    border-radius: 12px;
}
@media (min-width: 992px) {
    #filterSidebar {
        padding: 0 !important;
    }
}
#filterSidebar h3 {
    font-size: 1rem !important;
    font-weight: 600 !important;
}
#filterSidebar h4 {
    font-size: 0.8rem !important;
    font-weight: 600 !important;
   /* text-transform: uppercase;*/
    letter-spacing: 0.5px;
    color: var(--text-muted) !important;
}
#filterSidebar > div.mb-6,
#filterSidebar .mb-6 {
    margin-bottom: 1rem !important;
}
#filterSidebar label {
    font-size: 0.85rem;
    color: #4a5568;
    cursor: pointer;
}
#filterSidebar input[type="checkbox"] {
    accent-color: var(--accent-color-dark);
}
#filterSidebar #range-track {
    background-color: var(--accent-color) !important;
}
#filterSidebar #clearFiltersBtn {
    font-size: 0.8rem;
    padding: 6px 12px !important;
    border-radius: 8px;
}
#filterSidebar #applyFiltersMobileBtn {
    background-color: var(--accent-color-dark) !important;
    font-size: 0.85rem;
    font-weight: 600 !important;
    padding: 8px 12px !important;
    border-radius: 8px;
}
#filterSidebar #applyFiltersMobileBtn:hover {
    background-color: var(--accent-color) !important;
}
#priceIncludesList.expanded { max-height: 500px; }
#togglePriceIncludesBtn { cursor: pointer; }
.priceIncludesList.collapsed { max-height: 6rem; overflow: hidden; }
.priceIncludesList.expanded { max-height: none; overflow: visible !important; }
.object-contain { object-fit: contain !important; }
.bg-red-600 { --tw-bg-opacity: 1; background-color: rgb(90 182 94) !important; }
.bg-white.py-6.shadow-md.rounded-xl.border.border-gray-100 { position: relative !important; top: -36px !important; }
.w-full.flex.flex-col.lg\:flex-row.lg\:items-start.gap-6 { margin-top: 60px !important; }
@media (max-width: 767px) {
    .w-full.flex.flex-col.lg\:flex-row.lg\:items-start.gap-6 { margin-top: 10px !important; }
    .bg-white.py-6.shadow-md.rounded-xl.border.border-gray-100 { top: -10px !important; }
}
.neumorphic-card.p-4.rounded-xl { margin-top: -13px; }
button.mt-2.w-full.bg-green-600.hover\:bg-green-700.text-white.font-bold.py-2.rounded-lg { margin-top: 51px; }

@media (max-width: 639px) {
    .rental-info-container { flex-direction: column; gap: 8px; }
    .rental-info-container > div { text-align: center; }
}
@media (max-width: 991px) {
    .bg-color { color: #FFFFFF !important; height: 113px !important; }

    /* Sidebar column: NOT sticky on mobile */
    .ez-sidebar-column {
        position: static;
        max-height: none;
        overflow-y: visible;
    }

    /* Modify Search: visually distinct from filters on mobile */
    .ez-sf-wrapper {
        border: 2px solid var(--accent-color);
        box-shadow: 0 4px 16px rgba(34,197,94,0.15);
        margin-bottom: 12px;
    }

    /* Filters aside: fixed drawer on mobile */
    #filterSidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        z-index: 50;
        background: #fff;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        margin-top: 0;
        padding-top: 16px;
        box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    }
    #filterSidebar.open {
        transform: translateX(0);
    }
    .ez-filter-backdrop {
        z-index: 49;
    }
    button#closeFiltersBtn { margin-top: 15px !important; }
    h3.text-2xl.font-bold.mb-5.text-gray-900 { margin-top: 63px !important; }
    .md\:w-2\/5 { width: 37% !important; }
    button.mt-2.w-full.bg-green-600.hover\:bg-green-700.text-white.font-bold.py-2.rounded-lg { margin-top: 0px !important; }
}
@media (max-width: 768px) {
    #sticky-summary { bottom: 29rem; right: 1rem; font-size: 0.9rem; padding: 0.5rem; }
}


/* ==========================================================================
   8. INSURANCE CARDS & FLIP
   ========================================================================== */
.insurance-card { position: relative; width: 100%; height: 100%; text-align: center; transition: transform 0.6s; transform-style: preserve-3d; padding-bottom: 50px; }
.insurance-card.flipped { transform: rotateY(180deg); }
.insurance-card button { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 5px; font-size: 0.75rem; color: var(--success); cursor: pointer; transition: color 0.2s ease-in-out; }
.insurance-card button:hover { color: #065F46; }
.details-text { display: inline-block; vertical-align: middle; }
.flip-card-container { perspective: 1000px; height: 100%; }
.card-face { position: absolute; width: 100%; height: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.card-back { transform: rotateY(180deg); display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 1.5rem; }
.insurance-card-wrapper { perspective: 1000px; }
.insurance-card-inner { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform 0.7s cubic-bezier(.2,.8,.2,1); transform-origin: center center; }
.insurance-card-wrapper.flipped .insurance-card-inner { transform: rotateY(180deg); }
.insurance-card-front, .insurance-card-back { position: absolute; inset: 0; width: 100%; height: 100%; backface-visibility: hidden; -webkit-backface-visibility: hidden; border-radius: 0.75rem; }
.insurance-card-back { transform: rotateY(180deg); }
.insurance-card-wrapper.selected .insurance-card-front, .insurance-card-wrapper.selected .insurance-card-back { box-shadow: 0 10px 30px rgba(16,185,129,0.08), 0 0 0 3px rgba(34,197,94,0.12); border: 2px solid var(--accent-color-dark); }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.h-full { height: 80% !important; }
.insurance-card-front.flex.flex-col.justify-between.items-center.text-center.h-full { background-color: var(--white); box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light); padding: 47px; }


/* ==========================================================================
   9. BOOKING PROCESS (Tabs, Payment, Tooltips)
   ========================================================================== */
.booking-section { overflow: hidden; height: 0; opacity: 0; transition: height 0.5s ease, opacity 0.5s ease; }
.booking-section.open { opacity: 1; }
.disabled-payment { opacity: 0.6; cursor: not-allowed; }
.selected-payment { border: 3px solid var(--success); }
.card-disabled { opacity: 0.5; filter: grayscale(80%); transition: all 0.3s ease; pointer-events: none; }
.z-\[9999\] { z-index: 9999 !important; }
.tooltip-arrow-right::before { content: ''; position: absolute; top: 50%; right: 100%; margin-top: -6px; border-width: 6px; border-style: solid; border-color: transparent #e5e7eb transparent transparent; z-index: 9998; }
.tooltip-arrow-right::after { content: ''; position: absolute; top: 50%; right: 100%; margin-top: -5px; border-width: 5px; border-style: solid; border-color: transparent var(--white) transparent transparent; z-index: 9999; }
.text-base { font-size: 0.95rem !important; padding: 4px !important; }
.text-base2 { font-size: 0.95rem !important; padding: 2px !important; }
.gap-3 { gap: 0.55rem !important; }

/* --- Payment Options (Tab 3) - Compact --- */
.payment-option {
    padding: 10px 14px !important;
    gap: 10px !important;
    border-radius: 10px !important;
}
.payment-option span {
    font-weight: 500 !important;
    font-size: 0.9rem !important;
}
.payment-option i {
    font-size: 1rem !important;
}
#payment-methods-container {
    gap: 6px !important;
}


/* ==========================================================================
   10. INDEX PAGE - INCLUDES BOX & FEATURES
   ========================================================================== */
.includes-box { position: relative; background: var(--glass-bg); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--glass-border); border-radius: 15px; padding: 20px; margin-top: 0; box-shadow: 0 4px 30px rgba(0,0,0,0.2); text-align: left; color: var(--white); left: 0; font-family: 'Roboto', sans-serif; width: 100%; box-sizing: border-box; }
.includes-box h3 { font-size: 1.5em; margin-bottom: 25px; color: var(--white); font-weight: 700; text-shadow: 0 2px 5px rgba(0,0,0,0.7); }
.includes-box ul { list-style: none; padding: 0; margin: 0; }
.includes-box ul li { display: flex; align-items: center; margin-bottom: 15px; font-size: 1em; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }
.includes-box ul li i { color: var(--accent-color); margin-right: 12px; font-size: 1.2em; text-shadow: none; }

@media (max-width: 768px) {
    .includes-box { margin-top: 0 !important; margin-left: 0 !important; width: 100% !important; left: 0 !important; }
}

.about-us-section { padding: 80px 20px; text-align: center; background-color: var(--light-bg); }
.about-us-section h2 { font-size: 2.5em; font-weight: 700; margin-bottom: 20px; color: var(--dark-bg); font-family: 'Roboto', sans-serif; }
.about-us-section p { max-width: 700px; margin: 0 auto 50px; font-size: 1.1em; color: var(--secondary-color); font-family: 'Roboto', sans-serif; }
.features-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; max-width: 1000px; margin: 0 auto; }
.feature-item { display: flex; flex-direction: column; align-items: center; text-align: center; background-color: var(--white); padding: 40px 20px; border-radius: 16px; box-shadow: 0 8px 25px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; max-width: 300px; flex-grow: 1; }
.feature-item:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.15); }
.feature-item .icon-wrapper { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary-color), #2a73a6); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.feature-item .icon-wrapper i { font-size: 2.5em; color: var(--white); }
.feature-item h3 { font-size: 1.4em; font-weight: 700; margin-bottom: 10px; color: var(--dark-bg); font-family: 'Roboto', sans-serif; }
.feature-item p { font-size: 0.9em; color: var(--secondary-color); margin: 0; font-family: 'Roboto', sans-serif; }


/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.main-footer { background-color: var(--dark-bg); color: var(--light-bg); padding-top: 50px; font-family: 'Poppins', sans-serif; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px 40px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; }
.footer-column { flex: 1 1 300px; padding-right: 20px; }
.logo-footer { display: flex; align-items: center; gap: 0.5rem; font-size: 1.8rem; font-weight: 700; color: var(--white); text-decoration: none; margin-bottom: 15px; }
.logo-footer i { color: var(--accent-color); }
.brand-info p { font-size: 0.9em; line-height: 1.6; color: var(--secondary-color); margin-bottom: 20px; }
.footer-column h3 { font-size: 1.2em; font-weight: 700; margin-bottom: 20px; color: var(--accent-color); border-bottom: 2px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.footer-column ul { list-style: none; padding: 0; }
.footer-column ul li { margin-bottom: 10px; display: flex; align-items: center; }
.footer-column ul li i { margin-right: 10px; color: var(--accent-color); font-size: 0.9em; }
.footer-column ul li span { font-size: 0.9em; color: var(--light-bg); }
.quick-links a { color: var(--light-bg); text-decoration: none; font-size: 0.9em; transition: color 0.3s ease; }
.quick-links a:hover { color: var(--accent-color); }
.social-icons { display: flex; gap: 15px; }
.social-icons a { color: var(--light-bg); font-size: 1.2em; transition: color 0.3s ease, transform 0.3s ease; }
.social-icons a:hover { color: var(--accent-color); transform: scale(1.1); }
.footer-bottom { background-color: #2b3035; text-align: center; padding: 20px; margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { margin: 0; font-size: 0.85em; color: var(--secondary-color); }

@media (max-width: 768px) {
    .footer-container { flex-direction: column; padding-left: 15px; padding-right: 15px; }
    .footer-column { flex: 1 1 100%; padding-right: 0; text-align: left; }
    .logo-footer { justify-content: flex-start; }
    .brand-info { padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .social-icons { justify-content: flex-start; }
    .footer-column h3 { text-align: left; }
}


/* ==========================================================================
   12. MANAGE BOOKING (change_booking_1.php & change_booking_2.php)
   ========================================================================== */

/* --- 12a. change_booking_1: Search form wrapper --- */
.manage-booking-wrapper { position: relative; z-index: 3; background: var(--glass-bg); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid var(--glass-border); padding: 30px; border-radius: 15px; box-shadow: 0 8px 25px rgba(0,0,0,0.1); width: 90%; max-width: 400px; margin: 50px auto; }
.manage-booking-form { display: flex; flex-direction: column; gap: 20px; }
.manage-booking-form input { width: 100%; padding: 12px 15px; border: 1px solid var(--border-color); border-radius: 8px; font-size: 1em; box-sizing: border-box; background-color: var(--white); color: var(--text-color); font-weight: 500; transition: border-color 0.3s, box-shadow 0.3s; }
.manage-booking-form input:focus { border-color: var(--accent-color); outline: none; box-shadow: 0 0 0 3px rgba(34,197,94,0.4); }
.manage-booking-form label { color: var(--white); font-weight: 600; display: block; margin-bottom: 5px; text-align: left; }
.manage-booking-form label i { margin-right: 8px; color: var(--accent-color); }
.manage-booking-form button { width: 100%; padding: 12px 15px; border: none; border-radius: 8px; background-color: var(--accent-color); color: var(--white); font-weight: 700; cursor: pointer; transition: background-color 0.3s ease, transform 0.2s ease; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 6px 12px rgba(34,197,94,0.35); margin-top: 10px; }
.manage-booking-form button:hover { background-color: var(--accent-color-dark); transform: translateY(-2px); box-shadow: 0 8px 15px rgba(34,197,94,0.45); }

/* --- 12b. Dual layout (booking found) --- */
.hero-main-area.booking-found { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: flex-start; }
.booking-details-wrapper { width: 100%; }

@media (max-width: 1024px) {
    .hero-main-area.booking-found { grid-template-columns: 1fr; gap: 40px; }
}

/* Compact Booking Details (change_booking_2) */
.booking-details-wrapper > div { position: relative; z-index: 3; background: var(--glass-bg); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid var(--glass-border); padding: 10px; border-radius: 15px; box-shadow: 0 8px 25px rgba(0,0,0,0.1); width: 100%; }
.booking-details-wrapper .p-6, .booking-details-wrapper .p-4 { padding: 10px !important; }
.booking-details-wrapper p, .booking-details-wrapper span, .booking-details-wrapper .text-xs, .booking-details-wrapper .text-sm, .booking-details-wrapper .text-\[11px\] { font-size: 0.85rem !important; line-height: 1.5; }
.booking-details-wrapper h3, .booking-details-wrapper h4, .booking-details-wrapper h2 { font-size: 0.95rem !important; margin-bottom: 5px !important; }
.booking-details-wrapper .bg-gradient-to-br { padding: 15px !important; margin-bottom: 15px !important; }
.booking-details-wrapper .bg-gradient-to-br h1 { font-size: 1.2rem !important; }

/* change_booking_2: Form inputs over hero */
.booking-form input, .booking-form select { width: 100%; padding: 8px 10px; border: 1px solid var(--accent-color); border-radius: 6px; font-size: 0.8em; box-sizing: border-box; background-color: var(--white); color: var(--text-color); font-weight: 500; transition: border-color 0.3s; }
.booking-form button { width: 100%; padding: 10px 15px; background-color: var(--accent-color); color: var(--white); border: none; border-radius: 6px; font-size: 0.9em; font-weight: 700; cursor: pointer; transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 4px 10px rgba(34,197,94,0.25); }

@media (max-width: 768px) {
    .form-row { flex-direction: column; gap: 10px; }
    .form-group { flex: 1 1 100%; min-width: unset; }
}

/* ==========================================================================
   12d. CHANGE_BOOKING_2 — LEFT PANEL (Dark Glassmorphic)
   Matches the affiliate / web check-in aesthetic.
   Scope: #managebooking2 .booking-details-wrapper
   ========================================================================== */

/* --- entry animation --- */
#managebooking2 .booking-details-wrapper {
    animation: bdwFadeIn 0.6s ease-out;
}
@keyframes bdwFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- outer glass container --- */
#managebooking2 .booking-details-wrapper > div {
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px !important;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    padding: 16px !important;
}

/* --- inner white cards → transparent --- */
#managebooking2 .booking-details-wrapper .bg-white {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* --- top header banner (Booking Details) --- */
#managebooking2 .booking-details-wrapper .bg-gradient-to-br {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25) 0%, rgba(16, 185, 129, 0.12) 100%) !important;
    border: 1px solid rgba(34, 197, 94, 0.3) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
    padding: 15px !important;
    margin-bottom: 15px !important;
}
#managebooking2 .booking-details-wrapper .bg-gradient-to-br h1 {
    color: #F8FAFC !important;
    font-size: 1.2rem !important;
    text-shadow: none !important;
}
#managebooking2 .booking-details-wrapper .bg-gradient-to-br .text-lime-300,
#managebooking2 .booking-details-wrapper .bg-gradient-to-br i {
    color: #22c55e !important;
}

/* booking number inner box */
#managebooking2 .booking-details-wrapper .bg-gradient-to-br .border-emerald-400 {
    border-color: rgba(34, 197, 94, 0.35) !important;
    background: rgba(255, 255, 255, 0.06) !important;
}
#managebooking2 .booking-details-wrapper .bg-gradient-to-br .border-emerald-400 p {
    color: rgba(255, 255, 255, 0.9) !important;
        font-weight: 600;
}

/* --- section cards (customer, rental, payment, extras, status, pay-option) --- */
#managebooking2 .booking-details-wrapper .border-green-300,
#managebooking2 .booking-details-wrapper .border-2.border-green-500,
#managebooking2 .booking-details-wrapper .border-blue-300,
#managebooking2 .booking-details-wrapper .border-gray-300 {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 14px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
}

/* --- section headers --- */
#managebooking2 .booking-details-wrapper h2,
#managebooking2 .booking-details-wrapper h3 {
    color: #F8FAFC !important;
    font-size: 0.95rem !important;
    margin-bottom: 5px !important;
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}
#managebooking2 .booking-details-wrapper .text-green-700 { color: #22c55e !important; }
#managebooking2 .booking-details-wrapper .text-blue-700  { color: #22c55e !important; }

/* --- icons --- */
#managebooking2 .booking-details-wrapper .text-green-600,
#managebooking2 .booking-details-wrapper .text-green-500 { color: #22c55e !important; }
#managebooking2 .booking-details-wrapper .text-blue-600,
#managebooking2 .booking-details-wrapper i.text-blue-600 { color: #22c55e !important; }

/* --- text colours on dark bg --- */
#managebooking2 .booking-details-wrapper .text-gray-500,
#managebooking2 .booking-details-wrapper .text-gray-600 { color: rgba(255, 255, 255,255) !important; }
#managebooking2 .booking-details-wrapper .text-gray-900,
#managebooking2 .booking-details-wrapper .font-medium,
#managebooking2 .booking-details-wrapper .font-semibold  { color: rgba(255, 255, 255, 0.9) !important; }
#managebooking2 .booking-details-wrapper .text-gray-700  { color: rgba(255, 255, 255, 0.7) !important; }

/* font size consistency */
#managebooking2 .booking-details-wrapper p,
#managebooking2 .booking-details-wrapper span,
#managebooking2 .booking-details-wrapper .text-xs,
#managebooking2 .booking-details-wrapper .text-sm,
#managebooking2 .booking-details-wrapper .text-\[11px\] { font-size: 0.85rem !important; line-height: 1.5; font-weight: 600; }

/* uppercase labels */
#managebooking2 .booking-details-wrapper span.font-bold.text-gray-500.uppercase {
    color: rgba(255, 255, 255, 255) !important;
    letter-spacing: 0.8px;
}

/* --- green accent texts (car type, totals) --- */
#managebooking2 .booking-details-wrapper .text-green-700.font-bold { color: #22c55e  !important; }
#managebooking2 .booking-details-wrapper .text-green-800 { color: #22c55e !important; }

/* --- dividers --- */
#managebooking2 .booking-details-wrapper .border-gray-100,
#managebooking2 .booking-details-wrapper .border-gray-50 { border-color: rgba(255, 255, 255, 0.08) !important; }
#managebooking2 .booking-details-wrapper .border-dashed.border-green-200 { border-color: rgba(34, 197, 94, 0.25) !important; }
#managebooking2 .booking-details-wrapper .border-dashed.border-gray-200  { border-color: rgba(255, 255, 255, 0.1) !important; }

/* --- inner subtle bg areas --- */
#managebooking2 .booking-details-wrapper .bg-gray-50,
#managebooking2 .booking-details-wrapper .bg-green-50:not(.p-3) {
    background: rgba(255, 255, 255, 0.04) !important;
    border-radius: 8px;
}

/* --- grand total box --- */
#managebooking2 .booking-details-wrapper .bg-green-50.p-3.rounded-lg {
    background: rgba(34, 197, 94, 0.1) !important;
    border-top: 2px solid rgba(34, 197, 94, 0.4) !important;
}
#managebooking2 .booking-details-wrapper .border-t-2.border-green-600 {
    border-top-color: rgba(34, 197, 94, 0.4) !important;
}
#managebooking2 .booking-details-wrapper .bg-green-50 .text-base.font-extrabold { color: #F8FAFC !important; }
#managebooking2 .booking-details-wrapper .bg-green-50 .text-xl.font-extrabold  { color: #22c55e !important; }

/* --- prepaid & balance rows --- */
#managebooking2 .booking-details-wrapper .bg-yellow-50 {
    background: rgba(245, 158, 11, 0.08) !important;
}
#managebooking2 .booking-details-wrapper .bg-yellow-50 .font-bold,
#managebooking2 .booking-details-wrapper .bg-yellow-50 .font-semibold { color: #fbbf24 !important; }

/* --- discount rows (red) --- */
#managebooking2 .booking-details-wrapper .text-red-600 { color: #f87171 !important; }

/* --- booking status badges --- */
#managebooking2 .booking-details-wrapper .text-green-600.bg-green-50 { background: rgba(34, 197, 94, 0.15) !important; color: #22c55e !important; }
#managebooking2 .booking-details-wrapper .text-blue-600.bg-blue-50   { background: rgba(96, 165, 250, 0.15) !important; color: #22c55e !important; }
#managebooking2 .booking-details-wrapper .text-red-600.bg-red-50     { background: rgba(248, 113, 113, 0.15) !important; color: #f87171 !important; }

/* status row labels */
#managebooking2 .booking-details-wrapper .border-gray-300 .text-xs.font-bold.text-gray-600 { color: rgba(255, 255, 255, 255) !important; }
#managebooking2 .booking-details-wrapper .border-gray-300 i.text-gray-500 { color:#22c45e !important; }

/* extras italic labels */
#managebooking2 .booking-details-wrapper .border-green-300 .text-xs .text-gray-600.italic { color: rgba(255, 255, 255, 255) !important; }

/* cash on arrival note */
#managebooking2 .booking-details-wrapper .text-right.text-xs.text-gray-500.italic { color: rgba(255, 255, 255, 0.4) !important; }

/* --- cancel booking button --- */
#managebooking2 .booking-details-wrapper .border-2.border-red-600 {
    background: rgba(239, 68, 68, 0.08) !important;
    border: 1px solid rgba(248, 113, 113, 0.4) !important;
    color: #f87171 !important;
    border-radius: 12px !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
}
#managebooking2 .booking-details-wrapper .border-2.border-red-600:hover {
    background: rgba(239, 68, 68, 0.18) !important;
    border-color: rgba(248, 113, 113, 0.6) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.2) !important;
}
#managebooking2 .booking-details-wrapper .border-2.border-red-600 i { color: #f87171 !important; }

/* --- mobile adjustments --- */
@media (max-width: 768px) {
    #managebooking2 .booking-details-wrapper > div {
        padding: 12px !important;
        border-radius: 16px !important;
    }
}


/* ==========================================================================
   13. WEB CHECK-IN (Scoped under #webCheckinPage)
   ========================================================================== */
#webCheckinPage { font-family: 'Inter', sans-serif; background: linear-gradient(rgb(15 23 42 / 88%), rgb(10 15 29 / 95%)); background-size: cover; min-height: 100vh; display: flex; align-items: flex-start; justify-content: center; padding: 40px 20px; color: var(--wci-light-text); position: relative; }
#webCheckinPage::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 10% 20%, rgba(34,197,94,0.1) 0%, transparent 30%), radial-gradient(circle at 90% 80%, rgba(34,197,94,0.05) 0%, transparent 30%); z-index: -1; }
#webCheckinPage .main-container { width: 100%; max-width: 1100px; animation: fadeIn 0.8s ease-out; }
#webCheckinPage .header { text-align: center; margin-bottom: 40px; }
#webCheckinPage .logo { font-size: 2.8rem; font-weight: 800; color: var(--wci-light-text); margin-bottom: 10px; letter-spacing: 1px; }
#webCheckinPage .logo span { color: var(--accent-color); }
#webCheckinPage .subtitle { font-size: 1.1rem; color: var(--wci-muted-text); font-weight: 400; }

/* WCI: Step Nav */
#webCheckinPage .step-nav { display: flex; justify-content: space-between; position: relative; margin-bottom: 40px; padding: 0 10px; }
#webCheckinPage .step-progress { position: absolute; top: 28px; left: 5%; right: 5%; height: 2px; background: rgba(255,255,255,0.1); z-index: 0; }
#webCheckinPage .step-progress-fill { position: absolute; top: 0; left: 0; height: 100%; background: linear-gradient(90deg, var(--accent-color), var(--success)); width: 0%; transition: width 0.6s cubic-bezier(0.4,0,0.2,1); box-shadow: 0 0 10px rgba(34,197,94,0.5); }
#webCheckinPage .step { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; flex: 1; max-width: 180px; cursor: pointer; transition: all 0.3s; margin: 0 5px; }
#webCheckinPage .step-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 2px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 15px; transition: all 0.4s cubic-bezier(0.4,0,0.2,1); color: var(--wci-muted-text); }
#webCheckinPage .step.active .step-icon { background: var(--accent-color); border-color: var(--accent-color); box-shadow: 0 10px 25px rgba(34,197,94,0.4); transform: scale(1.1); color: white; }
#webCheckinPage .step.completed .step-icon { background: var(--accent-color-dark); border-color: var(--accent-color-dark); color: white; }
#webCheckinPage .step-label { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--wci-muted-text); transition: all 0.3s; text-align: center; }
#webCheckinPage .step.active .step-label { color: var(--accent-color); font-weight: 800; }
#webCheckinPage .step-desc { font-size: 0.75rem; color: #64748B; margin-top: 6px; text-align: center; max-width: 140px; }

/* WCI: Content Cards */
#webCheckinPage .content-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border-radius: 20px; border: 1px solid rgba(255,255,255,0.15); box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1); overflow: hidden; margin-bottom: 30px; opacity: 0; transform: translateY(20px); transition: all 0.5s cubic-bezier(0.4,0,0.2,1); display: none; }
#webCheckinPage .content-card.active { opacity: 1; transform: translateY(0); display: block; }
#webCheckinPage .card-header { padding: 22px 30px; background: var(--accent-color); border-bottom: 1px solid rgba(255,255,255,0.2); }
#webCheckinPage .card-header h2 { font-size: 1.3rem; font-weight: 700; letter-spacing: 0.5px; display: flex; align-items: center; gap: 12px; }
#webCheckinPage .card-body { padding: 30px; }

/* WCI: Form */
#webCheckinPage .section-title { display: flex; align-items: center; gap: 10px; font-size: 0.75rem; font-weight: 700; color: var(--wci-light-text); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
#webCheckinPage .section-title i { color: var(--accent-color); }
#webCheckinPage .section-subtitle { display: flex; align-items: center; gap: 8px; font-size: 0.7rem; font-weight: 600; color: var(--wci-muted-text); text-transform: uppercase; letter-spacing: 1px; margin: 15px 0 10px 0; }
#webCheckinPage .section-subtitle i { color: var(--accent-color); }
#webCheckinPage .form-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 20px; margin-bottom: 25px; }
#webCheckinPage .form-group { display: flex; flex-direction: column; }
#webCheckinPage .form-group.full-width { grid-column: 1 / -1; }
#webCheckinPage .form-label { display: flex; align-items: center; gap: 6px; font-size: 0.7rem; font-weight: 700; color: var(--wci-muted-text); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.8px; }
#webCheckinPage .form-label.required::after { content: '*'; color: var(--error); font-size: 0.9rem; margin-left: 3px; }
#webCheckinPage .form-input { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 14px 16px; color: var(--wci-light-text); font-size: 0.95rem; transition: all 0.3s; outline: none; }
#webCheckinPage .form-input:focus { background: rgba(255,255,255,0.08); border-color: var(--accent-color); box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
#webCheckinPage .form-input::placeholder { color: #64748B; }
#webCheckinPage .form-input[readonly] { background: rgba(255,255,255,0.03); border-style: dashed; color: var(--wci-muted-text); cursor: not-allowed; }
#webCheckinPage .form-input.flatpickr-input[readonly] { background: rgba(255,255,255,0.05); border-style: solid; color: var(--wci-light-text); cursor: pointer; }
#webCheckinPage select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394A3B8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 16px; padding-right: 40px; }

@media (min-width: 768px) {
    #webCheckinPage .form-grid { grid-template-columns: repeat(2, 1fr); }
    #webCheckinPage .form-grid-3 { grid-template-columns: repeat(3, 1fr); }
    #webCheckinPage .form-grid-4 { grid-template-columns: repeat(4, 1fr); }
    #webCheckinPage .form-grid-5 { grid-template-columns: repeat(5, 1fr); }
}

/* WCI: Upload */
#webCheckinPage .upload-section { margin-bottom: 30px; }
#webCheckinPage .upload-options { display: grid; grid-template-columns: repeat(1, 1fr); gap: 20px; margin-bottom: 25px; }
#webCheckinPage .upload-card { background: rgba(0,0,0,0.2); border-radius: 14px; border: 2px dashed rgba(255,255,255,0.1); padding: 25px 20px; text-align: center; transition: all 0.3s; cursor: pointer; }
#webCheckinPage .upload-card:hover { border-color: var(--accent-color); background: rgba(34,197,94,0.05); transform: translateY(-3px); }
#webCheckinPage .upload-card.active { border-color: var(--accent-color); border-style: solid; background: rgba(34,197,94,0.08); }
#webCheckinPage .upload-icon { font-size: 2.2rem; color: var(--accent-color); margin-bottom: 15px; }
#webCheckinPage .upload-title { font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: var(--wci-light-text); }
#webCheckinPage .upload-desc { font-size: 0.8rem; color: var(--wci-muted-text); margin-bottom: 15px; line-height: 1.4; }
#webCheckinPage .upload-btn { background: rgba(255,255,255,0.1); border: none; border-radius: 8px; padding: 10px 20px; color: white; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
#webCheckinPage .upload-btn:hover { background: rgba(255,255,255,0.2); }
#webCheckinPage .preview-container { margin-top: 20px; padding: 15px; background: rgba(0,0,0,0.2); border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); }
#webCheckinPage .preview-title { font-size: 0.85rem; font-weight: 600; color: var(--wci-muted-text); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
#webCheckinPage .preview-image { width: 100%; max-height: 200px; object-fit: contain; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); }

@media (min-width: 768px) {
    #webCheckinPage .upload-options { grid-template-columns: repeat(2, 1fr); }
}

/* WCI: Doc Type Selector */
#webCheckinPage .doc-type-selector { display: flex; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
#webCheckinPage .doc-type-btn { padding: 12px 24px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: var(--wci-muted-text); font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; gap: 8px; }
#webCheckinPage .doc-type-btn.active { background: rgba(34,197,94,0.15); border-color: var(--accent-color); color: var(--accent-color); }
#webCheckinPage .doc-type-btn:hover:not(.active) { background: rgba(255,255,255,0.1); color: var(--wci-light-text); }

/* WCI: Camera Modal */
#webCheckinPage .camera-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15,23,42,0.95); display: flex; align-items: center; justify-content: center; z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.3s; backdrop-filter: blur(10px); }
#webCheckinPage .camera-modal.active { opacity: 1; visibility: visible; }
#webCheckinPage .camera-content { background: rgba(255,255,255,0.06); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; width: 95%; max-width: 700px; overflow: hidden; transform: scale(0.9); transition: transform 0.3s; box-shadow: 0 25px 50px rgba(0,0,0,0.5); }
#webCheckinPage .camera-modal.active .camera-content { transform: scale(1); }
#webCheckinPage .camera-header { padding: 20px 30px; background: var(--accent-color); display: flex; justify-content: space-between; align-items: center; }
#webCheckinPage .camera-title { font-size: 1.1rem; font-weight: 600; display: flex; align-items: center; gap: 10px; }
#webCheckinPage .camera-close { background: none; border: none; color: white; font-size: 1.3rem; cursor: pointer; transition: all 0.2s; }
#webCheckinPage .camera-close:hover { transform: rotate(90deg); }
#webCheckinPage .camera-body { padding: 25px; }
#webCheckinPage .camera-view { width: 100%; border-radius: 12px; overflow: hidden; border: 2px solid rgba(255,255,255,0.1); }
#webCheckinPage .camera-controls { display: flex; justify-content: center; align-items: center; gap: 20px; margin-top: 30px; }
#webCheckinPage .camera-btn { width: 60px; height: 60px; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.3rem; transition: all 0.3s; }
#webCheckinPage .camera-capture { background: var(--accent-color); color: white; box-shadow: 0 10px 20px rgba(34,197,94,0.4); }
#webCheckinPage .camera-capture:hover { background: var(--accent-color-dark); transform: scale(1.1); box-shadow: 0 15px 30px rgba(34,197,94,0.5); }
#webCheckinPage .camera-secondary { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); }
#webCheckinPage .camera-secondary:hover { background: rgba(255,255,255,0.2); }

/* WCI: Action Buttons */
#webCheckinPage .action-buttons { display: flex; justify-content: space-between; padding-top: 30px; margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.08); }
#webCheckinPage .btn { padding: 14px 30px; border-radius: 10px; font-weight: 700; font-size: 0.9rem; cursor: pointer; border: none; transition: all 0.3s; display: inline-flex; align-items: center; gap: 10px; letter-spacing: 0.5px; }
#webCheckinPage .btn-prev { background: rgba(255,255,255,0.05); color: var(--wci-muted-text); border: 1px solid rgba(255,255,255,0.1); }
#webCheckinPage .btn-prev:hover { background: rgba(255,255,255,0.1); color: white; transform: translateX(-3px); }
#webCheckinPage .btn-next { background: var(--accent-color); color: white; box-shadow: 0 10px 20px rgba(34,197,94,0.3); }
#webCheckinPage .btn-next:hover { background: var(--accent-color-dark); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(34,197,94,0.4); }
#webCheckinPage .btn-submit { background: linear-gradient(135deg, var(--accent-color), var(--accent-color-dark)); color: white; box-shadow: 0 10px 20px rgba(34,197,94,0.3); }
#webCheckinPage .btn-submit:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(34,197,94,0.4); }

/* WCI: Extra Driver */
#webCheckinPage .extra-driver-section { margin-top: 30px; padding: 25px; background: rgba(0,0,0,0.2); border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); }
#webCheckinPage .extra-driver-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
#webCheckinPage .toggle-extra-driver { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 8px 16px; color: var(--wci-muted-text); font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; gap: 8px; }
#webCheckinPage .toggle-extra-driver:hover { background: rgba(255,255,255,0.1); color: var(--wci-light-text); }
#webCheckinPage .toggle-extra-driver.active { background: rgba(34,197,94,0.15); border-color: var(--accent-color); color: var(--accent-color); }

/* WCI: Footer & Misc */
#webCheckinPage .divider { height: 1px; background: rgba(255,255,255,0.08); margin: 30px 0; }
#webCheckinPage .footer { text-align: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.85rem; color: var(--wci-muted-text); }
#webCheckinPage .footer a { color: var(--accent-color); text-decoration: none; font-weight: 600; }
#webCheckinPage .footer a:hover { text-decoration: underline; }
#webCheckinPage .error-message { color: var(--error); font-size: 0.75rem; margin-top: 5px; display: none; }
#webCheckinPage .form-input.error { border-color: var(--error); box-shadow: 0 0 0 3px rgba(239,68,68,0.2); }
#webCheckinPage .text-green { color: var(--accent-color) !important; }
#webCheckinPage .mb-20 { margin-bottom: 20px; }
#webCheckinPage .mt-20 { margin-top: 20px; }
#webCheckinPage .required-license { border-left: 4px solid var(--accent-color) !important; background: rgba(34,197,94,0.05) !important; padding: 20px; border-radius: 12px; margin-top: 20px; }
#webCheckinPage .license-required-text { color: var(--accent-color) !important; font-weight: 600; }
#webCheckinPage .license-section-title { color: var(--accent-color) !important; border-bottom: 2px solid var(--accent-color) !important; }
#webCheckinPage .mandatory-badge { background: var(--accent-color); color: white; font-size: 0.7rem; padding: 3px 8px; border-radius: 4px; margin-left: 8px; font-weight: 600; }

/* WCI: Error Alert */
#webCheckinPage .wci-error-alert { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; padding: 14px 18px; border-radius: 8px; margin-bottom: 22px; font-size: 0.95rem; }

/* WCI: Address span 2 columns */
#webCheckinPage .wci-addr-span2 { grid-column: span 2; }

/* WCI: Extra driver section-title reset */
#webCheckinPage .wci-section-title-reset { margin: 0; padding: 0; border: none; }

/* WCI: Muted description text */
#webCheckinPage .wci-muted-desc { color: var(--wci-muted-text); font-size: 0.85rem; margin-bottom: 15px; opacity: 0.7; }
#webCheckinPage .wci-muted-desc-license { color: var(--wci-muted-text); font-size: 0.85rem; margin-bottom: 25px; opacity: 0.7; }

/* WCI: Confirm page styles */
#webCheckinPage .wci-confirm-heading { font-size: 1.3rem; font-weight: 600; margin-bottom: 12px; }
#webCheckinPage .wci-confirm-step { color: var(--wci-muted-text); margin-bottom: 8px; line-height: 1.6; }
#webCheckinPage .wci-confirm-text { color: var(--wci-muted-text); margin-bottom: 24px; line-height: 1.6; font-size: 0.9rem; }
#webCheckinPage .wci-tos-box { margin: 24px 0; padding: 20px; background: rgba(255,255,255,0.05); border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); }
#webCheckinPage .wci-tos-label { display: flex; align-items: center; gap: 12px; cursor: pointer; font-size: 0.95rem; }
#webCheckinPage .wci-tos-checkbox { width: 20px; height: 20px; flex-shrink: 0; }
#webCheckinPage .wci-tos-link { color: var(--primary-color); text-decoration: underline; }
#webCheckinPage .wci-actions-center { justify-content: center; }

/* WCI: Success page */
#webCheckinPage .wci-success-header { background: linear-gradient(135deg, var(--success-dark), var(--success)); }
#webCheckinPage .wci-success-body { text-align: center; padding: 60px 30px; }
#webCheckinPage .wci-success-icon { margin-bottom: 30px; }
#webCheckinPage .wci-success-icon,
#webCheckinPage .checkin-success-icon { display: flex; justify-content: center; }
#webCheckinPage .wci-success-icon img,
#webCheckinPage .checkin-success-icon img { border-radius: 50%; box-shadow: 0 0 30px rgba(34, 197, 94, 0.4); background: transparent; max-width: 120px; height: auto; }
#webCheckinPage .wci-success-img { max-width: 100%; height: auto; }
#webCheckinPage .wci-success-title { font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; color: var(--success-dark); }
#webCheckinPage .wci-success-subtitle { font-size: 1.1rem; color: var(--wci-muted-text); margin-bottom: 8px; }
#webCheckinPage .wci-success-text { font-size: 0.9rem; color: var(--wci-muted-text); }
#webCheckinPage .wci-success-action { margin-top: 40px; }
#webCheckinPage .wci-success-btn { display: inline-flex; text-decoration: none; }

@media (max-width: 767px) {
    #webCheckinPage { padding: 30px 20px; }
    #webCheckinPage .card-header { padding: 16px 20px; }
    #webCheckinPage .card-header h2 { font-size: 1.1rem; }
    #webCheckinPage .card-body { padding: 20px 18px; }
    #webCheckinPage .upload-section { margin-bottom: 16px; }
    #webCheckinPage .upload-options { gap: 12px; margin-bottom: 16px; }
    #webCheckinPage .upload-card { padding: 18px 12px; }
    #webCheckinPage .upload-icon { font-size: 1.8rem; margin-bottom: 10px; }
    #webCheckinPage .upload-title { font-size: 0.9rem; }
    #webCheckinPage .upload-desc { font-size: 0.75rem; margin-bottom: 10px; }
    #webCheckinPage .section-title { margin-bottom: 14px; padding-bottom: 8px; font-size: 0.7rem; }
    #webCheckinPage .content-card { border-radius: 14px; margin-bottom: 16px; }
    #webCheckinPage .form-grid { gap: 14px; margin-bottom: 16px; }
    #webCheckinPage .camera-body { padding: 14px; }
    #webCheckinPage .form-grid-4 { grid-template-columns: 1fr !important; }
    #webCheckinPage .form-grid-4 .form-group { grid-column: 1 / -1 !important; }
    #webCheckinPage .wci-addr-span2 { grid-column: 1 / -1; }
    #webCheckinPage .wci-success-body { padding: 30px 14px; }
}


/* ==========================================================================
   14. FLATPICKR CUSTOMIZATION
   ========================================================================== */
.flatpickr-input { border-radius: 1.25rem; padding: 0.85rem 1.25rem; border: none; background: #f0f0f3; box-shadow: inset 6px 6px 12px #d1d5db, inset -6px -6px 12px var(--shadow-light), 2px 2px 6px rgba(0,0,0,0.05); font-size: 1rem; font-family: 'Inter', sans-serif; color: #111827; transition: all 0.25s ease-in-out; }
.flatpickr-input:hover { box-shadow: inset 4px 4px 8px #d1d5db, inset -4px -4px 8px var(--shadow-light), 3px 3px 10px rgba(0,0,0,0.1); }
.flatpickr-input:focus { outline: none; box-shadow: inset 2px 2px 6px #d1d5db, inset -2px -2px 6px var(--shadow-light), 0 0 8px var(--accent-color); }
.flatpickr-calendar { border-radius: 1rem; border: 1px solid var(--accent-color); box-shadow: 0 12px 24px rgba(0,0,0,0.15); font-family: 'Inter', sans-serif; background-color: var(--white); overflow: hidden; opacity: 0; transform: translateY(-10px); transition: opacity 0.3s ease, transform 0.3s ease; }
.flatpickr-calendar.open { opacity: 1; transform: translateY(0); }
.flatpickr-months { background-color: var(--accent-color); color: white; font-weight: 600; }
.flatpickr-day { border-radius: 0.5rem; transition: all 0.25s ease; font-weight: 500; }
.flatpickr-day:hover { background-color: var(--flatpickr-hover-bg); color: var(--flatpickr-hover-text); transform: scale(1.1); }
.flatpickr-day.selected { background-color: var(--accent-color-dark); color: white; box-shadow: 0 2px 6px rgba(0,0,0,0.15); transform: scale(1.05); }
.flatpickr-day.today { border: 1px solid var(--accent-color); }
.flatpickr-time input { border-radius: 0.75rem; border: none; background: #f0f0f3; box-shadow: inset 3px 3px 6px #d1d5db, inset -3px -3px 6px var(--shadow-light); padding: 0.35rem 0.6rem; font-family: 'Inter', sans-serif; color: #111827; transition: all 0.25s ease-in-out; }
.flatpickr-time input:hover, .flatpickr-time input:focus { box-shadow: inset 2px 2px 4px #d1d5db, inset -2px -2px 4px var(--shadow-light), 0 0 6px var(--accent-color); }
.flatpickr-prev-month, .flatpickr-next-month { color: var(--accent-color); transition: all 0.2s ease; }
.flatpickr-prev-month:hover, .flatpickr-next-month:hover { transform: scale(1.2); }


/* ==========================================================================
   15. ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes slideInUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0px) translateX(0px); } 50% { transform: translateY(-8px) translateX(8px); } }
@keyframes float-slow { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(10px); } }
.animate-float { animation: float 7s ease-in-out infinite; }
.animate-float-slow { animation: float-slow 10s ease-in-out infinite; }
.animate-slide-up { animation: slideInUp 0.5s ease-out forwards; }


/* ==========================================================================
   16. FOOTER
   ========================================================================== */
footer .text-custom-accent { color: var(--accent-color-dark); }
footer .bg-custom-accent { background-color: var(--accent-color-dark); }
footer .hover\:text-custom-accent:hover { color: var(--accent-color-dark); }
footer .border-custom-accent\/30 { border-color: var(--accent-border-subtle); }
footer .footer-link-item { display: flex; align-items: center; gap: 10px; }
footer .footer-link-item::before { content: ""; width: 10px; height: 1px; background-color: var(--accent-text-70); display: inline-block; flex-shrink: 0; transition: all 0.3s ease; }
footer li:hover .footer-link-item::before { width: 18px; background-color: var(--accent-color-dark); }
footer .footer-le-logo { max-width: 200px; }
footer .footer-social-item { list-style: none; display: inline-block; margin-right: 10px; }

/* ==========================================================================
   17. UTILITIES
   ========================================================================== */
.hidden { display: none; }


/* ==========================================================================
   18. BOOKING CONFIRMATION PAGE
   ========================================================================== */
 /* ==========================================================================
   18. BOOKING CONFIRMATION PAGE (FINAL MINIMAL BLUE)
   ========================================================================== */

/* --- Main Container (glass outer shell) --- */
.confirm-container {
    max-width: 1050px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    animation: confirmFadeIn 0.6s ease-out both;
}

@keyframes confirmFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- Success Banner (glass gradient) --- */
.confirm-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(16 185 129) 0%, rgba(5 150 105) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: none;
    padding: 30px 25px 26px;
    text-align: center;
    color: #fff;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}
/* Subtle shimmer overlay on the banner */
.confirm-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, var(--accent-bg-radial) 0%, transparent 55%),
                radial-gradient(ellipse at 75% 60%, rgba(59, 130, 246, 0.12) 0%, transparent 55%);
    z-index: 0;
    pointer-events: none;
    animation: bannerShimmer 8s ease-in-out infinite alternate;
}
@keyframes bannerShimmer {
    0%   { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1;   transform: scale(1.04); }
}

.confirm-banner-title {
    position: relative; z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
}
.confirm-banner-title i {
    font-size: 30px;
    color: var(--accent-color-mid);
    filter: drop-shadow(0 0 14px var(--accent-glow));
    animation: pulseGlow 2.4s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% { transform: scale(1);    filter: drop-shadow(0 0 14px var(--accent-glow)); }
    50%      { transform: scale(1.1);  filter: drop-shadow(0 0 22px var(--accent-glow-strong)); }
}
.confirm-banner h2 {
    font-size: 21px;
    font-weight: 800;
    margin: 0;
    color: #fff;
    letter-spacing: 0.4px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.confirm-message-box {
    position: relative; z-index: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 14px 20px;
    max-width: 680px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.65;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255,255,255,0.92);
}

/* "New Booking" pill link (if present) */
.confirm-new-booking {
    position: relative; z-index: 1;
    display: inline-block;
    margin-top: 16px;
    padding: 9px 24px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 24px;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.confirm-new-booking:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    color: #fff;
    text-decoration: none;
}
.confirm-new-booking i { margin-right: 6px; }

/* --- Body (frosted dark surface) --- */
.confirm-body {
    padding: 22px;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-top: none;
    border-radius: 0 0 20px 20px;
}
.confirm-mb { margin-bottom: 18px; }

/* --- 2-Column Grid --- */
.confirm-grid-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 18px;
    align-items: stretch;
}
@media (min-width: 992px) {
    .confirm-grid-2col { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   GLASS CARDS  (shared by all confirm-card)
   ============================================= */
.confirm-card {
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28),
                inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.confirm-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.38),
                inset 0 1px 0 rgba(255, 255, 255, 0.10);
    transform: translateY(-3px);
}

.confirm-card-header {
    padding: 14px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.06);
}
.confirm-card-header h3 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 9px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.confirm-card-header h3 i {
    color: var(--accent-color-mid);
    font-size: 15px;
    filter: drop-shadow(0 0 6px var(--accent-glow-soft));
}
.confirm-meta {
    font-size: 11px;
    color: #cbd5e1;
    font-weight: 500;
    text-align: right;
}
.confirm-duration {
    display: block;
    color: var(--accent-color-mid);
    font-weight: 700;
    margin-top: 2px;
}
.confirm-card-body {
    padding: 18px 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* =============================================
   RENTAL DETAILS — Timeline
   ============================================= */
.confirm-rental-info { display: flex; flex-direction: column; gap: 0; }

.confirm-loc-row {
    position: relative;
    padding-left: 24px;
    padding-bottom: 18px;
    border-left: 2px dashed rgba(255, 255, 255, 0.10);
    margin-left: 6px;
    display: flex;
    align-items: center;
}
.confirm-loc-row:last-of-type,
.confirm-loc-row:last-child { border-left-color: transparent; padding-bottom: 0; }

.confirm-loc-bullet {
    position: absolute;
    left: -7px; top: 5px;
    width: 12px; height: 12px;
    border-radius: 50%;
    border: 2px solid;
}
.confirm-loc-bullet.pickup {
    border-color: #60a5fa;
    background: #3b82f6;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.55);
}
.confirm-loc-bullet.dropoff {
    border-color: #f87171;
    background: #ef4444;
    box-shadow: 0 0 12px rgba(248, 113, 113, 0.55);
}

.confirm-loc-data {
    display: flex; flex-wrap: wrap;
    align-items: center; gap: 14px; width: 100%;
}
.confirm-loc-label {
    font-size: 10px; font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase; letter-spacing: 1px;
    min-width: 70px; text-align: left;
}
.confirm-loc-place {
    font-size: 14px; font-weight: 600; color: #f1f5f9;
}
.confirm-loc-dt {
    font-size: 12px; color: #cbd5e1; margin-left: auto;
}
.confirm-loc-dt i { color: #94a3b8; margin-right: 3px; }

@media (max-width: 500px) {
    .confirm-loc-dt {
        margin-left: 0; width: 100%;
        padding-left: 85px; margin-top: -6px; font-size: 11px;
    }
}

.confirm-vehicle-info {
    margin-top: 18px; padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex; flex-wrap: wrap;
    justify-content: space-between; align-items: center;
    font-size: 13px; color: #f1f5f9;
}
.confirm-vehicle-info > div { color: #f1f5f9; }
.confirm-vehicle-info i { color: var(--accent-color-mid); }
.confirm-vehicle-cat {
    background: var(--accent-bg-subtle);
    color: var(--accent-color-mid);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    border: 1px solid var(--accent-border-subtle);
}

/* =============================================
   CUSTOMER DETAILS
   ============================================= */
.confirm-customer-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 20px; row-gap: 10px;
    font-size: 13px;
}
.cust-label { color: #94a3b8; font-weight: 500; text-align: left; }
.cust-value { color: #e2e8f0; font-weight: 600; text-align: right; }

.confirm-special-requests { margin-top: auto; padding-top: 15px; }
.confirm-special-box {
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.25);
    color: #fbbf24;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13px;
}
.confirm-special-box .label {
    font-weight: 700; display: block; margin-bottom: 4px;
    font-size: 11px; text-transform: uppercase; opacity: 0.85;
}
.confirm-special-box p {
    margin: 0; font-size: 13px; font-weight: 400;
    color: #fde68a; line-height: 1.5;
}

/* =============================================
   COST BREAKDOWN
   ============================================= */
.confirm-cost-row {
    display: flex; justify-content: space-between;
    padding: 6px 0; font-size: 13px;
    color: #cbd5e1;
}
.confirm-cost-row .cost-label { color: #cbd5e1; }
.confirm-cost-row .cost-value {
    font-weight: 600; color: #e2e8f0;
    font-family: 'Montserrat', sans-serif;
}

.confirm-cost-extras-section {
    background: rgba(255, 255, 255, 0.06);
    padding: 10px 14px;
    border-radius: 8px;
    margin: 8px 0;
    border: 1px solid rgba(255, 255, 255, 0.07);
}
.confirm-cost-extras-label {
    font-size: 10px; font-weight: 700;
    color: #94a3b8; text-transform: uppercase;
    margin-bottom: 4px; display: block; letter-spacing: 0.5px;
}
.confirm-cost-extra-item {
    display: flex; justify-content: space-between;
    font-size: 12px; padding: 3px 0; color: #cbd5e1;
}

.confirm-subtotal-row {
    border-top: 1px dashed rgba(255, 255, 255, 0.10);
    margin-top: 8px; padding-top: 8px; font-weight: 600;
}
.confirm-subtotal-row .cost-label,
.confirm-subtotal-row .cost-value { color: #e2e8f0; }

.discount { color: #f87171 !important; }
.discount .cost-label { color: #f87171 !important; }
.discount .cost-value { color: #f87171 !important; }

/* Grand Total — glowing green glass */
.confirm-grand-total {
    background: var(--accent-bg-glass);
    border: 1px solid var(--accent-border-medium);
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: auto;
    box-shadow: 0 0 20px var(--accent-glow-faint);
}
.confirm-grand-total-row {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 5px;
}
.gt-label { font-size: 14px; font-weight: 700; color: var(--accent-color-mid); }
.gt-value {
    font-size: 22px; font-weight: 800; color: var(--accent-color-mid);
    text-shadow: 0 0 18px var(--accent-glow-dim);
}

.confirm-payment-method-row {
    display: flex; justify-content: space-between;
    font-size: 12px; color: var(--accent-text-85);
}
.pm-label { color: var(--accent-text-70); }
.pm-value { font-weight: 600; color: var(--accent-color-mid); }

/* =============================================
   PAYMENT DETAILS — Blue glass panel
   ============================================= */
.payment-minimal-box {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.18);
    border-radius: 10px;
    padding: 20px;
    display: flex; align-items: flex-start;
    justify-content: flex-start; flex-wrap: wrap;
    gap: 30px;
}
.pay-item { display: flex; flex-direction: column; }
.pay-item .lbl {
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: #94a3b8; margin-bottom: 5px;
}
.pay-item .val {
    font-size: 14px; font-weight: 600;
    color: #93c5fd;
}
.pay-item.full-width {
    width: 100%; margin-top: 12px; padding-top: 12px;
    border-top: 1px solid rgba(96, 165, 250, 0.15);
}
.pay-item.full-width .val {
    font-family: 'Courier New', monospace;
    font-size: 14px; line-height: 1.7;
    color: #93c5fd;
}

/* =============================================
   PRINT BUTTON — glass pill
   ============================================= */
.confirm-print-area { text-align: center; margin-top: 22px; }
.confirm-print-btn {
    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #e2e8f0;
    padding: 11px 32px;
    border-radius: 50px;
    font-weight: 600; font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}
.confirm-print-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    color: #fff;
}
.confirm-print-btn i { margin-right: 6px; }

/* --- Booking Confirm: Mobile Optimization --- */
@media (max-width: 768px) {
    .hero:has(.confirm-container) { padding-left: 8px; padding-right: 8px; }
    .confirm-container { width: 100%; }
    .confirm-body { padding: 10px 6px; }
    .confirm-banner { padding: 20px 12px 18px; border-radius: 14px 14px 0 0; }
    .confirm-banner h2 { font-size: 17px; }
    .confirm-message-box { padding: 10px 12px; font-size: 12px; }
    .confirm-card { border-radius: 10px; }
    .confirm-card-header { padding: 10px 12px; }
    .confirm-card-header h3 { font-size: 13px; }
    .confirm-card-body { padding: 12px; }
    .confirm-customer-grid { column-gap: 12px; row-gap: 8px; font-size: 12px; }
    .confirm-cost-row { font-size: 12px; }
    .confirm-loc-label { min-width: 55px; font-size: 9px; }
    .confirm-loc-place { font-size: 13px; }
    .confirm-loc-dt { font-size: 11px; }
    .confirm-vehicle-info { font-size: 12px; }
    .confirm-grand-total { padding: 10px 12px; }
    .gt-label { font-size: 13px; }
    .gt-value { font-size: 20px; }
    .confirm-meta { font-size: 11px; }
    .payment-minimal-box { padding: 14px; gap: 16px; }
}


/* ==========================================================================
   19. WEB CHECK-IN HELPERS
   ========================================================================== */
.error-alert { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; }
.section-title-inline { margin: 0; padding: 0; border: none; }
.form-group-wide { grid-column: span 2; }
.upload-info-text { color: var(--muted-text); font-size: 0.85rem; margin-bottom: 15px; }
.upload-info-text-lg { color: var(--muted-text); font-size: 0.85rem; margin-bottom: 25px; }
.flash-active { color: #FFD700; }

/* --- Web Check-in Confirm/Success (web_check_in_2.php) --- */
.checkin-confirm-title { font-size: 1.3rem; font-weight: 600; margin-bottom: 12px; }
.checkin-confirm-subtitle { color: var(--muted-text); margin-bottom: 8px; line-height: 1.6; }
.checkin-confirm-text { color: var(--muted-text); margin-bottom: 24px; line-height: 1.6; font-size: 0.9rem; }
.checkin-tos-container { margin: 24px 0; padding: 20px; background: rgba(255,255,255,0.05); border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); }
.checkin-tos-label { display: flex; align-items: center; gap: 12px; cursor: pointer; font-size: 0.95rem; }
.checkin-tos-checkbox { width: 20px; height: 20px; flex-shrink: 0; }
.checkin-tos-link { color: var(--primary-blue); text-decoration: underline; }
.checkin-actions-center { justify-content: center; }
.checkin-success-header { background: linear-gradient(135deg, var(--success-dark), var(--success)); }
.checkin-success-body { text-align: center; padding: 60px 30px; }
.checkin-success-icon { margin-bottom: 30px; }
.checkin-success-title { font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; color: var(--success-dark); }
.checkin-success-text { font-size: 1.1rem; color: var(--muted-text); margin-bottom: 8px; }
.checkin-success-subtext { font-size: 0.9rem; color: var(--muted-text); }
.checkin-success-actions { margin-top: 40px; }
.checkin-success-btn { display: inline-flex; text-decoration: none; }

/* ==========================================================================
   19b. SEARCH SUMMARY BAR (vehicle results page - below navigation)
   ========================================================================== */
.ez-search-summary-bar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.ez-search-summary-bar .font-medium {
    color: #374151;
}

/* ==========================================================================
   20. PRINT STYLES
   ========================================================================== */
@media print {
    body * { visibility: hidden; }
    .no-print { display: none !important; }
    .print-area { display: block !important; visibility: visible !important; position: absolute; left: 0; top: 0; width: 100%; margin: 0; padding: 0; }
    .print-area * { visibility: visible !important; }
}


/* ==========================================================================
   21. CATEGORY FILTER PILLS
   ========================================================================== */

/* Pill bar container - hidden by default, JS shows it */
#categoryPillsBar { display: none; }
.ez-category-pills-bar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 0;
}

/* Horizontal scroll wrapper */
.ez-category-pills-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
}
.ez-category-pills-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Pills flex container */
.ez-category-pills-container {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    align-items: center;
}

/* Individual pill button */
.ez-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 14px;
    border-radius: 7px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    color: #555;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
    line-height: 1.35;
}

/* Hover: subtle lift + light shadow */
.ez-category-pill:hover {
    background: #f8f8f8;
    border-color: #ccc;
    color: #333;
    box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}

/* Active: accent border + accent text (no fill) */
.ez-category-pill--active {
    border-color: var(--accent-color, #22c55e);
    color: var(--accent-color-dark, #16a34a);
    background: var(--accent-glow-faint, rgba(52, 211, 153, 0.08));
    font-weight: 600;
}

.ez-category-pill--active:hover {
    background: var(--accent-glow-faint, rgba(52, 211, 153, 0.08));
    border-color: var(--accent-color-dark, #16a34a);
    color: var(--accent-color-dark, #16a34a);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.15);
}

/* Count badge inside pill */
.ez-category-pill .ez-pill-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 5px;
    background: #f0f0f0;
    font-size: 0.68rem;
    font-weight: 600;
    color: #888;
    transition: all 0.2s;
}

.ez-category-pill:hover .ez-pill-count {
    background: #e8e8e8;
    color: #555;
}

.ez-category-pill--active .ez-pill-count {
    background: var(--accent-bg-subtle, rgba(52, 211, 153, 0.14));
    color: var(--accent-color-dark, #16a34a);
}

/* Mobile: no wrap, horizontal scroll */
@media (max-width: 768px) {
    .ez-category-pills-container {
        flex-wrap: nowrap;
    }
    .ez-category-pill {
        padding: 4px 11px;
        font-size: 0.76rem;
    }
}

/* ==========================================================================
   21b. MOBILE VEHICLE CARD OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 767px) {
    /* Vehicle card: no hover lift on touch */
    .vehicle-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    /* Pricing grid: stay 2-col but tighter on mobile */
    .ez-pricing-grid {
        gap: 8px;
    }
    .ez-price-card {
        padding: 10px;
    }
    .ez-price-value {
        font-size: 20px;
    }
    .ez-price-value--large {
        font-size: 24px;
    }
    .ez-book-btn {
        padding: 10px;
        font-size: 0.85rem;
    }

    /* Vehicle image: handled below with full-width rule */

    /* Price includes: single column on mobile */
    .vehicle-card .grid.grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Search summary bar: compact on mobile */
    .ez-search-summary-bar .text-sm {
        font-size: 0.75rem;
    }
    .ez-search-summary-bar .container {
        padding-top: 6px;
        padding-bottom: 6px;
    }
    .ez-search-summary-bar .py-3 {
        padding-top: 6px;
        padding-bottom: 6px;
    }

    /* Category pills: compact on mobile */
    .ez-category-pills-bar {
        padding: 6px 0;
    }

    /* Main content: less top padding */
    main.container {
        padding-top: 12px;
        padding-bottom: 16px;
    }

    /* Results header: compact on mobile */
    .flex.flex-wrap.items-center.justify-between.gap-4.mb-4 {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 4px 8px;
        margin-bottom: 6px;
    }

    /* Sidebar column: less gap on mobile */
    .ez-sidebar-column {
        gap: 8px !important;
    }

    /* Modify Search wrapper: compact on mobile */
    .ez-sf-wrapper {
        margin-bottom: 6px;
    }

    /* Vehicle image: full width, no crop */
    .ez-vehicle-img {
        max-height: none;
        width: 100%;
        height: auto;
    }
}

/* ==========================================================================
   21. JS STATE CLASSES
   All interactive state changes use these classes instead of inline styles.
   Override via custom.css by redefining --accent-color or these classes.
   ========================================================================== */

/* --- Book/Price button states --- */
.ez-btn--selected {
    background: var(--accent-color) !important;
    color: #fff !important;
    cursor: default !important;
}
.ez-btn--disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}
.ez-btn--default {
    /* Default "Book Now" button color - override in custom.css */
    background: var(--book-btn-color, var(--accent-color-dark));
    opacity: 1;
    cursor: pointer;
    color: #fff;
}

/* --- Price card states --- */
.ez-price-card--selected {
    box-shadow: 0 0 0 3px var(--accent-color) !important;
    background-color: var(--accent-selected-bg, #f0fdf4) !important;
}
.ez-price-card--disabled {
    opacity: 0.5 !important;
}
.ez-price-card--reset {
    opacity: 1;
    box-shadow: none;
    background-color: white;
}

/* --- Vehicle card states --- */
.ez-vehicle-card--selected {
    border: 3px solid var(--accent-color) !important;
}
.ez-vehicle-card--hidden {
    display: none !important;
}

/* --- Booking section states --- */
.booking-section.open {
    height: auto;
    opacity: 1;
}

/* --- Tab visibility (JS controlled) --- */
.ez-tab--visible {
    display: block !important;
}
.ez-tab--hidden {
    display: none !important;
}

/* --- Payment option states --- */
.ez-payment--active {
    background-color: var(--accent-selected-bg, #f0fdf4);
    border-color: var(--accent-color-light) !important;
}

/* --- Collapsible sections --- */
.ez-collapse--hidden {
    display: none;
}
.ez-collapse--visible {
    display: block;
}

/* --- Utility: icon spacing --- */
.ez-icon-mr {
    margin-right: 5px;
}
.ez-flash--on {
    color: #FFD700;
}
.ez-progress--full {
    width: 100%;
}
.ez-text-danger {
    color: #F00;
}

/* ============================================
   22. MANAGE BOOKING PAGE (#manageBookingPage)
   ============================================ */
#manageBookingPage {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

#manageBookingPage .mb-container {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

#manageBookingPage .mb-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

#manageBookingPage .mb-card-header {
    background: #22c55e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 25px;
}

#manageBookingPage .mb-card-header h2 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

#manageBookingPage .mb-card-header h2 i {
    color: #ffffff;
    font-size: 1.1rem;
}

#manageBookingPage .mb-card-body {
    padding: 25px;
}

#manageBookingPage .mb-section-title {
    color: #22c55e;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
}

#manageBookingPage .mb-section-title i {
    font-size: 0.85rem;
}

#manageBookingPage .mb-form-group {
    margin-bottom: 18px;
}

#manageBookingPage .mb-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

#manageBookingPage .mb-label i {
    color: #22c55e;
    font-size: 0.8rem;
}

#manageBookingPage .mb-input {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #f1f5f9;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

#manageBookingPage .mb-input::placeholder {
    color: rgba(148, 163, 184, 0.5);
    font-size: 0.85rem;
}

#manageBookingPage .mb-input:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

#manageBookingPage .mb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 28px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 6px;
}

#manageBookingPage .mb-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}

#manageBookingPage .mb-btn:active {
    transform: translateY(0);
}

#manageBookingPage .mb-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

#manageBookingPage .mb-error {
    color: #f87171;
    font-size: 0.75rem;
    margin-top: 4px;
    display: none;
}

/* ============================================================
   23. FLEET PAGE - Pricing Card
   ============================================================ */

.ez-fleet-pricing {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ez-fleet-price-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 0.75rem;
    border: 2px solid var(--ez-accent, #22c55e);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    transition: box-shadow 0.3s;
}

.ez-fleet-price-card:hover {
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.25);
}

.ez-fleet-price-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.ez-fleet-price-value {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--ez-accent, #22c55e);
    display: block;
    line-height: 1.2;
}

.ez-fleet-price-unit {
    font-size: 0.875rem;
    color: #9ca3af;
}

.ez-fleet-vat {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.ez-fleet-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    margin-top: 0.75rem;
    background: var(--ez-cta-bg, #22c55e);
    color: var(--ez-cta-text, #fff);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    cursor: pointer;
    border: none;
}

.ez-fleet-book-btn:hover {
    background: var(--ez-cta-hover, #22c55e);
    transform: translateY(-1px);
}

.ez-fleet-book-btn:active {
    transform: translateY(0);
}


/* ==========================================================================
   21. MODEL PAGE (model.php)
   ========================================================================== */

/* Main container */
.model-page {
    background: var(--light-bg, #f4f5f7);
    min-height: 100vh;
    padding-bottom: 3rem;
}

.model-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

/* Top row: Title + Price aligned */
.model-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
    .model-top-row {
        grid-template-columns: 1fr;
    }
}

/* Two column layout */
.model-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 991px) {
    .model-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== LEFT COLUMN ===== */
.model-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Vehicle header card */
.model-header-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 2rem 1.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.model-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color, #1a1a1a);
    margin: 0;
    line-height: 1.2;
}

.model-subtitle {
    font-size: 1rem;
    color: var(--text-muted, #6c757d);
    margin-top: 0.25rem;
}

.model-title-divider {
    height: 3px;
    background: var(--accent-color, #22c55e);
    border: none;
    margin-top: 1rem;
    border-radius: 2px;
}

/* Image card */
.model-image-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    position: relative;
    text-align: center;
}

.model-image-card img {
    max-width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: contain;
}

.model-category-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--accent-color, #22c55e);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

/* Technical Specs */
.model-specs-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.model-specs-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-color, #22c55e);
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color, #22c55e);
    display: inline-block;
}

.model-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

@media (max-width: 600px) {
    .model-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.model-spec-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fafbfc;
    transition: border-color 0.2s;
}

.model-spec-item:hover {
    border-color: var(--accent-color, #22c55e);
}

.model-spec-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color, #22c55e);
    font-size: 1rem;
    flex-shrink: 0;
}

.model-spec-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.model-spec-value {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-color, #1a1a1a);
}

.model-spec-label {
    font-size: 0.78rem;
    color: var(--text-muted, #6c757d);
}


/* ===== RIGHT COLUMN ===== */
.model-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Price badge */
.model-price-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem 2rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    text-align: center;
    border: 1px solid #e5e7eb;
}

/* Match height with header card */
.model-price-card--aligned {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

.model-price-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color, #22c55e);
    line-height: 1.1;
}

.model-price-amount .model-price-currency {
    font-size: 1.6rem;
    vertical-align: super;
    margin-right: 2px;
}

.model-price-label {
    font-size: 0.85rem;
    color: var(--text-muted, #6c757d);
    font-weight: 500;
    margin-top: 0.15rem;
}

/* Not available state */
.model-price-na {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted, #6c757d);
}

/* Search form card */
.model-form-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.model-form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color, #1a1a1a);
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.model-form-title i {
    color: var(--accent-color, #22c55e);
}

.model-form-divider {
    border: none;
    height: 1px;
    background: #e5e7eb;
    margin: 0 0 1rem;
}

/* Form fields */
.mf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.mf-field {
    display: flex;
    flex-direction: column;
}

.mf-field.mf-full {
    grid-column: 1 / -1;
}

.mf-field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-color, #333);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.mf-field label i {
    color: var(--accent-color, #22c55e);
    font-size: 0.72rem;
}

.mf-field select,
.mf-field input[type="text"] {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.88rem;
    color: var(--text-color, #333);
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    font-family: 'Roboto', sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

.mf-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    padding-right: 2rem;
}

.mf-field select:focus,
.mf-field input[type="text"]:focus {
    border-color: var(--accent-color, #22c55e);
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.1);
}

/* Submit button */
.mf-submit {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--accent-color, #22c55e);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.2s, transform 0.1s;
    margin-top: 0.5rem;
}

.mf-submit:hover {
    background: var(--accent-color-dark, #16a34a);
    transform: translateY(-1px);
}

/* Price Includes card */
.model-includes-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.model-includes-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-color, #1a1a1a);
    margin: 0 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.model-includes-title i {
    color: var(--accent-color, #22c55e);
}

.model-includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.model-includes-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: var(--text-color, #333);
}

.model-includes-list li i {
    color: var(--accent-color, #22c55e);
    font-size: 0.85rem;
    flex-shrink: 0;
}


/* ==========================================================================
   22. AFFILIATE PAGE (affiliate.php, affiliate_register.php)
   ========================================================================== */
/* =====================================================
   AFFILIATE PAGE STYLES
   ===================================================== */




@keyframes affFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#affiliateHeader {
    text-align: center;
    margin-bottom: 40px;
}


#affiliateLogo span {
    color: #22c55e;
}

#affiliateSubtitle {
    font-size: 1.1rem;
    color: #F8FAFC;
    font-weight: 400;
}

/* ===== AFFILIATE MAIN GRID ===== */


/* ===== AFFILIATE CARDS BASE ===== */



#affiliateBenefitsCard {
    padding: 32px 28px;
    align-self: stretch;
}

#affiliateFormCard {
    padding: 45px 35px;
    overflow: hidden;
}


#affiliateBenefitsTitle i, #affiliateFormTitle i {
    color: #22c55e;
}


#affiliateIntroText p {
    margin-bottom: 10px;
}

#affiliateIntroText strong {
    color: #22c55e;
}

/* ===== AFFILIATE FEATURE LIST ===== */



.affiliateFeatureBox:hover {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.2);
    transform: translateY(-2px);
}

.affiliateFeatureBox i {
    color: #22c55e;
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.affiliateFeatureBox h4 {
    font-weight: 700;
    font-size: 0.85rem;
    color: #F8FAFC;
    line-height: 1.3;
    margin-bottom: 3px;
}

.affiliateFeatureBox p {
    font-size: 0.75rem;
    opacity: 0.7;
    line-height: 1.4;
    color: #F8FAFC;
    margin: 0;
}

/* ===== AFFILIATE FORM STYLES ===== */
#affiliateFormElement {
    width: 100%;
}



.affiliateSectionTitle i {
    color: #22c55e;
}

.affiliateFormGrid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-bottom: 10px;
}

.affiliateFormGroup {
    display: flex;
    flex-direction: column;
}





.affiliateFormInput::placeholder {
    color: #64748B;
}



.affiliateNameRow {
    display: flex;
    gap: 15px;
    width: 100%;
}

.affiliateNameRow .affiliateFormGroup {
    flex: 1;
}


/* ===== AFFILIATE TERMS ===== */




#affiliateTermsLabel a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

#affiliateTermsLabel a:hover {
    text-decoration: underline;
    color: #16a34a;
}

/* ===== AFFILIATE SUBMIT ===== */


#affiliateSubmitBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
}

#affiliateSubmitBtn i {
    font-size: 0.9rem;
}


#affiliateFooter a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
}

#affiliateFooter a:hover {
    text-decoration: underline;
}

.hidden { display: none !important; }
.text-green { color: #22c55e !important; }

/* ===== AFFILIATE MULTI-STEP ===== */
.affiliateStep { display: none; }
.affiliateStep.active { display: block; animation: affStepFadeIn 0.4s ease; }

@keyframes affStepFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}


.affiliateStepDot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}



.affiliateStepDot.active i,
.affiliateStepDot.done i {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

.affiliateStepDot.active span,
.affiliateStepDot.done span {
    color: #22c55e;
}


.affiliateStepLine.done {
    background: #22c55e;
}




.affiliateNextBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34,197,94,0.4);
}


.affiliatePrevBtn:hover {
    background: rgba(255,255,255,0.12);
}

/* ===== AFFILIATE PASSWORD STRENGTH ===== */
.aff-bar-seg {
    flex: 1;
    height: 5px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
    transition: background 0.3s;
}

.aff-req {
    padding: 3px 0;
    color: rgba(255,255,255,0.35);
    transition: color 0.25s;
    display: flex;
    align-items: center;
    gap: 7px;
}

.aff-req.ok { color: #22c55e; }
.aff-req i  { font-size: 0.6rem; width: 10px; }

/* ===== AFFILIATE RESPONSIVE - TABLET ===== */
@media (max-width: 991px) {
    #affiliateGridContainer {
        grid-template-columns: 1fr;
    }
    #affiliateBenefitsCard {
        padding: 24px 20px;
    }
    #affiliateFeatureList {
        display: grid;
        grid-template-columns: 1fr 1fr;
        flex-direction: unset;
    }
    .affiliateFeatureBox {
        flex: unset;
    }
    #affiliateFormCard {
        padding: 30px 24px;
    }
    #affiliateLogo {
        font-size: 2.2rem;
    }
    #affiliateHeader {
        margin-bottom: 28px;
    }
    #affiliateMainContainer {
        padding: 0;
    }
}

/* ===== AFFILIATE RESPONSIVE - DESKTOP FORM GRID ===== */
@media (min-width: 768px) {
    .affiliateFormGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    .affiliateFormGrid3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .affiliateFullWidth {
        grid-column: 1 / -1;
    }
}

/* ===== AFFILIATE RESPONSIVE - MOBILE ===== */
@media (max-width: 600px) {
    #affiliatePage {
        padding: 16px 12px;
        align-items: flex-start;
    }
    #affiliateMainContainer {
        align-self: auto;
    }
    #affiliateLogo {
        font-size: 1.8rem;
    }
    #affiliateSubtitle {
        font-size: 0.9rem;
    }
    #affiliateHeader {
        margin-bottom: 20px;
    }
    #affiliateBenefitsCard {
        padding: 18px 14px;
        border-radius: 14px;
        order: -1;
    }
    #affiliateBenefitsTitle {
        font-size: 1.15rem;
        margin-bottom: 12px;
        padding-bottom: 10px;
        gap: 8px;
    }
    #affiliateBenefitsTitle i {
        font-size: 1rem;
    }

    #affiliateIntroText p {
        margin-bottom: 6px;
    }
    #affiliateFeatureList {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .affiliateFeatureBox {
        padding: 10px 12px;
        gap: 10px;
        border-radius: 10px;
    }
    .affiliateFeatureBox i {
        font-size: 1.1rem;
        width: 20px;
    }
    .affiliateFeatureBox h4 {
        font-size: 0.78rem;
        margin-bottom: 1px;
    }
    .affiliateFeatureBox p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    #affiliateFormCard {
        padding: 22px 16px;
        border-radius: 16px;
    }
    #affiliateFormTitle {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }
    #affiliateIntroText {
        font-size: 0.85rem;
        padding-left: 12px;
        margin-bottom: 18px;
        line-height: 1.5;
        border-left-width: 3px;
    }
    .affiliateFormSection {
        padding: 16px 12px;
        margin-bottom: 16px;
    }
    .affiliateNameRow {
        flex-direction: column;
        gap: 12px;
    }
    .affiliateFormGrid {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }
    .affiliateFormInput {
        padding: 13px 14px;
        font-size: 16px;
    }
    select.affiliateFormInput {
        font-size: 16px;
    }
    #affiliateStepProgress {
        gap: 0;
        margin-bottom: 20px;
    }
    .affiliateStepDot i {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
    .affiliateStepDot span {
        font-size: 0.5rem;
        letter-spacing: 0;
    }
    .affiliateStepLine {
        min-width: 10px;
        margin: 0 3px;
        margin-bottom: 18px;
    }
    .affiliateNextBtn, .affiliatePrevBtn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    #affiliateSubmitBtn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    #affiliateTermsContainer {
        padding: 14px;
        margin: 18px 0 14px;
    }
    #affiliateTermsLabel {
        font-size: 0.85rem;
        gap: 10px;
    }
    #affiliateFooter {
        font-size: 0.8rem;
        margin-top: 20px;
        padding-top: 16px;
    }
}

/* ===== AFFILIATE RESPONSIVE - EXTRA SMALL ===== */
@media (max-width: 380px) {
    .affiliateStepDot i {
        width: 26px;
        height: 26px;
        font-size: 0.6rem;
    }
    .affiliateStepDot span {
        display: none;
    }
    .affiliateStepLine {
        min-width: 8px;
        margin: 0 2px;
        margin-bottom: 0;
    }
    #affiliateStepProgress {
        margin-bottom: 16px;
    }
}

/* ===== AFFILIATE RESULT PAGE ===== */



.result-icon { font-size: 3.5rem; margin-bottom: 20px; }
.result-icon.success { color: #22c55e; }
.result-icon.error   { color: #EF4444; }
.result-icon.warning { color: #F59E0B; }

#affiliateResultCard h2 { font-size: 1.7rem; font-weight: 700; margin-bottom: 14px; }
#affiliateResultCard p  { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.8); margin-bottom: 30px; }


.result-btn:hover { transform: translateY(-2px); color: white; text-decoration: none; }

.result-btn.secondary {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    box-shadow: none; margin-left: 12px;
}

.result-btn.secondary:hover { background: rgba(255,255,255,0.14); box-shadow: none; }

@media (max-width: 480px) {
    #affiliateResultCard { padding: 30px 20px; }
    .result-btn.secondary { margin-left: 0; margin-top: 10px; }
}

/* ==========================================================================
   25b. Insurance Card Styles
   ========================================================================== */

/* Grid: equal-height columns */


/* Card wrapper  — mirrors: border-2 rounded-xl p-4 cursor-pointer hover:border-green-400 transition-colors */
.ez-ins-card {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem;           /* p-4 */
    cursor: pointer;
    transition: border-color 0.2s;
    background: #fff;
}
.ez-ins-card:hover {
    border-color: #86efac;   /* hover:border-green-400 */
}
.ez-ins-card--selected {
    border-color: var(--accent-color-dark, #16a34a) !important;  /* border-green-500 */
}

/* Label — mirrors: cursor-pointer block */
.ez-ins-card-label {
    display: block;
    cursor: pointer;
}

/* Outer row — mirrors: flex items-start gap-3 */
.ez-ins-row-outer {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;            /* gap-3 */
}

/* Radio — mirrors: mt-1 */
.ez-ins-radio {
    flex-shrink: 0;
    margin-top: 0.25rem;     /* mt-1 */
    cursor: pointer;
}

/* Inner content — mirrors: flex-1 */
.ez-ins-inner {
    flex: 1;
}

/* Name/price row — mirrors: flex justify-between items-start */
.ez-ins-row1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Name — mirrors: font-bold text-gray-800 */
.ez-ins-name {
    font-weight: 700;
    color: #1f2937;
    font-size: 0.875rem;     /* text-sm */
    line-height: 1.4;
}

/* Price — green, no wrap */
.ez-ins-price {
    flex-shrink: 0;
    font-weight: 600;
    color: var(--accent-color-dark, #16a34a);
    white-space: nowrap;
    font-size: 0.875rem;
    margin-left: 8px;
}

/* Description — mirrors: text-sm text-gray-600 mt-1 */
.ez-ins-card-desc {
    font-size: 0.875rem;
    color: #4b5563;
    margin-top: 0.25rem;     /* mt-1 */
    margin-bottom: 0;
}

/* Total — mirrors: text-xs text-gray-500 mt-2 */
.ez-ins-card-total {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.5rem;      /* mt-2 */
    margin-bottom: 0;
}

/* ==========================================================================
   25. Page Layout - vehicle.results.php
   All overridable in custom.css
   ========================================================================== */

/* Page background */
.ez-page-body {
    background-color: #f3f4f6; /* gray-100 */
    min-height: 100vh;
}

/* Search summary bar inner row */
.ez-search-summary-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
@media (min-width: 768px) {
    .ez-search-summary-inner { flex-direction: row; }
}

/* Main 2-column layout (sidebar + results) */
.ez-main-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
@media (min-width: 1024px) {
    .ez-main-layout { flex-direction: row; }
}

/* Results column (right, grows to fill) */
.ez-results-column {
    flex: 1;
    min-width: 0; /* prevent overflow */
}

/* Results header (count + sort) */
.ez-results-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Vehicle grid (stack with gap) */
.ez-vehicle-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* space-y-6 equivalent */
}

/* Open filters button (mobile only) */
.ez-open-filters-btn {
    display: none;  /* hidden on desktop */
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    cursor: pointer;
    align-items: center;
}
@media (max-width: 1023px) {
    .ez-open-filters-btn { display: inline-flex; }
}

/* Sort dropdown */
.ez-sort-select {
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    background: #fff;
    cursor: pointer;
}
.ez-sort-select:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
}

/* Clear filters button */
.ez-clear-filters-btn {
    width: 100%;
    background: #e5e7eb;
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.ez-clear-filters-btn:hover { background: #d1d5db; }

/* Error message box */
.ez-error-message {
    background: #fee2e2;
    border: 1px solid #f87171;
    color: #b91c1c;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   23. Vehicle Card Layout (script14-core.js)
   Override layout/sizing in custom.css if needed
   ========================================================================== */

/* Main vehicle card wrapper */
.ez-vehicle-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;  /* mobile: stacked */
}
.ez-vehicle-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}
@media (min-width: 768px) {
    .ez-vehicle-card { flex-direction: row; }  /* desktop: side-by-side */
}

/* Left column: image + features */
.ez-vehicle-col--image {
    width: 100%;
    position: relative;
    background: #f9fafb;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .ez-vehicle-col--image { width: 25%; }
}

/* Middle column: title + includes/offers */
.ez-vehicle-col--info {
    width: 100%;
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    flex: 1;
}
@media (min-width: 768px) {
    .ez-vehicle-col--info {
        border-top: none;
        border-left: 1px solid #e5e7eb;
    }
}

/* Right column: pricing options */
.ez-vehicle-col--pricing {
    width: 100%;
    flex-shrink: 0;
    padding: 0.5rem;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}
@media (min-width: 768px) {
    .ez-vehicle-col--pricing {
        width: 370px;       /* override in custom.css if needed */
        border-top: none;
        border-left: 1px solid #e5e7eb;
    }
}

/* ==========================================================================
   24. Vehicle Features Grid
   ========================================================================== */

/* 3-col icon grid (seats, doors, transmission...) */
.ez-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem 0.5rem;   /* row-gap col-gap */
    font-size: 0.75rem;
    color: #4b5563;
}

/* Hidden extras list (shown on "View All Features") */
.ez-features-hidden-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem 0.25rem;
    margin-top: 0.5rem;
    list-style: none;
    padding: 0;
}
@media (min-width: 1024px) {
    .ez-features-hidden-list { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   19. Tab 3 - Booking Summary & Cost Rows
   All overridable in custom.css
   ========================================================================== */

/* Summary card wrapper */
.ez-booking-summary {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #ffffff, #f9fafb);
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* Info cards grid (pickup/dropoff/duration/vehicle) */
.ez-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}
@media (max-width: 640px) {
    .ez-summary-grid { grid-template-columns: 1fr; }
}

/* Each pickup/dropoff/vehicle info card */
.ez-summary-info-card {
    display: flex;
    background: #fff;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Cost rows container */
.ez-cost-rows {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Standard cost row */
.ez-cost-row {
    display: flex;
    align-items: stretch;
    background: #fff;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Discount row (green tint) */
.ez-cost-row--discount {
    display: flex;
    align-items: stretch;
    background: #f0fdf4;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #bbf7d0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Grand total row */
.ez-cost-row--total {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 2px solid #22c55e;
    background: linear-gradient(to right, #f0fdf4, #ecfdf5);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin-top: 0.25rem;
}

/* Balance/outstanding row (orange tint) */
.ez-cost-row--balance {
    display: flex;
    align-items: stretch;
    background: #fff;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #fdba74;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    margin-top: 0.5rem;
}

/* Extra item row (orange accent) — modifier on ez-cost-row */
.ez-cost-row--extra {
    margin-bottom: 0.25rem;
}

/* ==========================================================================
   20. Payment Method Options
   ========================================================================== */
.ez-payment-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.ez-payment-option:hover {
    background: #f9fafb;
    border-color: #86efac; /* green-300 */
}
.ez-payment-option.ez-payment--active {
    border-color: #22c55e;
    background: #f0fdf4;
}

/* Billing form inputs */
.ez-billing-input {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.ez-billing-input:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
}

/* Navigation buttons */
.ez-btn-prev {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: #6b7280;
    color: #fff;
    font-weight: 700;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.ez-btn-prev:hover { background: #4b5563; }

.ez-btn-cancel {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: #ef4444;
    color: #fff;
    font-weight: 700;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.ez-btn-cancel:hover { background: #dc2626; }

/* ==========================================================================
   21. Extras List & Extra Item
   ========================================================================== */
.ez-extras-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;   /* override in custom.css if needed */
}

.ez-extra-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: background 0.15s;
}
.ez-extra-item:hover { background: #f9fafb; }

/* ==========================================================================
   22. Insurance Grid & Info Panels
   ========================================================================== */
.ez-insurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: stretch;
}
@media (max-width: 640px) {
    .ez-insurance-grid { grid-template-columns: 1fr; }
}
@media (min-width: 641px) and (max-width: 900px) {
    .ez-insurance-grid { grid-template-columns: repeat(2, 1fr); }
}

.ez-info-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
    .ez-info-panels { grid-template-columns: 1fr; }
}

/* Cost Summary box (Tab 2 extras sidebar) */
.ez-cost-summary {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
}

/* ==========================================================================
   18. Offer / Price-includes lists (vehicle card)
   Override in custom.css if needed:
   .ez-offer-list { gap: 10px; }
   .ez-offer-list li { font-size: 0.8rem; }
   ========================================================================== */
.ez-offer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;          /* spacing between items - override in custom.css */
    font-size: 0.75rem;
    color: #4b5563;    /* gray-600 */
}

/* ==========================================================================
   24. BOOKING CHECK / PAYMENT LINK PAGE (booking.check.php)
   ========================================================================== */

/* Payment method radio options */
.bcheck-payment-methods {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.bcheck-payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s;
    color: #e2e8f0;
    font-size: 0.9rem;
}
.bcheck-payment-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.20);
}
.bcheck-payment-option input[type="radio"] {
    accent-color: var(--accent-color);
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.bcheck-payment-option input[type="radio"]:checked + .bcheck-payment-label {
    color: var(--accent-color-mid);
    font-weight: 600;
}
.bcheck-payment-label {
    font-weight: 500;
}

/* Billing section */
.bcheck-billing-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    animation: confirmFadeIn 0.3s ease;
}
.bcheck-billing-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-color-mid);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
}
.bcheck-billing-title i {
    color: var(--accent-color-mid);
}
.bcheck-billing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 600px) {
    .bcheck-billing-grid {
        grid-template-columns: 1fr;
    }
}
.bcheck-field {
    display: flex;
    flex-direction: column;
}
.bcheck-field label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bcheck-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 11px 14px;
    color: #f1f5f9;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}
.bcheck-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
    background: rgba(255, 255, 255, 0.08);
}
.bcheck-input::placeholder {
    color: #64748B;
}
select.bcheck-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394A3B8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
}

/* Terms & Pay button */
.bcheck-terms-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.bcheck-terms-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #cbd5e1;
    cursor: pointer;
    margin-bottom: 16px;
}
.bcheck-terms-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
    cursor: pointer;
    flex-shrink: 0;
}
.bcheck-terms-label a {
    color: var(--accent-color-mid);
    text-decoration: none;
    font-weight: 600;
}
.bcheck-terms-label a:hover {
    text-decoration: underline;
}
.bcheck-pay-btn {
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent-color-dark), var(--accent-color));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
    letter-spacing: 0.5px;
}
.bcheck-pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.4);
}
.bcheck-pay-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Proposal accept/reject buttons */
.bcheck-proposal-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.bcheck-accept-btn,

.bcheck-accept-btn {
    background: linear-gradient(135deg, var(--accent-color-dark), var(--accent-color));
    color: #fff;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}
.bcheck-accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.4);
    color: #fff;
    text-decoration: none;
}
.bcheck-reject-btn {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}
.bcheck-reject-btn:hover {
    background: rgba(239, 68, 68, 0.25);
    transform: translateY(-2px);
    color: #fca5a5;
    text-decoration: none;
}

/* ==========================================================================
   AFFILIATE PAGE STYLES
   ========================================================================== */

#affiliatePage {
    font-family: 'Inter', sans-serif;
   /* background: linear-gradient(rgb(34 34 34 / 56%), rgb(22 22 22)), url(./img/airportfront9.jpg) no-repeat center center fixed;*/
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: var(--light-text);
    position: relative;
}

#affiliatePage::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(34, 197, 94, 0.05) 0%, transparent 30%);
    z-index: 1;
}

#affiliateMainContainer {
    width: 100%; max-width: 1100px;
    animation: fadeIn 0.8s ease-out;
    position: relative; z-index: 2;
    align-self: flex-start;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

#affiliateHeader { text-align: center; margin-bottom: 40px; }

#affiliateLogo {
    font-size: 2.8rem; font-weight: 800;
    color: var(--light-text); margin-bottom: 10px; letter-spacing: 1px;
}
#affiliateLogo span { color: var(--primary-green); }

#affiliateSubtitle { font-size: 1.1rem; color: var(--muted-text); font-weight: 400; }

/* MAIN GRID */
#affiliateGridContainer {
    width: 100%; display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px; align-items: stretch;
}

/* CARDS BASE */
#affiliateBenefitsCard, #affiliateFormCard {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex; flex-direction: column;
}
#affiliateFormCard { overflow: hidden; }
#affiliateBenefitsCard { padding: 32px 28px; align-self: stretch; }
#affiliateFormCard { padding: 45px 35px; }

#affiliateBenefitsTitle, #affiliateFormTitle {
    font-size: 1.6rem; font-weight: 700;
    margin-bottom: 18px; padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex; align-items: center; gap: 12px;
}
#affiliateBenefitsTitle i, #affiliateFormTitle i { color:; }

#affiliateIntroText {
    font-size: 0.95rem; line-height: 1.7; margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    border-left: 4px solid var(--primary-green);
    padding-left: 18px;
    background: rgba(34, 197, 94, 0.02);
    border-radius: 0 8px 8px 0;
}
#affiliateIntroText p { margin-bottom: 10px; }
#affiliateIntroText strong { color: var(--primary-green); }

/* FEATURE LIST */
#affiliateFeatureList {
    display: flex; flex-direction: column;
    gap: 12px; margin-top: 8px; flex: 1;
}
.affiliateFeatureBox {
    display: flex; flex-direction: row; align-items: center; text-align: left;
    gap: 16px; padding: 16px 18px; border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease; flex: 1;
}
.affiliateFeatureBox i { color: ; font-size: 1.4rem; flex-shrink: 0; width: 24px; text-align: center; }
.affiliateFeatureBox h4 { font-weight: 700; font-size: 0.85rem; color: var(--light-text); line-height: 1.3; margin-bottom: 3px; }
.affiliateFeatureBox p { font-size: 0.95rem; opacity: 0.7; line-height: 1.4; color: var(--muted-text); margin: 0; }

/* FORM STYLES */
#affiliateFormElement { width: 100%; }

.affiliateFormSection {
    background: rgba(0, 0, 0, 0.2); border-radius: 16px;
    padding: 20px; margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.affiliateSectionTitle {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.8rem; font-weight: 700;
    color: ; text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 20px; padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.affiliateSectionTitle i { color: var(--primary-green); }

.affiliateFormGrid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 20px; margin-bottom: 10px; }

@media (min-width: 768px) {
    .affiliateFormGrid { grid-template-columns: repeat(2, 1fr); }
    .affiliateFormGrid3 { grid-template-columns: repeat(3, 1fr); }
    .affiliateFullWidth { grid-column: 1 / -1; }
}

.affiliateFormGroup { display: flex; flex-direction: column; }

.affiliateFormLabel {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.75rem; font-weight: 700;
    color: var(--muted-text); margin-bottom: 8px;
    text-transform: uppercase; letter-spacing: 0.8px;
}
.affiliateFormLabel.required::after {
    content: '*'; color: var(--error); font-size: 0.9rem; margin-left: 3px;
}

.affiliateFormInput {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px; padding: 14px 16px;
    color: var(--light-text); font-size: 0.95rem;
    transition: all 0.3s; outline: none; width: 100%;
}
.affiliateFormInput:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}
.affiliateFormInput::placeholder { color: #64748B; }
.affiliateFormInput[readonly] {
    background: rgba(255, 255, 255, 0.03);
    border-style: dashed; color: var(--muted-text); cursor: not-allowed;
}
.affiliateFormInput.error {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

select.affiliateFormInput {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394A3B8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; background-size: 16px;
    padding-right: 40px;
}
select.affiliateFormInput option {
    color: #1e293b;
    background: #ffffff;
}

.affiliateNameRow { display: flex; gap: 15px; width: 100%; }
.affiliateNameRow .affiliateFormGroup { flex: 1; }

/* TERMS */
#affiliateTermsContainer {
    margin: 25px 0 20px; padding: 18px;
    background: rgba(34, 197, 94, 0.05); border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.15);
}
#affiliateTermsLabel {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.95rem; color: var(--light-text); cursor: pointer;
}
#affiliateTermsLabel input[type="checkbox"] {
    width: 18px; height: 18px; accent-color: var(--primary-green); border-radius: 4px; cursor: pointer;
}
#affiliateTermsLabel a { color: var(--primary-green); text-decoration: none; font-weight: 600; transition: all 0.3s; }
#affiliateTermsLabel a:hover { text-decoration: underline; color: var(--primary-green-dark); }

/* SUBMIT */
#affiliateSubmitBtn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white; padding: 16px 30px; border-radius: 10px;
    font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 1.5px;
    transition: all 0.3s; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 12px;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3); margin-top: 10px;
}
#affiliateSubmitBtn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4); }
#affiliateSubmitBtn i { font-size: 0.9rem; }

/* FOOTER */
#affiliateFooter {
    text-align: center; margin-top: 30px; padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem; color: var(--muted-text);
}
#affiliateFooter a { color: var(--primary-green); text-decoration: none; font-weight: 600; }
#affiliateFooter a:hover { text-decoration: underline; }

.hidden { display: none !important; }
.text-green { color: var(--primary-green) !important; }

/* MULTI-STEP */
.affiliateStep { display: none; }
.affiliateStep.active { display: block; animation: stepFadeIn 0.4s ease; }
@keyframes stepFadeIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

#affiliateStepProgress {
    display: flex; align-items: center; justify-content: center;
    gap: 0; margin-bottom: 30px;
}
.affiliateStepDot { display: flex; flex-direction: column; align-items: center; gap: 6px; position: relative; }
.affiliateStepDot i {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.07); border: 2px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: rgba(255,255,255,0.4); transition: all 0.3s;
}
.affiliateStepDot span {
    font-size: 0.65rem; color: rgba(255,255,255,0.4);
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s;
}
.affiliateStepDot.active i, .affiliateStepDot.done i {
    background: var(--primary-green); border-color: var(--primary-green); color: white;
}
.affiliateStepDot.active span, .affiliateStepDot.done span { color: var(--primary-green); }

.affiliateStepLine {
    flex: 1; height: 2px; background: rgba(255,255,255,0.1);
    margin: 0 8px; margin-bottom: 22px; transition: background 0.3s; min-width: 30px;
}
.affiliateStepLine.done { background: var(--primary-green); }

.affiliateStepButtons {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 10px; gap: 12px;
}
.affiliateNextBtn, .affiliatePrevBtn {
    padding: 13px 28px; border-radius: 10px; font-weight: 700; font-size: 0.9rem;
    cursor: pointer; border: none; display: flex; align-items: center; gap: 8px;
    transition: all 0.3s; letter-spacing: 0.5px;
}
.affiliateNextBtn {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white; box-shadow: 0 6px 15px rgba(34,197,94,0.3); margin-left: auto;
}
.affiliateNextBtn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(34,197,94,0.4); }
.affiliatePrevBtn {
    background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.15);
}
.affiliatePrevBtn:hover { background: rgba(255,255,255,0.12); }

/* PASSWORD STRENGTH */
.aff-bar-seg { flex: 1; height: 5px; border-radius: 3px; background: rgba(255,255,255,0.1); transition: background 0.3s; }
.aff-req { padding: 3px 0; color: rgba(255,255,255,0.35); transition: color 0.25s; display: flex; align-items: center; gap: 7px; }
.aff-req.ok { color: var(--primary-green); }
.aff-req i { font-size: 0.6rem; width: 10px; }

/* AFFILIATE RESPONSIVE - TABLET */
@media (max-width: 991px) {
    #affiliateGridContainer { grid-template-columns: 1fr; }
    #affiliateBenefitsCard { padding: 24px 20px; }
    #affiliateFeatureList { display: grid; grid-template-columns: 1fr 1fr; flex-direction: unset; }
    .affiliateFeatureBox { flex: unset; }
    #affiliateFormCard { padding: 30px 24px; }
    #affiliateLogo { font-size: 2.2rem; }
    #affiliateHeader { margin-bottom: 28px; }
    #affiliateMainContainer { padding: 0; }
}

/* AFFILIATE RESPONSIVE - MOBILE */
@media (max-width: 600px) {
    #affiliatePage { padding: 16px 12px; align-items: flex-start; }
    #affiliateMainContainer { align-self: auto; }
    #affiliateLogo { font-size: 1.8rem; }
    #affiliateSubtitle { font-size: 0.9rem; }
    #affiliateHeader { margin-bottom: 20px; }
    #affiliateBenefitsCard { padding: 18px 14px; border-radius: 14px; order: -1; }
    #affiliateFormCard { padding: 22px 16px; border-radius: 16px; }
    #affiliateFormTitle { font-size: 1.3rem; margin-bottom: 14px; }
    #affiliateIntroText { font-size: 0.82rem; padding-left: 12px; margin-bottom: 14px; border-left-width: 3px; }
    #affiliateFeatureList { display: grid; grid-template-columns: 1fr; gap: 8px; }
    .affiliateFeatureBox { padding: 10px 12px; gap: 10px; border-radius: 10px; }
    .affiliateFeatureBox i { font-size: 1.1rem; width: 20px; }
    .affiliateFeatureBox h4 { font-size: 0.98rem; margin-bottom: 1px; }
    .affiliateFeatureBox p { font-size: 0.7rem; line-height: 1.3; }
    .affiliateFormSection { padding: 16px 12px; margin-bottom: 16px; }
    .affiliateNameRow { flex-direction: column; gap: 12px; }
    .affiliateFormGrid { grid-template-columns: 1fr !important; gap: 14px; }
    .affiliateFormInput { padding: 13px 14px; font-size: 16px; }
    select.affiliateFormInput { font-size: 16px; }
    #affiliateStepProgress { gap: 0; margin-bottom: 20px; }
    .affiliateStepDot i { width: 30px; height: 30px; font-size: 0.7rem; }
    .affiliateStepDot span { font-size: 0.5rem; letter-spacing: 0; }
    .affiliateStepLine { min-width: 10px; margin: 0 3px; margin-bottom: 18px; }
    .affiliateNextBtn, .affiliatePrevBtn { padding: 12px 20px; font-size: 0.85rem; }
    #affiliateSubmitBtn { padding: 14px 20px; font-size: 0.9rem; }
    #affiliateTermsContainer { padding: 14px; margin: 18px 0 14px; }
    #affiliateTermsLabel { font-size: 0.85rem; gap: 10px; }
    #affiliateFooter { font-size: 0.8rem; margin-top: 20px; padding-top: 16px; }
}

/* AFFILIATE RESPONSIVE - EXTRA SMALL */
@media (max-width: 380px) {
    .affiliateStepDot i { width: 26px; height: 26px; font-size: 0.6rem; }
    .affiliateStepDot span { display: none; }
    .affiliateStepLine { min-width: 8px; margin: 0 2px; margin-bottom: 0; }
    #affiliateStepProgress { margin-bottom: 16px; }
}

/* ============================== */
/* AFFILIATE REGISTER RESULT PAGE */
/* ============================== */
#affiliateResultPage {
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    color: #F8FAFC;
    background: linear-gradient(rgb(34 34 34 / 56%), rgb(22 22 22));
    min-height: 100vh;
}
#affiliateResultCard {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    padding: 50px 40px;
    max-width: 560px;
    width: 100%;
    text-align: center;
}
.result-icon { font-size: 3.5rem; margin-bottom: 20px; }
.result-icon.success { color: var(--primary-green); }
.result-icon.error   { color: var(--error); }
.result-icon.warning { color: #F59E0B; }
#affiliateResultCard h2 { font-size: 1.7rem; font-weight: 700; margin-bottom: 14px; }
#affiliateResultCard p  { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.8); margin-bottom: 30px; }
.result-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white; padding: 14px 28px; border-radius: 10px;
    font-weight: 700; font-size: 0.95rem; text-decoration: none;
    transition: all 0.3s; box-shadow: 0 8px 20px rgba(34,197,94,0.3);
}
.result-btn:hover { transform: translateY(-2px); color: white; text-decoration: none; }
.result-btn.secondary:hover { background: rgba(255,255,255,0.14); box-shadow: none; }
@media (max-width: 480px) {
    #affiliateResultCard { padding: 30px 20px; }
    .result-btn.secondary { margin-left: 0; margin-top: 10px; }
}
