/* ==========================================================================
   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:  Gold #f37224  |  Dark #111  |  Dark header/footer
     - Header / Top bar / Footer -> GRAY   #f37224  (black text, dark-gray hover)
     - Accents (links, icons, borders, focus, prices) -> GRAY shades
     - Buttons (Book Now, submit, CTA)  -> YELLOW #333690 (black text)
       ** YELLOW IS USED ON BUTTONS ONLY **
     - Flatpickr: gray hover, dark-gray selected

   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: Red #f37224 / Dark #111 === */
    --accent-color: #f37224;
    --accent-color-dark: #d15d16;
    --accent-color-light: #dedede;
    --accent-color-mid: #a8a8a8;
    --accent-color-text: #111111;      /* dark gray for readable text/hovers */

    /* -----------------------------------------------------------------
       CTA COLOR  ->  YELLOW  (buttons only)
       ----------------------------------------------------------------- */
    --cta-color: #333690;
    --cta-color-dark: #262970;
    --cta-color-light: #444444;
    --cta-text: #ffffff;

    /* -----------------------------------------------------------------
       HIGHLIGHT COLOR  ->  GRAY (yellow is NOT used here)
       ----------------------------------------------------------------- */
    --highlight-color: #f37224;
    --highlight-color-dark: #d15d16;
    --highlight-color-light: #f37224;

    /* -----------------------------------------------------------------
       HEADER / FOOTER / TOP BAR  ->  GRAY
       ----------------------------------------------------------------- */
    --header-bg: #ffffff;
    --footer-bg: #ffffff;
    --header-text: #111111;
    --topbar-bg: #333690;
    --topbar-text: #ffffff;

    /* -----------------------------------------------------------------
       ACCENT TRANSPARENT VARIANTS  (GRAY)
       ----------------------------------------------------------------- */
    --accent-glow-strong: rgba(243, 114, 36, 1);
    --accent-glow: rgba(243, 114, 36, 0.7);
    --accent-glow-soft: rgba(243, 114, 36, 0.45);
    --accent-glow-dim: rgba(243, 114, 36, 0.35);
    --accent-glow-faint: rgba(243, 114, 36, 0.10);
    --accent-bg-subtle: rgba(243, 114, 36, 0.10);
    --accent-bg-glass: rgba(243, 114, 36, 0.14);
    --accent-bg-radial: rgba(243, 114, 36, 0.16);
    --accent-border-subtle: rgba(243, 114, 36, 0.45);
    --accent-border-medium: rgba(243, 114, 36, 0.70);
    --accent-text-85: rgba(92, 92, 92, 0.85);
    --accent-text-70: rgba(92, 92, 92, 0.70);

    /* -----------------------------------------------------------------
       CTA TRANSPARENT VARIANTS  (YELLOW)
       ----------------------------------------------------------------- */
    --cta-glow: rgba(0, 0, 0, 0.5);
    --cta-glow-soft: rgba(0, 0, 0, 0.35);
    --cta-bg-subtle: rgba(0, 0, 0, 0.08);
    --cta-border-medium: rgba(51, 54, 144, 0.40);

    /* -----------------------------------------------------------------
       ACTION BUTTONS  (no red / no green anywhere)
       ----------------------------------------------------------------- */
    --warning: #f37224;
    --error: #333690;
    --success: #333690;
    --success-dark: #262970;

    /* -----------------------------------------------------------------
       TEXT COLORS
       ----------------------------------------------------------------- */
    --text-color: #333;
    --text-muted: #6c757d;

    /* -----------------------------------------------------------------
       BACKGROUNDS
       ----------------------------------------------------------------- */
    --light-bg: #f4f4f4;
    --white: #ffffff;
    --dark-bg: #2b2b2b;

    /* -----------------------------------------------------------------
       BORDERS  ->  gray
       ----------------------------------------------------------------- */
    --border-color: #fbd6bf;

    /* -----------------------------------------------------------------
       FLATPICKR DATE PICKER
       ----------------------------------------------------------------- */
    --flatpickr-hover-bg: #fbd6bf;
    --flatpickr-hover-text: #111111;
}


/* ==========================================================================
   QUICK REFERENCE
   ==========================================================================
   GRAY     #f37224  -> Header, top bar, footer, borders, cards, inputs,
                        Flatpickr header/hover
   GOLD     #f37224  -> Hover borders, badges, selected, nav underline
   NAVY     #333690  -> Buttons, top bar, prices, icons, link hover
   YELLOW   #333690  -> Buttons ONLY (Book Now, submit, CTA)
   YELLOW-D #262970  -> Button hover
   BLACK    #333690  -> Header/footer text
   DARK     #333690  -> Text on yellow buttons
   ========================================================================== */


