/* ==========================================================================
   CUSTOM.CSS - Per-Company Customization
   ==========================================================================
   This file is loaded AFTER style.css and overrides the default theme.
   Each company gets their own copy of this file.
   
   INSTRUCTIONS:
   - Change ONLY the :root variables below to customize colors
   - Add company-specific overrides in Section 2
   - DO NOT edit style.css - it is shared across all installations
   ========================================================================== */


/* ==========================================================================
   1. COLOR VARIABLES
   ==========================================================================
   Change these to match company branding.
   These variables control ALL colors across every page.
   ========================================================================== */
:root {

    /* -----------------------------------------------------------------
       ACCENT COLORS - MAIN (changes 90% of the look)
       ----------------------------------------------------------------- */

    /* === PRESET: Blue #26559b + Burgundy #920d1e === */
    --accent-color: #26559b;
    --accent-color-dark: #1e4480;
    --accent-color-light: #4a7bc4;
    --accent-color-mid: #3568b0;

	
    /* -----------------------------------------------------------------
       ACCENT TRANSPARENT VARIANTS
       ----------------------------------------------------------------- */
    --accent-glow-strong: rgba(38, 85, 155, 1);
    --accent-glow: rgba(38, 85, 155, 0.7);
    --accent-glow-soft: rgba(38, 85, 155, 0.45);
    --accent-glow-dim: rgba(38, 85, 155, 0.35);
    --accent-glow-faint: rgba(38, 85, 155, 0.08);
    --accent-bg-subtle: rgba(38, 85, 155, 0.14);
    --accent-bg-glass: rgba(30, 68, 128, 0.10);
    --accent-bg-radial: rgba(38, 85, 155, 0.18);
    --accent-border-subtle: rgba(38, 85, 155, 0.22);
    --accent-border-medium: rgba(38, 85, 155, 0.30);
    --accent-text-85: rgba(38, 85, 155, 0.85);
    --accent-text-70: rgba(38, 85, 155, 0.70);

    /* -----------------------------------------------------------------
       ACTION BUTTONS
       ----------------------------------------------------------------- */
    --warning: #920d1e;
    --error: #EF4444;
    --success: #10B981;
    --success-dark: #059669;

    /* -----------------------------------------------------------------
       TOP NAVIGATION BAR
       ----------------------------------------------------------------- */
    --topbar-bg: #26559b;

    /* -----------------------------------------------------------------
       TEXT COLORS
       ----------------------------------------------------------------- */
    --text-color: #333;
    --text-muted: #6c757d;

    /* -----------------------------------------------------------------
       BACKGROUNDS
       ----------------------------------------------------------------- */
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark-bg: #1e2a3a;

    /* -----------------------------------------------------------------
       BORDERS
       ----------------------------------------------------------------- */
    --border-color: #e2e8f0;

    /* -----------------------------------------------------------------
       FLATPICKR DATE PICKER
       ----------------------------------------------------------------- */
    --flatpickr-hover-bg: #26559b;
    --flatpickr-hover-text: #ffffff;

    /* -----------------------------------------------------------------
       SEARCH FORM (Neumorphic style)
       ----------------------------------------------------------------- */
    --neumorphic-bg: #f0f2f5;
    --shadow-light: #ffffff;
    --shadow-dark: #d1d9e6;

    /* -----------------------------------------------------------------
       FORM INPUTS
       ----------------------------------------------------------------- */
    --form-bg: var(--white);
    --form-text: var(--text-color);
    --form-label: #555;
}


/* ==========================================================================
   2. COMPANY-SPECIFIC OVERRIDES (Optional)
   ========================================================================== */


