/* ==========================================================================
   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
   ========================================================================== */
:root {

    /* === PRESET: Purple #4d4090 + Gray #939393 === */
    --accent-color: #4d4090;
    --accent-color-dark: #3d3374;
    --accent-color-light: #6b5fb0;
    --accent-color-mid: #5a4da0;

    /* -----------------------------------------------------------------
       ACCENT TRANSPARENT VARIANTS
       ----------------------------------------------------------------- */
    --accent-glow-strong: rgba(77, 64, 144, 1);
    --accent-glow: rgba(77, 64, 144, 0.7);
    --accent-glow-soft: rgba(77, 64, 144, 0.45);
    --accent-glow-dim: rgba(77, 64, 144, 0.35);
    --accent-glow-faint: rgba(77, 64, 144, 0.08);
    --accent-bg-subtle: rgba(77, 64, 144, 0.10);
    --accent-bg-glass: rgba(61, 51, 116, 0.10);
    --accent-bg-radial: rgba(77, 64, 144, 0.15);
    --accent-border-subtle: rgba(77, 64, 144, 0.18);
    --accent-border-medium: rgba(77, 64, 144, 0.28);
    --accent-text-85: rgba(77, 64, 144, 0.85);
    --accent-text-70: rgba(77, 64, 144, 0.70);

    /* -----------------------------------------------------------------
       ACTION BUTTONS
       ----------------------------------------------------------------- */
    --warning: #4d4090;
    --error: #EF4444;
    --success: #10B981;
    --success-dark: #059669;

    /* -----------------------------------------------------------------
       TOP NAVIGATION BAR
       ----------------------------------------------------------------- */
    --topbar-bg: #939393;

    /* -----------------------------------------------------------------
       TEXT COLORS
       ----------------------------------------------------------------- */
    --text-color: #333;
    --text-muted: #6c757d;

    /* -----------------------------------------------------------------
       BACKGROUNDS
       ----------------------------------------------------------------- */
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark-bg: #4a4a4a;

    /* -----------------------------------------------------------------
       BORDERS
       ----------------------------------------------------------------- */
    --border-color: #e2e8f0;

    /* -----------------------------------------------------------------
       FLATPICKR DATE PICKER
       ----------------------------------------------------------------- */
    --flatpickr-hover-bg: #4d4090;
    --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;
}


/* ==========================================================================
   QUICK REFERENCE
   ========================================================================== */
/*
   COLOR LOGIC:
   ─────────────────────────────────────────────
   PURPLE  #4d4090  → CTA buttons, prices, summary totals, links,
                       offer icons, info icons, tab icons, selected
                       borders, flatpickr days, toggles, range fills
   DKPURP  #3d3374  → Button hover states
   GRAY    #939393  → Top nav bar, feature icons, form label icons,
                       extra borders, category pills text
   DKGRAY  #5a5a5a  → Offer titles, accent text, footer headings
   LTGRAY  #b0b0b0  → Soft borders, form borders
   ─────────────────────────────────────────────
*/


/* 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
   ========================================================================== */