/* 1. Labels */
.ez-sf-field label {
    font-weight: 600 !important;
    font-size: 0.73rem !important;
}


/* ==========================================================================
   2. TOP NAV BAR (GRAY)  --  BLACK TEXT, DARK-GRAY HOVER
   ========================================================================== */
.topbar,
.top-bar,
.ez-topbar,
.ez-top-bar {
    background-color: #333690 !important;
    color: #ffffff !important;
    border-bottom: 1px solid #262970;
}
.topbar a,
.top-bar a,
.ez-topbar a,
.ez-top-bar a,
.topbar i,
.top-bar i,
.ez-topbar i,
.ez-top-bar i {
    color: #ffffff !important;
}
.topbar a:hover,
.top-bar a:hover,
.ez-topbar a:hover,
.ez-top-bar a:hover {
    color: #f37224 !important;
}


/* ==========================================================================
   3. HEADER (WHITE)  &  FOOTER (WHITE)  --  DARK TEXT, ORANGE HOVER
   ========================================================================== */

/* --- Header --- */
header.bg-gray-950.text-gray-300.shadow-sm.sticky.top-0.z-50 {
    background-color: #ffffff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.10);
}

/* --- Nav links --- */
.ez-nav-link {
    color: #111111 !important;
}
.ez-nav-link:hover {
    color: #f37224 !important;
}

button#nav-toggle {
    color: #111111;
}

/* --- Mobile nav --- */
@media (max-width: 1024px) {
    #nav-menu.nav-menu--open {
        background-color: #ffffff;
    }
}


/* --- Footer --- */
footer.bg-gray-950.text-gray-300.py-12.relative.overflow-hidden.font-sans {
    background-color: #ffffff;
    border-top: 1px solid #fbd6bf;
}
footer .text-custom-accent {
    color: #f37224;
}
footer .border-custom-accent\/30 {
    border-color: rgba(243, 114, 36, 0.45);
}

/* --- Footer texts --- BLACK --- */
footer .footer-link-item {
    color: #111111;
}
footer .footer-link-item:hover {
    color: #f37224;
}
p.flex.items-center.text-gray-400.hover\:text-custom-accent.transition {
    color: #111111;
}
p.flex.items-center.text-gray-400.hover\:text-custom-accent.transition:hover {
    color: #f37224;
}
p.text-gray-400.text-base.max-w-sm.leading-relaxed.hover\:text-custom-accent {
    color: #111111;
}
.text-center.md\:text-center.space-y-0\.5.w-full.mt-4 {
    color: #111111;
}
footer .hover\:text-custom-accent {
    color: #111111;
}
footer .hover\:text-custom-accent:hover {
    color: #f37224;
}
footer .text-gray-400,
footer .text-gray-300,
footer .text-gray-500 {
    color: #111111;
}

/* --- Footer headings --- BLACK --- */
h5.font-bold.text-white.mb-4.uppercase.tracking-widest.text-sm.border-b.border-custom-accent\/30.pb-2,
h5.font-bold.text-white.mb-5.uppercase.tracking-widest.text-sm.border-b.border-custom-accent\/30.pb-2 {
    color: #111111;
    border-color: rgba(243, 114, 36, 0.45);
}
footer .text-white {
    color: #111111;
}


/* ==========================================================================
   4. BUTTONS  ->  YELLOW (black text)   |   PRICES  ->  DARK GRAY
   ========================================================================== */
.btn-primary,
.btn-cta,
.ez-btn-primary,
button[type="submit"] {
    background-color: #333690;
    border-color: #333690;
    color: #ffffff;
}
.btn-primary:hover,
.btn-cta:hover,
.ez-btn-primary:hover,
button[type="submit"]:hover {
    background-color: #262970;
    border-color: #262970;
    color: #ffffff !important;
}