/* ==========================================================================
   QUICK REFERENCE: ez- Classes and where they appear
   ==========================================================================
   
   CLASS                          WHAT IT STYLES                      FILE(S)
   ---------------------------    --------------------------------    --------------------------
   .ez-accent-text                Icon/text accent color              All JS + PHP files
   .ez-accent-bg                  Background accent color             index.php
   .ez-accent-gradient            Gradient button background          script14-booking-tab3.js
   .ez-accent-link                Accent colored links                script14-booking-tab3.js
   
   .ez-pricing-container          Right panel of vehicle card         script14-core.js
   .ez-pricing-grid               2-column price layout               script14-core.js
   .ez-pricing-single             1-column price layout               script14-core.js
   .ez-price-card                 Individual price box                script14-core.js
   .ez-price-card--active         Active price box (accent border)    script14-core.js
   .ez-price-card--muted          Inactive price box (gray border)    script14-core.js
   
   .ez-price-label                "TOTAL PRICE" label                 script14-core.js
   .ez-price-original             Strikethrough old price             script14-core.js
   .ez-price-value                Main price number                   script14-core.js
   .ez-price-value--large         Large price (single column)         script14-core.js
   .ez-price-txt                  Deposit description text            script14-core.js
   .ez-price-strike               Max charge exceeded strike          script14-booking.js
   
   .ez-deposit-label              "DEPOSIT REQUIRED" label            script14-core.js
   .ez-deposit-value              Deposit amount number               script14-core.js
   
   .ez-book-btn                   "Book Now" / "Select" button        script14-core.js
   .ez-btn-next                   "Next" tab button                   script14-booking.js
   .ez-btn-submit                 "Complete Booking" button           script14-booking.js
   .ez-badge                      Duration/subtotal badges            script14-booking.js
   
   .ez-info-header                Info panel headers (pickup etc)     script14-booking.js
   .ez-summary-total              Total price in summaries            script14-booking.js + tab3
   .ez-ins-price                  Insurance price display             script14-booking.js + tab3
   .ez-extra-icon                 Extras section icons                script14-booking.js
   
   .ez-why-book-list              "Why book with us" list             index.php
   .ez-nav-link                   Navigation link hover               navigation.php
   .ez-topbar-logo                Logo in top bar                     navigation.php
   .ez-vehicle-img                Vehicle image max-height            script14-core.js

   .ez-confirm-vehicle-name       Vehicle name on confirm pages       booking.confirm/info.php
   .ez-confirm-prepaid-separator  Prepaid amount divider              booking.confirm/info.php
   .ez-confirm-pending-icon       Pending status icon (amber)         booking.info.php
   
   ========================================================================== */


/* 1. Labels */
.ez-sf-field label {
    font-weight: 600 !important;
    font-size: 0.73rem !important;
}

/* 2. Field spacing */
.ez-sf-field {
    margin-bottom: 12px !important;
}

/* 3. Input height */
.ez-sf-field input[type="text"],
.ez-sf-field select {
    padding: 5px 10px !important;
    font-size: 0.8rem !important;
}

/* ==========================================================================
   4. Filter Sidebar Styles
   ========================================================================== */
#filterSidebar > div.bg-white.shadow-md {
    border-radius: 12px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
    border: none !important;
    padding: 16px 18px !important;
}

#filterSidebar > div.bg-white h3 {
    font-size: 0.95rem !important;
    color: #334155 !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #e2e8f0 !important;
    margin-bottom: 0 !important;
}

#filterSidebar .flex.justify-between.mb-4 {
    margin-bottom: 12px !important;
}

#filterSidebar h4 {
    font-size: 0.73rem !important;
    font-weight: 600 !important;
    color: #4a5568 !important;
    letter-spacing: 0.5px;
    margin-bottom: 8px !important;
}

#filterSidebar label.flex.items-center {
    font-size: 0.8rem !important;
    color: #334155 !important;
}

#filterSidebar .mb-6 {
    margin-bottom: 16px !important; 
}


/* ==========================================================================
   5. GRANULAR ACCENT COLOR OVERRIDES
   ==========================================================================
   BLUE     #26559b = brand, icons, links, selected states, header/footer
   BURGUNDY #920d1e = CTAs, buttons, prices, action highlights
   ========================================================================== */