/* --- Feature Icons --- GRAY */
.ez-feature-icon      { color: #939393; }

/* --- Offer Title --- dark neutral */
.ez-offer-title       { color: #5a5a5a; }

/* --- Offer Check Icons --- PURPLE (pop) */
.ez-offer-icon        { color: #4d4090; }

/* --- View More / View All Features --- PURPLE (action) */
.ez-viewmore-link     { color: #4d4090; }

/* --- Search Summary Bar Icons --- PURPLE */
.ez-searchbar-icon    { color: #4d4090; }

/* --- Info Panel Icons --- PURPLE */
.ez-info-icon         { color: #4d4090; }

/* --- 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: #b0b0b0;
}

/* --- Includes list icons --- PURPLE */
.includes-box ul li i {
    color: #4d4090;
}

/* --- Booking form button --- PURPLE (CTA) */
.booking-form button {
    background-color: #4d4090;
    color: #fff;
}
.booking-form button:hover {
    background-color: #3d3374;
}

/* --- Accent text --- dark */
.ez-accent-text {
    color: #4d4090 !important;
}

/* --- Book Now button --- PURPLE (primary CTA) */
.ez-book-btn {
    background: #4d4090;
    color: #fff;
}
.ez-book-btn:hover {
    background: #3d3374;
}

/* --- Feature icons --- GRAY */
.ez-feature-icon {
    color: #939393;
}

/* --- Price value --- PURPLE */
.ez-price-value {
    color: #4d4090;
}

/* --- Form label icons --- GRAY */
.ez-sf-field label i {
    color: #939393;
}

/* --- Search form submit --- PURPLE (CTA) */
.ez-sf-submit {
    background: #4d4090;
    color: #fff;
    box-shadow: 0 4px 10px rgba(77, 64, 144, 0.20) !important;
}
.ez-sf-submit:hover {
    background: #3d3374;
    box-shadow: 0 4px 10px rgba(77, 64, 144, 0.30) !important;
}

/* --- Insurance card selected --- PURPLE */
.ez-ins-card--selected {
    border-color: #4d4090 !important;
}

/* --- Button selected state --- PURPLE */
.ez-btn--selected {
    background: #4d4090 !important;
}

/* --- Extra item border --- soft gray */
.ez-extra-item {
    border: 1px solid #d0d0d0;
}

/* --- Extra icon --- PURPLE */
.ez-extra-icon {
    color: #4d4090;
}

/* --- Summary total --- PURPLE */
.ez-summary-total {
    color: #4d4090;
}

/* --- Tab icons --- PURPLE */
.ez-tab-icon {
    color: #4d4090;
}

/* --- Floating label focus --- PURPLE */
.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: #4d4090;
}

/* --- Accent link --- PURPLE, hover darker */
.ez-accent-link {
    color: #4d4090;
}
.ez-accent-link:hover {
    color: #3d3374;
}

/* --- Next / Submit buttons --- PURPLE (CTA) */
.ez-btn-next, .ez-btn-submit {
    background-color: #4d4090;
    color: #fff;
}
.ez-btn-next:hover, .ez-btn-submit:hover {
    background-color: #3d3374;
}

/* --- Confirm card header icon --- PURPLE */
.confirm-card-header h3 i {
    color: #4d4090;
    filter: drop-shadow(0 0 6px rgb(255 255 255 / 47%));
}

/* --- Fleet price card --- soft border, PURPLE on hover */
.ez-fleet-price-card {
    border: 2px solid #e2e2e2;
}
.ez-fleet-price-card:hover {
    border-color: #4d4090;
    box-shadow: 0 4px 15px rgba(77, 64, 144, 0.16);
}

/* --- Fleet book button --- PURPLE (CTA) */
.ez-fleet-book-btn {
    background: #4d4090 !important;
    color: #fff !important;
}
.ez-fleet-book-btn:hover {
    background: #3d3374 !important;
}

/* --- Modal form submit --- PURPLE (CTA) */
.mf-submit {
    background: #4d4090;
    color: #fff;
}
.mf-submit:hover {
    background: #3d3374;
}

/* --- Model form title icon --- PURPLE */
.model-form-title i {
    color: #4d4090;
}

/* --- Model price --- PURPLE */
.model-price-amount {
    color: #4d4090;
}

/* --- Model category badge --- GRAY */
.model-category-badge {
    background: #939393;
}

/* --- Model title divider --- PURPLE accent bar */
.model-title-divider {
    background: #4d4090;
}

/* --- Model includes list icons --- PURPLE */
.model-includes-list li i {
    color: #4d4090;
}

/* --- Search form header icon --- PURPLE */
.ez-sf-header h3 i {
    color: #4d4090;
}

/* --- Fleet price value --- PURPLE */
.ez-fleet-price-value {
    color: #4d4090;
}

/* --- Border accent --- PURPLE */
.border-green-500 {
    border-color: #4d4090 !important;
}

/* --- Affiliate step dots --- PURPLE */
.affiliateStepDot.active i, .affiliateStepDot.done i {
    background: #4d4090;
}

/* --- Affiliate section title icon --- PURPLE */
.affiliateSectionTitle i {
    color: #4d4090;
}

/* --- Price card active border --- PURPLE */
.ez-price-card--active {
    border-color: #4d4090 !important;
}

/* --- Price card selected bg --- PURPLE subtle */
.ez-price-card--selected {
    background-color: rgba(77, 64, 144, 0.06) !important;
}

/* --- Accent gradient --- PURPLE smooth */
.ez-accent-gradient {
    background: linear-gradient(135deg, #4d4090 0%, #3d3374 100%);
}

/* --- Book btn shadow --- subtle PURPLE glow */
.ez-book-btn {
    box-shadow: 0 4px 12px rgba(77, 64, 144, 0.22) !important;
}

/* --- Category pill active --- PURPLE subtle */
.ez-category-pill--active {
    background: rgba(77, 64, 144, 0.08) !important;
    color: #4d4090 !important;
}
.ez-category-pill--active:hover {
    background: rgba(77, 64, 144, 0.14) !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 --- GRAY header, PURPLE selection */
.flatpickr-months {
    background-color: #7a7a7a;
}
.flatpickr-day:hover {
    background-color: #4d4090;
    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: #4d4090;
    border-color: #4d4090;
}

/* --- Footer accents --- */
footer .footer-link-item::before {
    background-color: #4d4090;
}
footer .border-custom-accent\/30 {
    border-color: rgba(77, 64, 144, 0.20);
}
footer .hover\:text-custom-accent:hover {
    color: #4d4090;
}

/* --- 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 --- PURPLE */
.peer:checked ~ .ez-toggle-checked {
    background-color: #4d4090 !important;
}

/* --- Confirm banner --- subtle glow */
.confirm-banner::before {
    background: radial-gradient(ellipse at 30% 40%, rgba(77, 64, 144, 0.05) 0%, transparent 55%), radial-gradient(ellipse at 75% 60%, rgba(77, 64, 144, 0.06) 0%, transparent 55%);
}

/* --- Affiliate --- */
#affiliateBenefitsTitle i, #affiliateFormTitle i {
    color: #4d4090;
}
.affiliateFeatureBox:hover {
    background: rgba(77, 64, 144, 0.06);
    border-color: rgba(77, 64, 144, 0.14);
}
.affiliateNextBtn:hover {
    box-shadow: 0 10px 20px rgba(77, 64, 144, 0.18);
}
.affiliateNextBtn {
    box-shadow: 0 10px 20px rgba(77, 64, 144, 0.08);
}

/* --- Confirm new booking button --- PURPLE (CTA) */
.confirm-new-booking {
    background: #4d4090;
    color: #fff;
}

/* --- 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 --- GRAY */
.top-nav-bar {
    background-color:#4d4090;
}
.booking-form-wrapper {
    background: rgb(0 0 0 / 15%);
}
.includes-box {
    background: rgb(0 0 0 / 15%);
}

/* --- Filter header --- PURPLE underline */
#filterSidebar > div.bg-white h3 {
    border-bottom: 1px solid rgba(77, 64, 144, 0.25) !important;
}

/* --- Large price --- PURPLE */
.ez-price-value--large {
    color: #4d4090;
}

/* --- Dual range fill --- PURPLE */
.ez-dual-range__fill {
    background: #4d4090;
}

/* --- Clear filters --- PURPLE CTA */
.ez-clear-filters-btn {
    background: #4d4090;
    color: #fff;
}
.ez-clear-filters-btn:hover {
    background: #3d3374;
    color: #fff;
}

/* --- Model specs --- */
.model-specs-title {
    border-bottom: 2px solid #939393;
}
.model-spec-item:hover {
    border-color: #4d4090;
}
.model-includes-title i {
    color: #4d4090;
}

/* --- Header --- WHITE background */
header.bg-gray-950.text-gray-300.shadow-sm.sticky.top-0.z-50 {
    background-color: #fff;
}

/* --- Footer --- light neutral background */
footer.bg-gray-950.text-gray-300.py-12.relative.overflow-hidden.font-sans {
    background-color: #fff;
}
footer .text-custom-accent {
    color: #4d4090;
}
footer .border-custom-accent\/30 {
    border-color: rgba(77, 64, 144, 0.18);
}

/* --- Footer texts --- */
footer .footer-link-item {
    color: #5a5a5a;
}
p.flex.items-center.text-gray-400.hover\:text-custom-accent.transition {
    color: #5a5a5a;
}
p.flex.items-center.text-gray-400.hover\:text-custom-accent.transition:hover {
    color: #4d4090;
}
p.text-gray-400.text-base.max-w-sm.leading-relaxed.hover\:text-custom-accent {
    color: #5a5a5a;
}
.text-center.md\:text-center.space-y-0\.5.w-full.mt-4 {
    color: #6a6a6a;
}
footer .hover\:text-custom-accent {
    color: #5a5a5a;
}

/* --- Mobile nav --- */
@media (max-width: 1024px) {
    #nav-menu.nav-menu--open {
        background-color: #fff;
    }
}

/* --- Form borders --- soft gray */
.form-group input[type="text"], .form-group input[type="date"],
.form-group input[type="time"], .form-group select {
    border: 1px solid #d0d0d0;
}

/* --- Nav links --- dark, hover PURPLE */
.ez-nav-link {
    color: #5a5a5a !important;
}
.ez-nav-link:hover {
    color: #4d4090 !important;
}

button#nav-toggle {
    color: #333;
}

/* --- Footer headings --- */
h5.font-bold.text-white.mb-4.uppercase.tracking-widest.text-sm.border-b.border-custom-accent\/30.pb-2 {
    color: #3a3a3a;
}
h5.font-bold.text-white.mb-5.uppercase.tracking-widest.text-sm.border-b.border-custom-accent\/30.pb-2 {
    color: #3a3a3a;
}

/* --- Form field icons --- GRAY */
.mf-field label i {
    color: #939393;
}
.model-spec-icon {
    color: #939393;
}
.confirm-banner-title i
{
    color: #229f27;
animation: none;
}
.confirm-card-header h3 i{
filter: none
}
.confirm-grand-total{
    background: rgb(33 108 36 / 10%);
    border: 1px solid rgb(31 135 38 / 28%);
}
.gt-value{
color: #ffffff;
}
.gt-label{
    color: #ffffff;

}
.pm-value
{
color: #ffffff7a;
}
.pm-label

 {
    color: rgb(175 175 175 / 70%);
}
.booking-form button{
    box-shadow: 0 4px 10px rgb(34 197 94 / 0%);
}