/* --- Book Now / fleet CTA --- */
a[href*="book"].btn,
a[href*="booking"].btn,
.ez-book-btn,
.ez-btn-book-now,
.card .btn-primary,
.model-card .btn-primary,
.ez-fleet-card a,
.fleet .btn,
.fleet a.btn,
.fleet button,
.fleet-card .btn,
.ez-fleet-card .btn,
.model-card .btn,
.book-now,
.btn-book,
.btn-book-now,
.ez-book-now,
.ez-btn-book,
a.book-now {
    background-color: #333690 !important;
    border-color: #333690 !important;
    color: #ffffff !important;
}
.fleet .btn i,
.fleet-card .btn i,
.ez-fleet-card .btn i,
.model-card .btn i,
.book-now i,
.btn-book i,
.btn-book-now i,
.ez-book-now i,
.ez-btn-book i {
    color: #ffffff !important;
}
.fleet .btn:hover,
.fleet a.btn:hover,
.fleet button:hover,
.fleet-card .btn:hover,
.ez-fleet-card .btn:hover,
.model-card .btn:hover,
.book-now:hover,
.btn-book:hover,
.btn-book-now:hover,
.ez-book-now:hover,
.ez-btn-book:hover,
a.book-now:hover {
    background-color: #262970 !important;
    border-color: #262970 !important;
    color: #ffffff !important;
}

/* --- Prices --- DARK GRAY (no yellow outside buttons) --- */
.price,
.model-price,
.ez-price {
    color: #333690;
}


/* ==========================================================================
   5. FLEET / BOOK NOW BUTTONS  --  BLACK TEXT ON HOVER
   ========================================================================== */
.fleet .btn:hover,
.fleet a.btn:hover,
.fleet button:hover,
.fleet-card .btn:hover,
.ez-fleet-card .btn:hover,
.model-card .btn:hover,
.model-card a:hover,
.book-now:hover,
.btn-book:hover,
.btn-book-now:hover,
.ez-book-now:hover,
.ez-btn-book:hover,
a.book-now:hover,
.fleet .btn:hover i,
.fleet-card .btn:hover i,
.ez-fleet-card .btn:hover i,
.model-card .btn:hover i,
.book-now:hover i,
.btn-book:hover i,
.btn-book-now:hover i,
.ez-book-now:hover i,
.ez-btn-book:hover i {
    color: #ffffff !important;
}


/* ==========================================================================
   6. MISC ACCENTS  (GRAY)
   ========================================================================== */
.model-spec-item {
    border-color: #fbd6bf;
    background-color: #fef3ea17;
}
.model-spec-item:hover {
    border-color: #f37224;
}
.model-includes-title i {
    color: #333690;
}

/* --- Form borders --- */
.form-group input[type="text"], .form-group input[type="date"],
.form-group input[type="time"], .form-group select {
    border: 1px solid #fbd6bf;
}

/* --- Form focus --- */
.form-group input[type="text"]:focus, .form-group input[type="date"]:focus,
.form-group input[type="time"]:focus, .form-group select:focus {
    border-color: #f37224;
    outline: none;
}

/* --- Form field icons --- */
.mf-field label i {
    color: #333690 !important;
}
.model-spec-icon {
    color: #333690;
}


/* ==========================================================================
   7. NO-RED / NO-GREEN HOVER OVERRIDES  (all gray)
   ========================================================================== */

/* --- Generic link hover --- */
a:hover {
    color: #333690;
}

/* --- Success / secondary buttons --- GRAY --- */
.btn-success,
.ez-btn-success,
.btn-secondary {
    background-color: #333690;
    border-color: #333690;
    color: #ffffff;
}
.btn-success:hover,
.ez-btn-success:hover,
.btn-secondary:hover {
    background-color: #262970;
    border-color: #262970;
    color: #ffffff;
}

/* --- Outline / ghost buttons --- */
.btn-outline,
.ez-btn-outline {
    border-color: #333690;
    color: #333690;
}
.btn-outline:hover,
.ez-btn-outline:hover {
    background-color: #333690;
    border-color: #333690;
    color: #ffffff;
}

/* --- Cards / list items --- */
.card:hover,
.model-card:hover,
.ez-card:hover {
    border-color: #f37224;
}

/* --- Icons --- */
a:hover i,
.icon:hover,
.ez-icon:hover {
    color: #333690;
}

/* --- Badges / tags --- */
.badge-success,
.tag-success {
    background-color: #f37224;
    color: #111111;
}

/* --- Flatpickr selected/hover --- */
.flatpickr-day:hover {
    background: #fbd6bf;
    border-color: #fbd6bf;
    color: #111111;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: #f37224;
    border-color: #f37224;
    color: #111111;
}

/* --- Dropdown / select option hover --- */
option:checked,
option:hover,
.select-option:hover {
    background-color: #fbd6bf;
    color: #111111;
}


/* ==========================================================================
   8. BOX-SHADOW  --  neutral / soft
   ========================================================================== */
.btn:hover,
.btn-secondary:hover,
.btn-success:hover,
.btn-outline:hover,
.ez-btn-success:hover,
.ez-btn-outline:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}