/* --- Feature Icons --- */
.ez-feature-icon      { color: #403f41; }

/* --- Offer Title --- BLUE */
.ez-offer-title       { color: #26559b; }

/* --- Offer Check Icons --- BLUE */
.ez-offer-icon        { color: #26559b; }

/* --- View More / View All Features --- BLUE */
.ez-viewmore-link     { color: #26559b; }

/* --- Search Summary Bar Icons --- BLUE */
.ez-searchbar-icon    { color: #26559b; }

/* --- Info Panel Icons --- BLUE */
.ez-info-icon         { color: #26559b; }

/* --- Tab Section Header Icons --- */
.ez-tab-icon          { color: #d9d9d9; }

/* --- Optional Extras Icons & Price --- */
.ez-extras-icon       { color: #8b5cf6; }
.ez-extras-price      { color: #8b5cf6; }

/* --- Insurance Price --- */
.ez-insurance-price   { color: #0891b2; }


/* ==========================================================================
   ELEMENT OVERRIDES
   ========================================================================== */

.form-group label i {
    color: #d9d9d9;
}

/* --- Includes list icons --- BURGUNDY */
.includes-box ul li i {
    color: #920d1e;
}

/* --- Booking form button --- BURGUNDY (CTA) */
.booking-form button {
    background-color: #920d1e;
}
.booking-form button:hover {
    background-color: #26559b;
}

/* --- Accent text --- BLUE */
.ez-accent-text {
    color: #26559b !important;
}

/* --- Book Now button --- BURGUNDY (CTA) */
.ez-book-btn {
    background: #920d1e;
}
.ez-book-btn:hover {
    background: #7a0b19;
}

/* --- Feature icons --- grey */
.ez-feature-icon {
    color: #939393;
}

/* --- Price value --- BURGUNDY */
.ez-price-value {
    color: #920d1e;
}

/* --- Form label icons --- grey */
.ez-sf-field label i {
    color: #939393;
}

/* --- Search form submit --- BURGUNDY (CTA) */
.ez-sf-submit {
    background: #920d1e;
    box-shadow: 0 4px 10px rgb(175 175 175 / 0%) !important;
}
.ez-sf-submit:hover {
    background: #26559b;
    box-shadow: 0 4px 10px rgb(175 175 175 / 0%) !important;
}

/* --- Insurance card selected --- BLUE */
.ez-ins-card--selected {
    border-color: #26559b !important;
}

/* --- Button selected state --- BLUE */
.ez-btn--selected {
    background: #26559b !important;
}

/* --- Extra item border --- BLUE */
.ez-extra-item {
    border: 1px solid #26559b;
}

/* --- Extra icon --- BLUE */
.ez-extra-icon {
    color: #26559b;
}

/* --- Summary total --- BURGUNDY */
.ez-summary-total {
    color: #920d1e;
}

/* --- Tab icons --- BLUE */
.ez-tab-icon {
    color: #26559b;
}

/* --- Floating label focus --- BLUE */
.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 {
    color: #26559b;
}

/* --- Accent link --- BLUE */
.ez-accent-link {
    color: #26559b;
}

/* --- Next / Submit buttons --- BURGUNDY (CTA) */
.ez-btn-next, .ez-btn-submit {
    background-color: #920d1e;
}

/* --- Confirm card header icon --- BLUE */
.confirm-card-header h3 i {
    color: #26559b;
    filter: drop-shadow(0 0 6px rgb(255 255 255 / 47%));
}

/* --- Fleet price card --- BLUE border */
.ez-fleet-price-card {
    border: 2px solid #26559b;
}

/* --- Fleet book button --- BURGUNDY (CTA) */
.ez-fleet-book-btn {
    background: #920d1e !important;
}

/* --- Modal form submit --- BURGUNDY (CTA) */
.mf-submit {
    background: #920d1e;
}

/* --- Model form title icon --- BLUE */
.model-form-title i {
    color: #26559b;
}

/* --- Model price --- BURGUNDY */
.model-price-amount {
    color: #920d1e;
}

/* --- Model category badge --- BURGUNDY */
.model-category-badge {
    background: #920d1e;
}

/* --- Model title divider --- BLUE */
.model-title-divider {
    background: #26559b;
}

/* --- Model includes list icons --- BLUE */
.model-includes-list li i {
    color: #26559b;
}

/* --- Search form header icon --- BLUE */
.ez-sf-header h3 i {
    color: #26559b;
}

/* --- Fleet price value --- BURGUNDY */
.ez-fleet-price-value {
    color: #920d1e;
}

/* --- Border accent --- BLUE */
.border-green-500 {
    border-color: #26559b !important;
}

/* --- Affiliate step dots --- BLUE */
.affiliateStepDot.active i, .affiliateStepDot.done i {
    background: #26559b;
}

/* --- Affiliate section title icon --- BLUE */
.affiliateSectionTitle i {
    color: #26559b;
}

/* --- Price card active border --- BLUE */
.ez-price-card--active {
    border-color: #26559b !important;
}

/* --- Price card selected bg --- BLUE transparent */
.ez-price-card--selected {
    background-color: rgba(38, 85, 155, 0.08) !important;
}

/* --- Accent gradient --- BURGUNDY */
.ez-accent-gradient {
    background: linear-gradient(135deg, #920d1e 0%, #7a0b19 100%);
}

/* --- Book btn shadow --- BURGUNDY glow */
.ez-book-btn {
    box-shadow: 0 4px 10px rgba(146, 13, 30, 0.25) !important;
}

/* --- Category pill active --- BLUE transparent */
.ez-category-pill--active {
    background: rgba(38, 85, 155, 0.12) !important;
}
.ez-category-pill--active:hover {
    background: rgba(38, 85, 155, 0.18) !important;
}

/* --- Form group shadows (disabled) --- */
.form-group button:hover {
    box-shadow: 0 10px 18px rgb(34 197 94 / 0%) !important;
}
.form-group input[type="text"], .form-group input[type="date"],
.form-group input[type="time"], .form-group select {
    box-shadow: 0 10px 18px rgb(34 197 94 / 0%) !important;
}

/* --- Flatpickr calendar --- BLUE header, BLUE selection */
.flatpickr-months {
    background-color: #26559bdd;
}
.flatpickr-day:hover {
    background-color: #26559b;
    color: #fff;
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange,
.flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover, .flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: #26559b;
    border-color: #26559b;
}

/* --- Footer --- BURGUNDY accents on BLUE bg */
footer .footer-link-item::before {
    background-color: #920d1e;
}
footer .border-custom-accent\/30 {
    border-color: rgba(146, 13, 30, 0.30);
}
footer .hover\:text-custom-accent:hover {
    color: #920d1e;
}

/* --- Fleet card hover shadow --- BURGUNDY */
.ez-fleet-price-card:hover {
    box-shadow: 0 4px 15px rgba(146, 13, 30, 0.35);
}

/* --- Focus shadows (disabled) --- */
.mf-field select:focus, .mf-field input[type="text"]:focus {
    box-shadow: 0 0 0 2px rgb(255 222 93 / 0%);
}
.ez-sort-select {
    box-shadow: 0 10px 18px rgb(34 197 94 / 0%) !important;
}

/* --- Toggle checked --- BLUE */
.peer:checked ~ .ez-toggle-checked {
    background-color: #26559b !important;
}

/* --- Confirm banner --- subtle BLUE glow */
.confirm-banner::before {
    background: radial-gradient(ellipse at 30% 40%, rgba(38, 85, 155, 0.06) 0%, transparent 55%), radial-gradient(ellipse at 75% 60%, rgba(38, 85, 155, 0.08) 0%, transparent 55%);
}

/* --- Affiliate titles --- BLUE */
#affiliateBenefitsTitle i, #affiliateFormTitle i {
    color: #26559b;
}
.affiliateFeatureBox:hover {
    background: rgba(38, 85, 155, 0.12);
    border-color: rgba(38, 85, 155, 0.20);
}
.affiliateNextBtn:hover {
    box-shadow: 0 10px 20px rgba(38, 85, 155, 0.20);
}
.affiliateNextBtn {
    box-shadow: 0 10px 20px rgba(38, 85, 155, 0.10);
}

/* --- Confirm new booking button --- BURGUNDY (CTA) */
.confirm-new-booking {
    background: #920d1e;
}

/* --- Search field shadows (disabled) --- */
.ez-sf-field input[type="text"], .ez-sf-field select {
    box-shadow: 0 10px 18px rgb(34 197 94 / 0%) !important;
}

/* --- Top nav bar --- BURGUNDY */
.top-nav-bar {
    background-color: #920d1e;
}
.booking-form-wrapper {
    background: rgb(0 0 0 / 15%);
}
.includes-box {
    background: rgb(0 0 0 / 15%);
}
#filterSidebar > div.bg-white h3 {
    border-bottom: 1px solid #26559b !important;
}

.ez-price-value--large {
    color: #26559b;
}
.ez-dual-range__fill {
    background: #26559b;
}
.ez-clear-filters-btn {
    background: #920d1e;
    color: #fff;
}
.ez-clear-filters-btn:hover {
    background: #26559b;
    color: #fff;
}

.model-specs-title {
    border-bottom: 2px solid #26559b;
}

.model-spec-item:hover {
    border-color: #26559b;
}
.model-includes-title i {
    color: #26559b;
}

/* --- Header & Footer --- BLUE background */
header.bg-gray-950.text-gray-300.shadow-sm.sticky.top-0.z-50 {
    background-color: #fff;
}

footer.bg-gray-950.text-gray-300.py-12.relative.overflow-hidden.font-sans {
    background-color: #fff;
}
footer .text-custom-accent {
    color: #920d1e;
}
footer .border-custom-accent\/30 {
    border-color: rgba(146, 13, 30, 0.30);
}

/* --- Footer texts --- */
footer .footer-link-item {
    color: #424242;
}

p.flex.items-center.text-gray-400.hover\:text-custom-accent.transition {
    color: #424242;
}

p.flex.items-center.text-gray-400.hover\:text-custom-accent.transition:hover {
    color: #920d1e;
}

p.text-gray-400.text-base.max-w-sm.leading-relaxed.hover\:text-custom-accent {
    color: #424242;
}

.text-center.md\:text-center.space-y-0\.5.w-full.mt-4 {
    color: #424242;
}

footer .hover\:text-custom-accent {
    color: #424242;
}

@media (max-width: 1024px) {
    #nav-menu.nav-menu--open {
        background-color: #fff;
    }
}

.form-group input[type="text"], .form-group input[type="date"], .form-group input[type="time"], .form-group select
{
    border: 1px solid #26559b;

}
.ez-nav-link:hover {
  color: #920d1e!important;
}

.ez-nav-link{
color:#424242!important; 
}
button#nav-toggle {
    color: #111;
}
 h5.font-bold.text-white.mb-4.uppercase.tracking-widest.text-sm.border-b.border-custom-accent\/30.pb-2

 {
    color: #424242;
}
h5.font-bold.text-white.mb-5.uppercase.tracking-widest.text-sm.border-b.border-custom-accent\/30.pb-2 {
    color: #424242;
}
.mf-field label i {
    color: #9f9b9b;
}
.model-spec-icon{
 color: #9f9b9b;
}