/* ==========================================================================
   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.

   PALETTE:  Blue #6ba0ca  |  Black #000000
     - Header                -> WHITE #ffffff  (dark text on top)
     - Top nav bar           -> BLUE  #6ba0ca
     - Footer                -> WHITE #ffffff  (dark text on top)
     - All accents (buttons, links, icons, prices) -> BLUE

   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: Blue #6ba0ca === */
    --accent-color: #6ba0ca;
    --accent-color-dark: #4f86b0;
    --accent-color-light: #8fb8d8;
    --accent-color-mid: #7aabd0;

    /* -----------------------------------------------------------------
       ACCENT TRANSPARENT VARIANTS
       ----------------------------------------------------------------- */
    --accent-glow-strong: rgba(107, 160, 202, 1);
    --accent-glow: rgba(107, 160, 202, 0.7);
    --accent-glow-soft: rgba(107, 160, 202, 0.45);
    --accent-glow-dim: rgba(107, 160, 202, 0.35);
    --accent-glow-faint: rgba(107, 160, 202, 0.08);
    --accent-bg-subtle: rgba(107, 160, 202, 0.12);
    --accent-bg-glass: rgba(79, 134, 176, 0.10);
    --accent-bg-radial: rgba(107, 160, 202, 0.15);
    --accent-border-subtle: rgba(107, 160, 202, 0.22);
    --accent-border-medium: rgba(107, 160, 202, 0.30);
    --accent-text-85: rgba(47, 96, 136, 0.85);
    --accent-text-70: rgba(47, 96, 136, 0.70);

    /* -----------------------------------------------------------------
       ACTION BUTTONS
       ----------------------------------------------------------------- */
    --warning: #6ba0ca;
    --error: #EF4444;
    --success: #10B981;
    --success-dark: #059669;

    /* -----------------------------------------------------------------
       TOP NAVIGATION BAR  ->  BLUE
       ----------------------------------------------------------------- */
    --topbar-bg: #6ba0ca;

    /* -----------------------------------------------------------------
       TEXT COLORS
       ----------------------------------------------------------------- */
    --text-color: #333;
    --text-muted: #6c757d;

    /* -----------------------------------------------------------------
       BACKGROUNDS
       ----------------------------------------------------------------- */
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark-bg: #4f86b0;

    /* -----------------------------------------------------------------
       BORDERS
       ----------------------------------------------------------------- */
    --border-color: #e2e8f0;

    /* -----------------------------------------------------------------
       FLATPICKR DATE PICKER
       ----------------------------------------------------------------- */
    --flatpickr-hover-bg: #6ba0ca;
    --flatpickr-hover-text: #ffffff;
}


/* ==========================================================================
   QUICK REFERENCE
   ==========================================================================
   BLUE   #6ba0ca  -> Buttons (CTA), top nav bar, dots, icons, links,
                      borders, badges, selected states, prices
   D-BLUE #4f86b0  -> Hover states on CTAs
   DEEP   #2f6088  -> Accent text where extra weight needed (on light bg)
   WHITE  #ffffff  -> Header & Footer background
   ========================================================================== */


/* 1. Labels */
.ez-sf-field label {
    font-weight: 600 !important;
    font-size: 0.73rem !important;
}


/* ==========================================================================
   2. HEADER (WHITE)  &  FOOTER (WHITE)
   ========================================================================== */

/* --- Header --- WHITE background --- */
header.bg-gray-950.text-gray-300.shadow-sm.sticky.top-0.z-50 {
    background-color: #ffffff;
}

/* --- Nav links --- DARK on white, hover BLUE --- */
.ez-nav-link {
    color: #1a1a1a !important;
}
.ez-nav-link:hover {
    color: #6ba0ca !important;
}

button#nav-toggle {
    color: #111111;
}

/* --- Mobile nav --- WHITE (matches header) --- */
@media (max-width: 1024px) {
    #nav-menu.nav-menu--open {
        background-color: #ffffff;
    }
}


/* --- Footer --- WHITE background --- */
footer.bg-gray-950.text-gray-300.py-12.relative.overflow-hidden.font-sans {
    background-color: #ffffff;
}
footer .text-custom-accent {
    color: #6ba0ca;
}
footer .border-custom-accent\/30 {
    border-color: rgba(107, 160, 202, 0.30);
}

/* --- Footer texts --- DARK GRAY (readable on white) --- */
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: #6ba0ca;
}
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;
}

/* --- Footer headings --- DEEP BLUE on white --- */
h5.font-bold.text-white.mb-4.uppercase.tracking-widest.text-sm.border-b.border-custom-accent\/30.pb-2 {
    color: #2f6088;
}
h5.font-bold.text-white.mb-5.uppercase.tracking-widest.text-sm.border-b.border-custom-accent\/30.pb-2 {
    color: #2f6088;
}


/* ==========================================================================
   3. MISC ACCENTS
   ========================================================================== */
.model-spec-item:hover {
    border-color: #6ba0ca;
}
.model-includes-title i {
    color: #6ba0ca;
}

/* --- Form borders --- subtle GRAY --- */
.form-group input[type="text"], .form-group input[type="date"],
.form-group input[type="time"], .form-group select {
    border: 1px solid #c5c8c7;
}

/* --- Form field icons --- */
.mf-field label i {
    color: #9f9b9b;
}
.model-spec-icon {
    color: #9f9b9b;
}
.mf-field label i {
    color: #6ba0ca;
}

.border-green-500 {
  
    border-color: rgb(107 160 202)!important;
}