/* --- Yellow buttons keep a SOFT YELLOW glow --- */
.btn-cta:hover,
.btn-primary:hover,
.ez-btn-primary:hover,
button[type="submit"]:hover {
    box-shadow: 0 4px 14px rgba(51, 54, 144, 0.40);
}

/* --- Focus rings on inputs --- SOFT GRAY --- */
.form-group input[type="text"]:focus,
.form-group input[type="date"]:focus,
.form-group input[type="time"]:focus,
.form-group select:focus,
input:focus,
textarea:focus,
select:focus {
    box-shadow: 0 0 0 3px rgba(243, 114, 36, 0.35);
}

/* --- Cards / panels --- */
.card,
.model-card,
.ez-card,
.panel {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.card:hover,
.model-card:hover,
.ez-card:hover,
.panel:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

.selected,
.is-active,
.active {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0) !important;
}

.badge,
.badge-success,
.tag,
.tag-success {
    box-shadow: none;
}

.flatpickr-day.selected,
.flatpickr-day:hover {
    box-shadow: none;
}
.flatpickr-calendar {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}


/* ==========================================================================
   9. BOOKING FORM BUTTON  --  YELLOW
   ========================================================================== */
.booking-form button {
    background-color: #333690 !important;
    border-color: #333690 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(51, 54, 144, 0.30) !important;
}
.booking-form button:hover {
    background-color: #262970 !important;
    border-color: #262970 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(51, 54, 144, 0.40) !important;
}
.booking-form button:focus,
.booking-form button:focus-visible {
    box-shadow: 0 0 0 3px rgba(51, 54, 144, 0.30) !important;
    outline: none !important;
}
.booking-form button:active {
    background-color: #262970 !important;
    box-shadow: 0 1px 4px rgba(51, 54, 144, 0.30) !important;
}


/* ==========================================================================
   10. INSURANCE / PRICE CARDS  --  GRAY
   ========================================================================== */
.ez-ins-card {
    border-color: #fbd6bf !important;
}
.ez-ins-card:hover {
    border-color: #f37224 !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14) !important;
}
.ez-ins-card:hover i,
.ez-ins-card:hover .ez-ins-title,
.ez-ins-card:hover a {
    color: #333690 !important;
}
.ez-price-card--selected {
    background-color: #fef3ea !important;
    border-color: #f37224 !important;
}
.border-green-500 {
    border-color: #f37224 !important;
}
.affiliateNextBtn {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}
.affiliateNextBtn:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0) !important;
}
.ez-accent-link:hover {
    color: #333690;
}


/* ==========================================================================
   11. FLEET PAGE (car.fleet.php)  --  BOOK NOW  ->  YELLOW
   ========================================================================== */
.ez-fleet-book-btn {
    background: #333690 !important;
    background-color: #333690 !important;
    background-image: linear-gradient(135deg, #333690 0%, #262970 100%) !important;
    border-color: #333690 !important;
}
.ez-fleet-book-btn,
.ez-fleet-book-btn *,
.ez-fleet-book-btn i,
.ez-fleet-book-btn span,
.ez-fleet-book-btn:visited,
.ez-fleet-book-btn:focus,
.ez-fleet-book-btn:active {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
.ez-fleet-book-btn:hover {
    background: #262970 !important;
    background-color: #262970 !important;
    background-image: linear-gradient(135deg, #262970 0%, #262970 100%) !important;
    border-color: #262970 !important;
}
.ez-fleet-book-btn:hover,
.ez-fleet-book-btn:hover *,
.ez-fleet-book-btn:hover i,
.ez-fleet-book-btn:hover span {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}


/* ==========================================================================
   12. POLISH  --  smooth, consistent, uniform
   ========================================================================== */
a, button, .btn, .card, .model-card, .ez-card, .ez-ins-card,
.ez-fleet-book-btn, input, select, textarea, .badge, .tag {
    transition: background-color .22s ease, border-color .22s ease,
                color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.btn-primary:hover,
.btn-cta:hover,
.ez-btn-primary:hover,
.ez-fleet-book-btn:hover,
.booking-form button:hover,
button[type="submit"]:hover {
    transform: translateY(-2px);
}
.btn-primary:active,
.btn-cta:active,
.ez-fleet-book-btn:active,
.booking-form button:active {
    transform: translateY(0);
}

/* --- Animated nav underline (dark gray, ορατό πάνω στο γκρι header) --- */
.ez-nav-link {
    position: relative;
}
.ez-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #f37224;
    transition: width .25s ease;
}
.ez-nav-link:hover::after {
    width: 100%;
}

/* --- Cards --- */
.card,
.model-card,
.ez-card,
.ez-ins-card {
    border: 1px solid #fbd6bf;
    border-radius: 10px;
}

/* --- Pill badges --- */
.badge,
.tag,
.badge-success,
.tag-success {
    border-radius: 999px;
    padding: .25em .75em;
    font-weight: 600;
}

/* --- Inputs --- */
.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group select,
input, textarea, select {
    border: 1px solid #fbd6bf;
    border-radius: 8px;
}

/* --- Buttons: consistent radius --- */
.btn, button, .ez-fleet-book-btn, .booking-form button {
    border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
    a, button, .btn, .card, .model-card, .ez-card, .ez-ins-card,
    .ez-fleet-book-btn, input, select, textarea, .badge, .tag,
    .ez-nav-link::after {
        transition: none !important;
    }
    .btn-primary:hover,
    .btn-cta:hover,
    .ez-btn-primary:hover,
    .ez-fleet-book-btn:hover,
    .booking-form button:hover,
    button[type="submit"]:hover {
        transform: none !important;
    }
}


/* ==========================================================================
   13. RED / GREEN / BLUE KILLER  --  ό,τι έρχεται από το style.css γίνεται γκρι
   ========================================================================== */

/* --- Tailwind red utilities -> GRAY --- */
.bg-red-400, .bg-red-500, .bg-red-600, .bg-red-700,
.hover\:bg-red-500:hover, .hover\:bg-red-600:hover, .hover\:bg-red-700:hover {
    background-color: #333690 !important;
}
.text-red-400, .text-red-500, .text-red-600, .text-red-700,
.hover\:text-red-500:hover, .hover\:text-red-600:hover {
    color: #333690 !important;
}
.border-red-400, .border-red-500, .border-red-600, .border-red-700 {
    border-color: #f37224 !important;
}
.from-red-500, .from-red-600 { --tw-gradient-from: #333690 !important; }
.to-red-500, .to-red-600, .to-red-700 { --tw-gradient-to: #262970 !important; }

/* --- Tailwind green utilities -> GRAY --- */
.bg-green-400, .bg-green-500, .bg-green-600, .bg-green-700,
.hover\:bg-green-500:hover, .hover\:bg-green-600:hover, .hover\:bg-green-700:hover {
    background-color: #333690 !important;
}
.text-green-400, .text-green-500, .text-green-600, .text-green-700,
.hover\:text-green-500:hover, .hover\:text-green-600:hover {
    color: #333690 !important;
}
.border-green-400, .border-green-600, .border-green-700 {
    border-color: #f37224 !important;
}

/* --- Θεματικές μεταβλητές που ίσως ορίζει το style.css --- */
:root {
    --red: #333690;
    --danger: #333690;
    --danger-dark: #262970;
    --secondary-color: #f37224;
    --secondary-color-dark: #d15d16;
    --custom-cta: #333690;
    --brand-red: #333690;
}

/* --- Ό,τι έχει inline/theme κόκκινο σε ΚΟΥΜΠΙ/CTA γίνεται yellow --- */
[class*="btn"][style*="rgb(237"],
[class*="btn"][style*="#ed2426"],
[class*="cta"] {
    background-color: #333690 !important;
    border-color: #333690 !important;
    color: #ffffff !important;
}
[class*="btn"][style*="rgb(237"]:hover,
[class*="btn"][style*="#ed2426"]:hover,
[class*="cta"]:hover {
    background-color: #262970 !important;
    border-color: #262970 !important;
    color: #ffffff !important;
}

/* --- Flatpickr header --- GRAY --- */
.flatpickr-months {
    background-color: #333690;
}
.flatpickr-months .flatpickr-month,
.flatpickr-current-month,
.flatpickr-current-month input.cur-year,
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month,
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    color: #ffffff !important;
    fill: #ffffff !important;
}
.flatpickr-weekdays,
span.flatpickr-weekday {
    background-color: #c1c1c100;
    color: #5a5a5a;
}
.flatpickr-day:hover {
    background: #fbd6bf;
    border-color: #fbd6bf;
}
.flatpickr-day.selected, .flatpickr-day.selected:hover {
    background: #f37224;
    border-color: #f37224;
}

.ez-fleet-price-value{

color: #d15d16!important;
}

.ez-price-value--large{
color: #d15d16!important;

}
footer .text-custom-accent

 {
    color: #f37224;
}

footer .footer-link-item::before{
    background-color: #f37224;
}
.ez-offer-title {
    color: #7c7b76;
}

.ez-feature-icon

 {
    color: #7c7b76;
}
.top-nav-bar

 {
    background-color: #d15d16;
}