/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     autokefalonia
 Version:      1.0
 Text Domain:  bricks
*/
/* ==========================================================================
   GLOBAL DESIGN SYSTEM (The Ionian Editorial)
   ========================================================================== */

:root {
  /* Dynamic Tonal Palette */
  --color-primary: #4ce338;
  --color-primary-container: #0dba00;
  --color-background: #131316;
  --color-surface: #131316;
  --color-surface-container: #1f1f22;
  --color-surface-container-high: #2a2a2d;
  --color-surface-container-lowest: #0e0e11;
  --color-on-surface: #e4e1e6;
  --color-on-surface-variant: #bccbb3;
  --color-outline-variant: #3d4a38;
}

/* Base Body Styles */
body {
    background-color: var(--color-background);
    color: var(--color-on-surface);
}

/* ==========================================================================
   CUSTOM UTILITIES
   ========================================================================== */

/* Signature Background Gradient */
.bg-obsidian-gradient { 
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-container) 100%); 
}

/* Glass Card Layering */
.glass-obsidian { 
    background: rgba(53, 52, 56, 0.6); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
}

/* ==========================================================================
   VIKRENTCAR CSS OVERRIDES (Bricks Builder Targeted)
   ========================================================================== */

/* Booking Form Container Customization */
.vikrentcar-search-module, 
.vrc-search-mod {
    background: rgba(53, 52, 56, 0.6) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(188, 203, 179, 0.1) !important; 
    border-radius: 0.5rem !important; 
    padding: 2rem !important;
    color: var(--color-on-surface) !important;
}

/* Form Inputs ("No-Line" style) */
.vikrentcar-search-module select, 
.vikrentcar-search-module input[type="text"], 
.vikrentcar-search-module input[type="date"],
.vrc-search-mod select, 
.vrc-search-mod input[type="text"], 
.vrc-search-mod input[type="date"] {
    background: var(--color-surface-container-high) !important;
    border: none !important;
    color: var(--color-on-surface) !important;
    padding: 1rem !important;
    border-radius: 0.25rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    outline: none !important;
    margin-top: 0.5rem !important;
}

.vikrentcar-search-module select:focus, 
.vikrentcar-search-module input:focus,
.vrc-search-mod select:focus, 
.vrc-search-mod input:focus {
    box-shadow: 0 0 0 1px var(--color-primary) !important;
}

/* Submit Button Gradient */
.vikrentcar-search-module .vrc-submit,
.vrc-search-mod .vrc-submit {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-container) 100%) !important;
    color: #024100 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    padding: 1.25rem !important;
    border: none !important;
    border-radius: 0.25rem !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: filter 0.3s ease !important;
    margin-top: 1.5rem !important;
}

.vikrentcar-search-module .vrc-submit:hover,
.vrc-search-mod .vrc-submit:hover {
    filter: brightness(110%) !important;
}

/* Labels */
.vikrentcar-search-module label,
.vrc-search-mod label {
    font-size: 0.65rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: var(--color-on-surface-variant) !important;
    font-weight: 600 !important;
}

/* ==========================================================================
   VIKRENTCAR MASTER OVERRIDES (OBSIDIAN ELITE)
   ========================================================================== */

/* 1. Main Plugin Container - THE NUCLEAR FIX */
body .vrcdivsearch {
    background: rgba(13, 13, 13, 0.8) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    padding: 20px 30px !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5) !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

/* 2. Strip Plugin White Backgrounds & Borders */
body .vrcsfentrydate, 
body .vrcsfentrytime, 
body .vrcsfentrylabsel, 
body .vrcsfentrycont,
body .vrcdivsearch .vrcsfentrysel,
body .vrcdivsearch input,
body .vrcdivsearch select {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #fff !important;
}

/* 3. Input & Select Styling (Obsidian Style) */
body .vrcdivsearch input,
body .vrcdivsearch select {
    background: rgba(26, 26, 26, 0.95) !important; /* Force deep dark bg */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important; /* Smoother curve */
    padding: 10px 15px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    margin-top: 5px !important;
    color: #fff !important;
    outline: none !important;
}

body .vrcdivsearch select:focus,
body .vrcdivsearch input:focus {
    background: #121212 !important;
    border-color: #4ce338 !important;
    box-shadow: 0 0 10px rgba(76, 227, 56, 0.2) !important;
}

/* Minute fields (by name) */
body .vrcdivsearch select[name="pickupm"],
body .vrcdivsearch select[name="releasem"],
body .vrcdivsearch select[name="hpickup"],
body .vrcdivsearch select[name="mpickup"],
body .vrcdivsearch select[name="hrelease"],
body .vrcdivsearch select[name="mrelease"] {
    background-color: #121212 !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' 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") !important;
    background-repeat: no-repeat !important;
    background-position: right 8px center !important;
    background-size: 16px !important;
}

/* SHRINKING THE HULK BUTTON (PRECISION PROFILE) */
body .vrcdivsearch .vrc-search-btn {
    background-color: #4ce338 !important;
    color: #000000 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    font-size: 0.9rem !important;
    border-radius: 8px !important;
    padding: 10px 32px !important; /* Slightly wider padding to keep its 'button' shape */
    border: none !important;
    box-shadow: 0 0 15px rgba(76, 227, 56, 0.4) !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 48px !important;
    width: fit-content !important; /* Make it compact, not a full bar */
    margin: 20px auto 0 !important; /* Center it and give it some breathing room from the fields */
}

/* THE ULTIMATE OBSIDIAN SNAKE CHASE (PURE CSS PERIMETER) */

/* Register custom property for smooth angle rotation */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

#ui-datepicker-div {
    position: absolute !important; 
    padding: 0 !important; 
    background: rgba(13, 13, 13, 0.85) !important;
    backdrop-filter: blur(40px) !important;
    -webkit-backdrop-filter: blur(40px) !important;
    border-radius: 12px !important;
    z-index: 1000000 !important;
    /* Clean, premium, stable OBSIDIAN Elite edge glow (Breathing) */
    border: 1.5px solid #4ce338;
    box-shadow: 
        0 40px 80px rgba(0,0,0,0.9), 
        0 0 15px rgba(76,227,56,0.6), 
        0 0 30px rgba(76,227,56,0.4), 
        0 0 50px rgba(76,227,56,0.2),
        inset 0 0 15px rgba(76,227,56,0.15);
    animation: obsidian-breathe 4s ease-in-out infinite alternate;
    color: #fff !important;
    font-family: 'Inter', sans-serif !important;
    min-width: 250px !important;
    /* Ensure no weird overflow or clipping issues from previous CSS */
}

@keyframes obsidian-breathe {
    0% {
        box-shadow: 
            0 40px 80px rgba(0,0,0,0.9), 
            0 0 10px rgba(76,227,56,0.2), 
            0 0 20px rgba(76,227,56,0.15), 
            0 0 30px rgba(76,227,56,0.1),
            inset 0 0 10px rgba(76,227,56,0.05);
        border-color: rgba(76, 227, 56, 0.4);
    }
    100% {
        box-shadow: 
            0 40px 80px rgba(0,0,0,0.9), 
            0 0 25px rgba(76,227,56,0.8), 
            0 0 45px rgba(76,227,56,0.5), 
            0 0 70px rgba(76,227,56,0.3),
            inset 0 0 20px rgba(76,227,56,0.2);
        border-color: rgba(76, 227, 56, 1);
    }
}

/* Nuke empty button panes and junk that dynamically add ghost height */
#ui-datepicker-div .ui-datepicker-buttonpane,
#ui-datepicker-div .ui-datepicker-time {
    display: none !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

/* ==========================================================================
   THE MASSIVE OBSIDIAN ELITE FACADE
   ========================================================================== */

/* 1. Hide the original input form structurally but keep it accessible for JS */
.vikrentcar-obsidian-wrapper .vrc-custom-search {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -10 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* 2. Style the new premium facade */
.obsidian-facade {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    font-family: 'Inter', sans-serif;
    margin-top: 20px;
}

.facade-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.facade-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
}

.facade-dropdown {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.facade-dropdown:hover {
    background: #222;
    border-color: rgba(255, 255, 255, 0.1);
}

.facade-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px; /* Very thin gap creates the divider */
    background: rgba(255, 255, 255, 0.05); /* Divider color */
    border-radius: 8px;
    overflow: hidden;
}

.facade-card {
    background: #272925; /* Premium dark olive/grey from Stitch design */
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.facade-card:hover {
    background: #2d302c;
}

.facade-card .card-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 25px;
}

/* Date Specifics */
.facade-card .card-dayname {
    font-size: 14px;
    font-weight: 700;
    color: #4ce338;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.facade-card .card-number {
    font-size: 6rem; /* MASSIVE numbers like Stitch design */
    font-weight: 900;
    line-height: 0.9;
    color: #4ce338;
    margin-bottom: 10px;
}

.facade-card .card-monthyear {
    font-size: 14px;
    font-weight: 700;
    color: #4ce338;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Time Specifics */
.facade-card .card-time {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: #4ce338;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
}

.facade-card .card-time .colon {
    font-size: 3rem;
    margin: 0 5px;
    transform: translateY(-5px);
}

.facade-card .card-ampm {
    font-size: 14px;
    font-weight: 800;
    color: #4ce338;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Check Availability Button */
.facade-submit {
    background: #4ce338;
    color: #000;
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 25px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
}

.facade-submit:hover {
    background: #5df04a;
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 30px rgba(76, 227, 56, 0.2);
}

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

/* 4. Column Layout & Spacing */
body .vrcdivsearch .vrc-searchf-section-datetimes {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
}

/* 5. Icons & Labels (Material Symbols) */
body .vrcdivsearch label {
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    color: rgba(255, 255, 255, 0.6) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
}

/* Inject Material Symbols pseudo-icons into labels */
body .vrcdivsearch label::before {
    font-family: 'Material Symbols Outlined' !important;
    color: #4ce338 !important;
    font-size: 32px !important; /* HERO SIZE */
    margin-bottom: 8px !important;
    display: block !important;
}

body .vrcsfentrydate:nth-of-type(1) label::before { content: 'calendar_month'; }
body .vrcsfentrydate:nth-of-type(2) label::before { content: 'calendar_today'; }
body .vrcsfentrytime label::before { content: 'schedule'; }

/* 6. High-Conversion Search Button */
body .vrc-search-btn {
    background: #4ce338 !important;
    color: #000 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    padding: 15px 40px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: none !important;
    margin-top: 15px !important;
    filter: drop-shadow(0 0 10px rgba(76, 227, 56, 0.2)) !important;
}

body .vrc-search-btn:hover {
    transform: translateY(-2px) scale(1.02) !important;
    background: #5df04a !important;
    filter: drop-shadow(0 0 20px rgba(76, 227, 56, 0.4)) !important;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    body .vrcdivsearch .vrc-searchf-section-datetimes {
        flex-direction: column !important;
        align-items: stretch !important;
    }
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.flex { display: flex !important; }
.items-center { align-items: center !important; }
.justify-between { justify-content: space-between !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 0.75rem !important; }
.gap-6 { gap: 1.5rem !important; }
.grid { display: grid !important; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
.opacity-40 { opacity: 0.4 !important; }
.opacity-50 { opacity: 0.5 !important; }
.uppercase { text-transform: uppercase !important; }
.tracking-widest { letter-spacing: 0.1em !important; }
.font-black { font-weight: 900 !important; }
.rounded-lg { border-radius: 0.5rem !important; }
.p-4 { padding: 1rem !important; }
.text-xs { font-size: 0.75rem !important; }
.text-sm { font-size: 0.875rem !important; }
.text-2xl { font-size: 1.5rem !important; }
.w-full { width: 100% !important; }
.font-headline { font-family: 'Manrope', sans-serif !important; }
/* 7. Hide Plugin Branding */
body .vrc-main-title,
body .vrc-mod-title {
    display: none !important;
}

/* ==========================================================================
   PREMIUM DATEPICKER (OBSIDIAN GLASS)
   ========================================================================== */


/* Header & Month/Year */
#ui-datepicker-div .ui-datepicker-header {
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    margin-bottom: 10px !important;
}

/* Navigation Arrows */
#ui-datepicker-div .ui-datepicker-prev,
#ui-datepicker-div .ui-datepicker-next {
    cursor: pointer !important;
    filter: invert(1) brightness(2) !important;
}

/* Calendar Grid */
#ui-datepicker-div table {
    width: 100% !important;
    border-collapse: collapse !important;
}

#ui-datepicker-div th {
    color: rgba(255, 255, 255, 0.3) !important;
    font-size: 10px !important;
    text-transform: uppercase !important;
    padding: 8px 0 !important;
}

/* Individual Days */
#ui-datepicker-div .ui-state-default {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
    text-align: center !important;
    border-radius: 6px !important;
    padding: 8px !important;
    transition: all 0.2s ease !important;
    display: block !important;
    text-decoration: none !important;
}

/* THE "HULK GLOW" HOVER STATE */
#ui-datepicker-div .ui-state-hover,
#ui-datepicker-div .ui-state-active {
    background: #4ce338 !important;
    color: #000 !important;
    font-weight: 700 !important;
    box-shadow: 0 0 15px rgba(76, 227, 56, 0.5) !important;
    border-color: #4ce338 !important;
}

/* ==========================================================================
   TIMEPICKER FINAL NUKE (FORCE DARK)
   ========================================================================== */
#pickuph, #pickupm, #releaseh, #releasem,
body .vrcdivsearch select {
    background-color: #121212 !important;
    background: #121212 !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    padding: 5px !important;
    appearance: auto !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
}

body .vrcdivsearch select option {
    background-color: #121212 !important;
    color: #fff !important;
}

/* END OF FILE */


/* AutoKefalonia Bricks-editable pages */
.akb-home,.akp-page{--ak-green:#4ce338;--ak-green-dark:#0dba00;--ak-ink:#f6f7f2;--ak-muted:#b9c7b0;--ak-bg:#080a0d;--ak-card:#12161a;--ak-line:rgba(255,255,255,.12);font-family:Inter,Manrope,system-ui,-apple-system,Segoe UI,sans-serif;color:var(--ak-ink)}
.akb-hero,.akp-page{background:radial-gradient(circle at 12% 0%,rgba(76,227,56,.16),transparent 30%),linear-gradient(180deg,#080a0d,#11161a 48%,#080a0d)}
.akb-hero{min-height:88vh;padding:72px 18px;display:flex;align-items:center}.akb-section{background:#080a0d;padding:80px 18px}.akb-wrap,.akp-wrap{width:min(1180px,100%);margin-inline:auto}.akb-hero-grid{display:grid!important;grid-template-columns:minmax(0,1.05fr) minmax(360px,.8fr);gap:42px;align-items:center}.akb-pill,.akb-eyebrow{display:inline-flex;align-items:center;width:max-content;color:#d8ffd2;border:1px solid rgba(76,227,56,.34);background:rgba(76,227,56,.09);border-radius:999px;padding:8px 13px;font-size:13px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.akb-h1{font-size:clamp(42px,6vw,86px)!important;line-height:.95!important;letter-spacing:-.065em!important;margin:22px 0 18px!important}.akb-lead,.akb-section-lead{font-size:clamp(17px,2vw,22px);line-height:1.62;color:#dce7d8;max-width:820px}.akb-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:24px}.ak-btn{display:inline-flex!important;align-items:center;justify-content:center;min-height:52px;padding:0 22px!important;border-radius:999px!important;text-decoration:none!important;font-weight:900!important;border:1px solid var(--ak-line)!important}.ak-btn-primary{background:linear-gradient(135deg,var(--ak-green),var(--ak-green-dark))!important;color:#041300!important}.ak-btn-ghost{background:rgba(255,255,255,.06)!important;color:#fff!important}.akb-trust{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:28px}.akb-trust-item{border:1px solid var(--ak-line);background:rgba(255,255,255,.055);border-radius:18px;padding:16px}.akb-trust-item strong{display:block;font-size:21px}.akb-trust-item span{display:block;color:var(--ak-muted);font-size:13px;margin-top:4px}.akb-booking-card{border:1px solid rgba(255,255,255,.14);border-radius:28px;background:rgba(10,12,14,.72);box-shadow:0 34px 90px rgba(0,0,0,.46),inset 0 1px 0 rgba(255,255,255,.08);backdrop-filter:blur(22px);padding:24px}.akb-booking-title{font-size:28px!important;margin-bottom:8px!important}.akb-muted,.akb-card-text{color:var(--ak-muted)}.akb-section-title{font-size:clamp(32px,4vw,56px)!important;line-height:1!important;letter-spacing:-.05em!important;max-width:850px}.akb-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:30px}.akb-card,.akb-panel,.ak-price-card{border:1px solid var(--ak-line);background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.035));border-radius:26px;padding:28px}.akb-card-title{font-size:23px!important}.akb-split{display:grid!important;grid-template-columns:.9fr 1.1fr;gap:28px}.akb-check{color:#e8eee4;margin:10px 0}.akb-link{width:100%;justify-content:space-between;background:rgba(255,255,255,.06)!important;color:#fff!important;margin-bottom:12px}.akp-page{padding:76px 18px 90px}.akp-note{border:1px solid rgba(76,227,56,.26);background:rgba(76,227,56,.08);border-radius:20px;padding:18px 20px;margin:30px 0 24px;color:#eaffdf}.akp-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-top:24px}.ak-price-card{padding:0;overflow:hidden}.ak-price-head{display:grid;grid-template-columns:1fr auto;gap:10px;align-items:start;padding:22px;background:linear-gradient(135deg,rgba(76,227,56,.13),rgba(255,255,255,.03))}.ak-price-title{font-size:24px!important;margin:0!important}.ak-price-similar{color:var(--ak-muted);font-size:14px}.ak-class-badge{grid-column:2;grid-row:1 / span 2;background:linear-gradient(135deg,var(--ak-green),var(--ak-green-dark));color:#061300;border-radius:999px;padding:8px 11px;font-weight:950;font-size:13px}.ak-price-rows{padding:8px 0}.ak-price-row{display:grid;grid-template-columns:1.25fr repeat(4,1fr);gap:8px;padding:12px 16px;border-top:1px solid var(--ak-line);font-weight:800;color:#eef5ea}.ak-price-row-head{font-size:12px;color:#d6e8cf;text-transform:uppercase;letter-spacing:.05em;background:rgba(255,255,255,.035)}.akp-disclaimer{margin-top:30px;border:1px solid rgba(255,193,7,.26);background:rgba(255,193,7,.08);color:#fff1c7;border-radius:20px;padding:18px 20px;font-weight:800;text-transform:uppercase;letter-spacing:.02em}@media(max-width:980px){.akb-hero-grid,.akb-split,.akp-grid{grid-template-columns:1fr!important}.akb-cards,.akb-trust{grid-template-columns:1fr}.akb-hero,.akb-section,.akp-page{padding-left:12px;padding-right:12px}.ak-price-row{min-width:640px}.ak-price-rows{overflow-x:auto}}@media(max-width:560px){.akb-h1{font-size:44px!important}.akb-booking-card,.akb-card,.akb-panel{border-radius:20px;padding:20px}.akb-actions .ak-btn{width:100%}}

/* ==========================================================================
   SEMANTIC SEO HOMEPAGE BLOCKS
   ========================================================================== */
.akb-semantic { position: relative; }
.akb-cards-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.akb-entity-card,
.akb-location-card,
.akb-review-card,
.akb-faq-item {
  height: 100%;
}
.akb-entity-card .akb-link,
.akb-location-card .akb-link {
  margin-top: auto;
}
.akb-location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.akb-location-card {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 20px 60px rgba(0,0,0,.24);
}
.akb-price-preview .akb-panel { overflow: hidden; }
.akb-mini-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}
.akb-mini-price {
  padding: 18px;
  border-radius: 18px;
  background: rgba(76,227,56,.06);
  border: 1px solid rgba(76,227,56,.16);
}
.akb-check-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.akb-reviews .akb-review-card {
  border-color: rgba(255, 214, 102, .20);
}
.akb-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.akb-faq-item {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}
.akb-final-cta .akb-panel {
  text-align: center;
  align-items: center;
}
@media (max-width: 1100px) {
  .akb-cards-five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .akb-location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .akb-cards-five,
  .akb-location-grid,
  .akb-mini-price-grid,
  .akb-faq-grid { grid-template-columns: 1fr; }
}


/* Clean premium VikRentCar facade: hide duplicate native fields but keep them in the real form for submission. */
.vikrentcar-obsidian-wrapper .ak-vrc-real-form > .vrc-searchf-section-datetimes,
.vikrentcar-obsidian-wrapper .ak-vrc-real-form > .vrc-searchf-section-categories,
.vikrentcar-obsidian-wrapper .ak-vrc-real-form > .vrc-searchf-section-sbmt {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Current setup has no pickup places configured, so do not show a fake location selector. */
.vikrentcar-obsidian-wrapper .ak-facade-location,
.vikrentcar-obsidian-wrapper .ak-facade-vehicle {
    display: none !important;
}

.vikrentcar-obsidian-wrapper .obsidian-facade {
    margin-top: 0;
}


/* Visible time controls inside the big Obsidian facade cards. These sync to the hidden VikRentCar fields. */
.facade-time-controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,.28);
    border: 1px solid rgba(76,227,56,.22);
    color: #4ce338;
}
.facade-time-controls select {
    appearance: none;
    -webkit-appearance: none;
    background: #121212 !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    border-radius: 999px !important;
    padding: 7px 26px 7px 12px !important;
    min-width: 72px;
    font-weight: 800 !important;
    text-align: center;
    cursor: pointer;
}
.facade-time-controls select:focus {
    outline: none !important;
    border-color: #4ce338 !important;
    box-shadow: 0 0 0 2px rgba(76,227,56,.18) !important;
}


/* Big-card custom time picker: no redundant small selects, no clipped return time. */
.facade-card { position: relative; overflow: visible; }
.facade-card .card-time {
    font-size: clamp(3rem, 7vw, 5rem);
    max-width: 100%;
    white-space: nowrap;
    justify-content: center;
}
.facade-card .card-time .colon { font-size: .62em; }
.facade-time-controls { display: none !important; }
.facade-time-popover {
    display: none;
    position: absolute;
    left: 50%;
    top: calc(100% - 18px);
    transform: translateX(-50%);
    z-index: 50;
    width: min(360px, calc(100vw - 48px));
    padding: 18px;
    border-radius: 22px;
    background: rgba(12, 13, 12, .96);
    border: 1px solid rgba(76,227,56,.28);
    box-shadow: 0 30px 90px rgba(0,0,0,.65), 0 0 30px rgba(76,227,56,.14);
    backdrop-filter: blur(18px);
}
.facade-time-popover.is-open { display: block; }
.facade-card.is-open { z-index: 60; background: #2d302c; }
.facade-time-popover-title {
    color: #fff;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 11px;
    margin-bottom: 12px;
}
.facade-time-options {
    display: grid;
    gap: 8px;
}
.facade-time-hours {
    grid-template-columns: repeat(6, 1fr);
    margin-bottom: 12px;
}
.facade-time-minutes {
    grid-template-columns: repeat(4, 1fr);
}
.facade-time-option {
    appearance: none;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(255,255,255,.055);
    color: #fff;
    font-weight: 900;
    padding: 10px 8px;
    cursor: pointer;
}
.facade-time-option:hover,
.facade-time-option.is-active {
    background: #4ce338;
    color: #000;
    border-color: #4ce338;
}
.facade-time-popover-hint {
    margin-top: 12px;
    color: rgba(255,255,255,.45);
    font-size: 11px;
}
@media (max-width: 900px) {
    .facade-card .card-time { font-size: clamp(2.6rem, 11vw, 4.4rem); }
    .facade-grid { grid-template-columns: 1fr !important; }
    .facade-time-popover { top: calc(100% - 8px); }
}
@media (min-width: 901px) and (max-width: 1200px) {
    .facade-card { padding-left: 12px; padding-right: 12px; }
    .facade-card .card-time { font-size: clamp(3rem, 5.8vw, 4.2rem); }
}


/* Reliable native time picker overlay: click the big time card, not a small redundant control. */
.facade-native-time {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    z-index: 70 !important;
    cursor: pointer !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    color: transparent !important;
}
.facade-native-time::-webkit-calendar-picker-indicator {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Desktop: use our styled time popover. Mobile/touch: keep native clock picker. */
@media (hover: hover) and (pointer: fine) {
    .facade-native-time {
        pointer-events: none !important;
        display: none !important;
    }
    .facade-time-popover {
        pointer-events: auto !important;
    }
}
@media (hover: none), (pointer: coarse) {
    .facade-time-popover {
        display: none !important;
    }
    .facade-native-time {
        pointer-events: auto !important;
        display: block !important;
    }
}

.facade-time-done {
    width: 100%;
    margin-top: 14px;
    border: 0;
    border-radius: 12px;
    background: #4ce338;
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 12px 14px;
    cursor: pointer;
}


/* Hard desktop fallback: make sure the big time cards receive clicks. */
@media (hover: hover) and (pointer: fine) {
    #facade-time-pickup,
    #facade-time-return {
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    #facade-time-pickup *,
    #facade-time-return * {
        pointer-events: none;
    }
    #facade-time-pickup .facade-time-popover,
    #facade-time-return .facade-time-popover,
    #facade-time-pickup .facade-time-popover *,
    #facade-time-return .facade-time-popover * {
        pointer-events: auto !important;
    }
}


/* Time picker bugfix: let the popup escape the time grid and keep option clicks selectable. */
.obsidian-facade .facade-grid {
    overflow: visible !important;
}
.facade-time-popover,
.facade-time-popover * {
    pointer-events: auto !important;
}


/* ==========================================================================
   FANCY RESPONSIVE SITE HEADER
   ========================================================================== */
.ak-site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    padding: 14px 18px;
    background: linear-gradient(180deg, rgba(7,9,8,.92), rgba(7,9,8,.58));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.07);
}
body.admin-bar .ak-site-header { top: 32px; }
.ak-header-shell {
    width: min(1180px, 100%);
    margin-inline: auto;
    min-height: 68px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 999px;
    background: rgba(14,16,15,.78);
    box-shadow: 0 20px 70px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.06);
}
.ak-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none !important;
    min-width: max-content;
}
.ak-brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 25%, #cfffca, #4ce338 42%, #0dba00 100%);
    color: #061300;
    font: 950 15px/1 Inter, sans-serif;
    box-shadow: 0 0 28px rgba(76,227,56,.28);
}
.ak-brand-copy strong,
.ak-brand-copy small { display: block; }
.ak-brand-copy strong {
    font: 900 18px/1.05 Manrope, Inter, sans-serif;
    letter-spacing: -.04em;
}
.ak-brand-copy small {
    color: rgba(232,238,228,.62);
    font: 800 10px/1.4 Inter, sans-serif;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-top: 3px;
}
.ak-desktop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    min-width: 0;
}
.ak-desktop-nav a {
    color: rgba(239,247,236,.78);
    text-decoration: none !important;
    font: 850 13px/1 Inter, sans-serif;
    padding: 12px 11px;
    border-radius: 999px;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.ak-desktop-nav a:hover {
    color: #fff;
    background: rgba(255,255,255,.07);
    transform: translateY(-1px);
}
.ak-header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
.ak-header-phone,
.ak-header-cta,
.ak-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    text-decoration: none !important;
    font: 950 12px/1 Inter, sans-serif;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.ak-header-phone {
    color: #dff7da;
    border: 1px solid rgba(255,255,255,.12);
    padding: 0 15px;
    background: rgba(255,255,255,.045);
}
.ak-header-cta,
.ak-mobile-cta {
    color: #061300;
    background: linear-gradient(135deg, #4ce338, #0dba00);
    padding: 0 18px;
    box-shadow: 0 0 24px rgba(76,227,56,.22);
}
.ak-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    background: rgba(255,255,255,.055);
    cursor: pointer;
    padding: 0;
}
.ak-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: #fff;
    transition: transform .2s ease, opacity .2s ease;
}
.ak-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ak-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.ak-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.ak-mobile-panel {
    width: min(1180px, calc(100% - 36px));
    margin: 10px auto 0;
    padding: 14px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(12,14,13,.96);
    box-shadow: 0 28px 90px rgba(0,0,0,.46);
}
.ak-mobile-nav {
    display: grid;
    gap: 8px;
}
.ak-mobile-nav a {
    color: #fff;
    text-decoration: none !important;
    padding: 15px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.055);
    font-weight: 850;
}
.ak-mobile-cta {
    width: 100%;
    margin-top: 12px;
}
@media (max-width: 1120px) {
    .ak-desktop-nav { display: none; }
    .ak-menu-toggle { display: inline-block; }
    .ak-header-shell { grid-template-columns: auto 1fr auto; }
}
@media (max-width: 640px) {
    .ak-site-header { padding: 10px 10px; }
    body.admin-bar .ak-site-header { top: 46px; }
    .ak-header-shell {
        min-height: 60px;
        padding: 8px;
        gap: 10px;
    }
    .ak-brand-mark { width: 42px; height: 42px; }
    .ak-brand-copy strong { font-size: 16px; }
    .ak-brand-copy small { display: none; }
    .ak-header-phone { display: none; }
    .ak-header-cta { min-height: 42px; padding: 0 13px; font-size: 11px; }
    .ak-menu-toggle { width: 42px; height: 42px; }
}
@media (max-width: 390px) {
    .ak-brand-copy strong { max-width: 116px; overflow: hidden; text-overflow: ellipsis; }
    .ak-header-cta { display: none; }
}


/* Real AutoKefalonia logo in header */
.ak-brand-logo {
    display: block;
    width: clamp(150px, 15vw, 198px);
    height: auto;
    max-height: 62px;
    object-fit: contain;
    filter: drop-shadow(0 8px 22px rgba(0,0,0,.32));
}
.ak-brand:has(.ak-brand-logo) {
    min-width: auto;
}
.ak-header-mobile-phone {
    padding-inline: 13px;
}
@media (max-width: 760px) {
    .ak-brand-logo { width: 142px; max-height: 54px; }
    .ak-header-mobile-phone { display: none; }
}
@media (max-width: 480px) {
    .ak-brand-logo { width: 128px; }
}

/* Mobile booking facade: keep date pair and time pair side-by-side instead of stacking. */
@media (max-width: 900px) {
    .vikrentcar-obsidian-wrapper .facade-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .vikrentcar-obsidian-wrapper .facade-card {
        min-width: 0;
        padding: clamp(18px, 5vw, 30px) clamp(8px, 3vw, 16px);
    }
    .vikrentcar-obsidian-wrapper .facade-card .card-title {
        font-size: clamp(9px, 2.4vw, 11px);
        letter-spacing: .13em;
        margin-bottom: clamp(14px, 4vw, 22px);
    }
    .vikrentcar-obsidian-wrapper .facade-card .card-dayname,
    .vikrentcar-obsidian-wrapper .facade-card .card-monthyear,
    .vikrentcar-obsidian-wrapper .facade-card .card-ampm {
        font-size: clamp(11px, 3vw, 14px);
        letter-spacing: .08em;
    }
    .vikrentcar-obsidian-wrapper .facade-card .card-number {
        font-size: clamp(4.2rem, 18vw, 6rem);
    }
    .vikrentcar-obsidian-wrapper .facade-card .card-time {
        font-size: clamp(2.35rem, 11.5vw, 5rem);
        letter-spacing: -.06em;
    }
    .vikrentcar-obsidian-wrapper .facade-card .card-time .colon {
        margin-inline: clamp(1px, 1vw, 5px);
    }
    .vikrentcar-obsidian-wrapper .obsidian-facade {
        gap: clamp(22px, 6vw, 30px);
    }
}

@media (max-width: 420px) {
    .vikrentcar-obsidian-wrapper .facade-card .card-time {
        font-size: clamp(2.05rem, 10vw, 3rem);
    }
    .vikrentcar-obsidian-wrapper .facade-card .card-number {
        font-size: clamp(3.4rem, 16vw, 4.6rem);
    }
    .vikrentcar-obsidian-wrapper .facade-submit {
        padding: 20px 14px;
        font-size: 14px;
    }
}

/* SUPPORT SEO PAGES - AutoKefalonia */
.ak-support-page {
  background:
    radial-gradient(circle at 15% 0%, rgba(53, 255, 154, .13), transparent 30rem),
    radial-gradient(circle at 85% 10%, rgba(18, 170, 105, .10), transparent 34rem),
    #050806;
  color: #eef8f0;
  padding: clamp(7rem, 9vw, 10rem) 1.25rem clamp(4rem, 7vw, 7rem);
  min-height: 72vh;
}
.ak-support-wrap {
  width: min(1160px, 100%);
  margin: 0 auto;
}
.ak-support-h1 {
  max-width: 920px;
  margin: .6rem 0 1rem;
  color: #fff;
  font-size: clamp(2.35rem, 6vw, 5.25rem);
  line-height: .94;
  letter-spacing: -.06em;
}
.ak-support-lead {
  max-width: 760px;
  color: rgba(238, 248, 240, .78);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.7;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.ak-support-content h2 {
  color: #fff;
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  letter-spacing: -.035em;
  margin: 0 0 .75rem;
}
.ak-support-content p {
  color: rgba(238, 248, 240, .75);
  line-height: 1.75;
}
.ak-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
}
.ak-card-grid article,
.ak-support-block,
.ak-faq-list article {
  border: 1px solid rgba(160, 255, 197, .16);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border-radius: 28px;
  padding: clamp(1.25rem, 2.4vw, 2rem);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.ak-card-grid article span {
  display: inline-flex;
  color: #59ff9d;
  background: rgba(89, 255, 157, .1);
  border: 1px solid rgba(89, 255, 157, .2);
  border-radius: 999px;
  padding: .35rem .7rem;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.ak-support-block { margin: 1rem 0; }
.ak-pill-list,
.ak-location-list {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.ak-pill-list li,
.ak-location-list li {
  border-radius: 999px;
  border: 1px solid rgba(89, 255, 157, .18);
  background: rgba(89, 255, 157, .075);
  color: rgba(255,255,255,.88);
  padding: .58rem .85rem;
}
.ak-faq-list {
  display: grid;
  gap: 1rem;
}
.ak-support-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.ak-support-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  color: #031107;
  background: linear-gradient(135deg, #55ff99, #1ed46f);
  box-shadow: 0 16px 44px rgba(34, 214, 111, .22);
}
.ak-support-cta a + a {
  color: #ecfff3;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: none;
}
@media (max-width: 820px) {
  .ak-card-grid { grid-template-columns: 1fr; }
  .ak-support-page { padding-top: 6.5rem; }
}

/* NATIVE BRICKS FOOTER - AutoKefalonia */
.ak-site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(70, 255, 145, .18), transparent 34rem),
    radial-gradient(circle at 88% 20%, rgba(28, 177, 92, .16), transparent 30rem),
    linear-gradient(180deg, #07120b 0%, #030604 100%);
  color: #f0fff4;
  border-top: 1px solid rgba(110, 255, 166, .16);
  margin-top: clamp(3rem, 7vw, 6rem);
}
.ak-site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 72%);
}
.ak-footer-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 4.5rem) 0 1.25rem;
}
.ak-footer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid rgba(123, 255, 177, .22);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  box-shadow: 0 26px 90px rgba(0, 0, 0, .36);
}
.ak-footer-kicker {
  display: inline-flex;
  margin-bottom: .7rem;
  color: #6effaa;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.ak-footer-hero h2 {
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.ak-footer-hero p {
  margin: .9rem 0 0;
  max-width: 760px;
  color: rgba(239, 255, 244, .76);
  font-size: clamp(.98rem, 1.5vw, 1.08rem);
  line-height: 1.7;
}
.ak-footer-actions {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  min-width: min(250px, 100%);
}
.ak-footer-primary,
.ak-footer-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}
.ak-footer-primary {
  color: #031107;
  background: linear-gradient(135deg, #62ff9f, #17cf69);
  box-shadow: 0 18px 44px rgba(30, 212, 111, .28);
}
.ak-footer-secondary {
  color: #f2fff6;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .16);
}
.ak-footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(150px, .75fr));
  gap: clamp(1.25rem, 3vw, 3rem);
  padding: clamp(2rem, 5vw, 4rem) 0;
}
.ak-footer-brand img {
  width: 172px;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.38));
}
.ak-footer-brand-block p {
  margin: 1.15rem 0 1.1rem;
  max-width: 360px;
  color: rgba(238, 248, 240, .72);
  line-height: 1.72;
}
.ak-footer-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.ak-footer-contact-list a {
  color: #07120b;
  background: #6effaa;
  border-radius: 999px;
  padding: .55rem .8rem;
  text-decoration: none;
  font-weight: 900;
}
.ak-footer-nav {
  display: flex;
  flex-direction: column;
  gap: .62rem;
}
.ak-footer-nav h3 {
  margin: 0 0 .45rem;
  color: #fff;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.ak-footer-nav a {
  color: rgba(238, 248, 240, .72);
  text-decoration: none;
  line-height: 1.35;
}
.ak-footer-nav a:hover,
.ak-footer-contact-list a:hover {
  color: #fff;
}
.ak-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.1rem;
  color: rgba(238, 248, 240, .58);
  font-size: .88rem;
}
.ak-footer-bottom p { margin: 0; }
@media (max-width: 980px) {
  .ak-footer-hero,
  .ak-footer-grid,
  .ak-footer-bottom { grid-template-columns: 1fr; }
  .ak-footer-actions { flex-direction: row; flex-wrap: wrap; }
  .ak-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ak-footer-brand-block { grid-column: 1 / -1; }
  .ak-footer-bottom { display: grid; }
}
@media (max-width: 640px) {
  .ak-site-footer { margin-top: 2.5rem; }
  .ak-footer-shell { width: min(100% - 1rem, 1180px); }
  .ak-footer-hero { border-radius: 24px; }
  .ak-footer-actions { flex-direction: column; }
  .ak-footer-grid { grid-template-columns: 1fr; }
}
/* EDITABLE NATIVE BRICKS HEADER - AutoKefalonia
   Minimal structural CSS only. Visual styling belongs in Bricks controls/classes. */
:where(.ak-editable-bricks-header) {
  position: sticky;
  top: 0;
  z-index: 999;
}
:where(.ak-editable-bricks-header .ak-header-shell) {
  width: min(1240px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 2vw, 1.5rem);
}
:where(.ak-editable-bricks-header .ak-brand) {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
:where(.ak-editable-bricks-header .ak-brand .bricks-site-logo) {
  display: block;
  width: clamp(148px, 14vw, 198px);
  height: auto;
  object-fit: contain;
}
:where(.ak-editable-bricks-header .ak-main-nav) {
  flex: 1 1 auto;
  min-width: 0;
}
:where(.ak-editable-bricks-header .ak-main-nav .bricks-nav-menu) {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.7rem, 1.3vw, 1.35rem);
  margin: 0;
}
:where(.ak-editable-bricks-header .ak-header-actions) {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: .65rem;
}
:where(.ak-editable-bricks-header .ak-header-phone),
:where(.ak-editable-bricks-header .ak-header-cta) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-decoration: none;
}
@media (max-width: 1160px) {
  :where(.ak-editable-bricks-header .ak-header-mobile-phone) { display: none; }
}
@media (max-width: 991px) {
  :where(.ak-editable-bricks-header .ak-main-nav) {
    order: 3;
    flex: 0 0 auto;
  }
  :where(.ak-editable-bricks-header .ak-header-phone) { display: none; }
}
@media (max-width: 560px) {
  :where(.ak-editable-bricks-header .ak-header-shell) {
    width: min(100% - .75rem, 1240px);
    gap: .6rem;
  }
  :where(.ak-editable-bricks-header .ak-brand .bricks-site-logo) { width: 138px; }
}

/* AUTOKEFALONIA BRAND SYSTEM 2026
   Premium local car rental: obsidian, island green, Ionian sea, warm sand.
   Use these classes in Bricks. Bricks controls can override per element when needed. */
:root {
  --ak-font-heading: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ak-font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ak-obsidian-950: #020604;
  --ak-obsidian-900: #06110b;
  --ak-forest-800: #0d2b1b;
  --ak-forest-700: #124024;
  --ak-green-500: #56ff95;
  --ak-green-600: #1ed46f;
  --ak-sea-400: #4cd4c8;
  --ak-sand-300: #f3dfb8;
  --ak-cream-50: #f5fff8;
  --ak-mist-200: #c9d8cd;
  --ak-muted: rgba(238, 248, 240, .72);
  --ak-line: rgba(137, 255, 184, .18);
  --ak-glass: rgba(255, 255, 255, .075);
  --ak-glass-strong: rgba(255, 255, 255, .11);
  --ak-shadow-soft: 0 24px 80px rgba(0, 0, 0, .32);
  --ak-shadow-green: 0 18px 46px rgba(30, 212, 111, .26);
  --ak-radius-sm: 14px;
  --ak-radius-md: 22px;
  --ak-radius-lg: 32px;
  --ak-radius-pill: 999px;
  --ak-section-y: clamp(4rem, 8vw, 7rem);
  --ak-container: min(1180px, calc(100% - 2rem));
}
body {
  font-family: var(--ak-font-body);
  color: var(--ak-cream-50);
  background: var(--ak-obsidian-950);
}
h1, h2, h3, h4, h5, h6,
.ak-heading {
  font-family: var(--ak-font-heading);
  letter-spacing: -.045em;
}
.ak-section {
  padding-block: var(--ak-section-y);
  background:
    radial-gradient(circle at 12% 5%, rgba(86,255,149,.14), transparent 30rem),
    linear-gradient(180deg, var(--ak-obsidian-900), var(--ak-obsidian-950));
}
.ak-section-soft {
  padding-block: var(--ak-section-y);
  background: linear-gradient(180deg, #07130d, #041008);
}
.ak-container {
  width: var(--ak-container);
  margin-inline: auto;
}
.ak-stack { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.ak-grid-2,
.ak-grid-3,
.ak-grid-4 {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.5rem);
}
.ak-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ak-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ak-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ak-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--ak-green-500);
  font: 900 .78rem/1 var(--ak-font-heading);
  text-transform: uppercase;
  letter-spacing: .13em;
}
.ak-title-xl {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font: 900 clamp(2.5rem, 7vw, 5.8rem)/.92 var(--ak-font-heading);
  letter-spacing: -.075em;
}
.ak-title-lg {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font: 900 clamp(2rem, 5vw, 4rem)/1 var(--ak-font-heading);
  letter-spacing: -.06em;
}
.ak-lede {
  max-width: 760px;
  margin: 0;
  color: var(--ak-muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}
.ak-gradient-text {
  color: transparent;
  background: linear-gradient(135deg, #fff 0%, var(--ak-green-500) 45%, var(--ak-sea-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.ak-card,
.ak-glass-card {
  border: 1px solid var(--ak-line);
  border-radius: var(--ak-radius-lg);
  background: linear-gradient(145deg, var(--ak-glass-strong), rgba(255,255,255,.035));
  box-shadow: var(--ak-shadow-soft);
}
.ak-card { padding: clamp(1.25rem, 2.5vw, 2rem); }
.ak-card h3 { margin-top: 0; color: #fff; }
.ak-card p { color: var(--ak-muted); line-height: 1.7; }
.ak-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(86,255,149,.22);
  border-radius: var(--ak-radius-pill);
  background: rgba(86,255,149,.1);
  color: var(--ak-green-500);
  padding: .42rem .75rem;
  font-weight: 900;
  font-size: .78rem;
}
.ak-btn-primary,
.ak-btn-secondary,
.ak-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: var(--ak-radius-pill);
  padding: .9rem 1.25rem;
  font-family: var(--ak-font-heading);
  font-weight: 950;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.ak-btn-primary {
  color: #041006;
  background: linear-gradient(135deg, var(--ak-green-500), var(--ak-green-600));
  box-shadow: var(--ak-shadow-green);
}
.ak-btn-secondary {
  color: var(--ak-cream-50);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
}
.ak-btn-ghost {
  color: var(--ak-green-500);
  border: 1px solid rgba(86,255,149,.22);
  background: transparent;
}
.ak-brand-swatch {
  min-height: 128px;
  border-radius: var(--ak-radius-md);
  border: 1px solid rgba(255,255,255,.14);
  padding: 1rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: .75rem;
  font-weight: 900;
}
.ak-swatch-obsidian { background: var(--ak-obsidian-950); }
.ak-swatch-forest { background: var(--ak-forest-800); }
.ak-swatch-green { background: var(--ak-green-500); color: #031107; }
.ak-swatch-sea { background: var(--ak-sea-400); color: #031107; }
.ak-swatch-sand { background: var(--ak-sand-300); color: #221806; }
.ak-swatch-cream { background: var(--ak-cream-50); color: #031107; }
@media (max-width: 900px) {
  .ak-grid-2,
  .ak-grid-3,
  .ak-grid-4 { grid-template-columns: 1fr; }
}

/* EDITABLE FANCY FOOTER - AutoKefalonia
   Bricks-native footer inspired by Fancy Bricks dark templates. */
.ak-fancy-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: clamp(3rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 12% 10%, rgba(86,255,149,.16), transparent 32rem),
    radial-gradient(circle at 90% 20%, rgba(76,212,200,.12), transparent 30rem),
    linear-gradient(180deg, #06110b 0%, #020604 72%);
  color: var(--ak-cream-50);
  border-top: 1px solid rgba(137,255,184,.18);
}
.ak-fancy-footer::before {
  content: "Auto\A Kefalonia";
  white-space: pre;
  position: absolute;
  left: max(1rem, calc((100vw - 1180px) / 2));
  top: 22%;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.075);
  font: 950 clamp(4.5rem, 13vw, 12rem)/.82 var(--ak-font-heading);
  letter-spacing: -.09em;
  pointer-events: none;
}
.ak-fancy-footer .ak-footer-shell {
  width: var(--ak-container);
  padding-block: clamp(2.5rem, 5vw, 5rem) 1.35rem;
}
.ak-fancy-footer .ak-footer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid rgba(137,255,184,.22);
  background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.035));
  box-shadow: var(--ak-shadow-soft);
}
.ak-fancy-footer .ak-footer-hero .ak-title-lg {
  max-width: 820px;
}
.ak-fancy-footer .ak-footer-actions {
  display: grid;
  gap: .8rem;
  min-width: min(260px, 100%);
}
.ak-fancy-footer .ak-footer-fancy-button {
  min-height: 54px;
  border-radius: var(--ak-radius-pill);
  font-weight: 950;
  text-decoration: none;
}
.ak-fancy-footer .fancy-button-text span {
  display: inline-flex;
  align-items: center;
}
.ak-fancy-footer .ak-footer-main-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) repeat(3, minmax(150px, .75fr));
  gap: clamp(1.2rem, 3vw, 2.5rem);
  padding-block: clamp(2rem, 5vw, 4rem);
}
.ak-fancy-footer .ak-footer-brand-block {
  padding: clamp(1.25rem, 2.5vw, 2rem);
}
.ak-fancy-footer .ak-footer-brand .bricks-site-logo {
  width: min(190px, 80%);
  height: auto;
  filter: drop-shadow(0 16px 36px rgba(0,0,0,.45));
}
.ak-fancy-footer .ak-footer-brand-name {
  margin-top: 1rem;
  color: #fff;
  font: 950 clamp(1.4rem, 2.6vw, 2rem)/1 var(--ak-font-heading);
  letter-spacing: -.04em;
}
.ak-fancy-footer .ak-footer-brand-text {
  margin-top: .85rem;
  color: var(--ak-muted);
  line-height: 1.75;
}
.ak-fancy-footer .ak-footer-link-group {
  align-content: start;
  padding-top: .55rem;
}
.ak-fancy-footer .ak-footer-group-title {
  margin: 0 0 .55rem;
  color: #fff;
  font: 900 .88rem/1 var(--ak-font-heading);
  text-transform: uppercase;
  letter-spacing: .11em;
}
.ak-fancy-footer .ak-footer-link {
  justify-content: flex-start;
  width: fit-content;
  min-height: auto;
  padding: .28rem 0;
  border: 0;
  background: transparent;
  color: rgba(238,248,240,.72);
  box-shadow: none;
  text-decoration: none;
  font-weight: 650;
}
.ak-fancy-footer .ak-footer-link:hover {
  color: var(--ak-green-500);
  transform: translateX(3px);
}
.ak-fancy-footer .ak-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.15rem;
  color: rgba(238,248,240,.58);
  font-size: .88rem;
}
.ak-fancy-footer .ak-footer-bottom p,
.ak-fancy-footer .ak-footer-bottom div { margin: 0; }
@media (max-width: 980px) {
  .ak-fancy-footer .ak-footer-hero,
  .ak-fancy-footer .ak-footer-main-grid {
    grid-template-columns: 1fr;
  }
  .ak-fancy-footer .ak-footer-actions {
    display: flex;
    flex-wrap: wrap;
  }
  .ak-fancy-footer .ak-footer-bottom {
    display: grid;
  }
}
@media (max-width: 620px) {
  .ak-fancy-footer::before {
    top: 38%;
    font-size: clamp(4rem, 22vw, 7rem);
  }
}

/* AUTOKEFALONIA VRC LABEL VALUE SPECS 2026 */
.ak-vrc-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
}
.ak-vrc-spec-item {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid rgba(13, 43, 35, .10);
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 8px 22px rgba(15,23,42,.06);
}
.ak-vrc-spec-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 22px;
}
.ak-vrc-spec-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.08;
}
.ak-vrc-spec-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(15,23,42,.55);
}
.ak-vrc-spec-value {
  margin-top: 3px;
  font-size: 13px;
  color: var(--ak-obsidian-950, #07110f);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vrc-car-result-characteristics .vrccaratsdiv,
.vrc-car-carats .vrccaratsdiv {
  display: none;
}
@media (max-width: 767px) {
  .ak-vrc-spec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


/* AUTOKEFALONIA HOMEPAGE FAQ ACCORDION 2026 */
.ak-home-faq-accordion {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(7,17,15,.96), rgba(13,43,35,.94));
  border: 1px solid rgba(180,230,57,.18);
  box-shadow: 0 28px 70px rgba(7,17,15,.22);
}
.ak-home-faq-accordion .ak-home-faq-item {
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.ak-home-faq-accordion .ak-home-faq-item:last-child { border-bottom: 0; }
.ak-home-faq-question {
  color: #fff !important;
  font-weight: 800;
  letter-spacing: -.02em;
}
.ak-home-faq-answer,
.ak-home-faq-answer p {
  color: rgba(255,255,255,.76) !important;
  line-height: 1.68;
}
.ak-home-faq-accordion [fb-acc-title] {
  color: #fff;
}
.ak-home-faq-accordion [aria-hidden="true"] {
  color: var(--ak-green-500, #56ff95);
}

/* AUTOKEFALONIA FLEET FANCY CARD GREEN HOVER 2026 */
.page-id-30 .fb-light-card,
.ak-fleet-category-cards .fb-light-card {
  --border-color: rgba(86, 255, 149, 0.28) !important;
  --light-color: rgba(86, 255, 149, 0.34) !important;
  --light-border-color: #56ff95 !important;
}
.page-id-30 .fb-light-card:hover,
.ak-fleet-category-cards .fb-light-card:hover {
  --border-color: rgba(86, 255, 149, 0.55) !important;
}

/* AUTOKEFALONIA VRC CLIENT FORM WHITE DASHED 2026 */
/* VikRentCar checkout/customer details form: old AutoKefalonia dashed-field style, adapted for the new dark premium UI. */
.vrc-oconfirm-page .vrccustomfields,
.vikrentcar .vrccustomfields,
.vrccustomfields {
  background: linear-gradient(145deg, rgba(7,17,15,.92), rgba(13,43,35,.88));
  border: 1px solid rgba(255,255,255,.72) !important;
  border-radius: 22px !important;
  padding: clamp(22px, 3vw, 42px) !important;
  margin-top: 28px !important;
  gap: 22px 36px;
  box-shadow: 0 26px 70px rgba(7,17,15,.22);
}
.vrccustomfields .vrcseparatorcf,
.vrccustomfields .vrcseparatorcflong {
  flex-basis: 100%;
  width: 100%;
  color: #fff !important;
  border-bottom: 1px solid rgba(255,255,255,.65) !important;
  font-size: clamp(1.25rem, 2vw, 1.65rem) !important;
  font-weight: 900 !important;
  letter-spacing: -.02em;
  padding: 0 0 16px !important;
  margin: 0 0 8px !important;
}
.vrccustomfields .vrcdivcustomfield {
  margin: 0 !important;
  flex-basis: calc(50% - 18px);
}
.vrccustomfields .vrc-customfield-label,
.vrccustomfields .vrcdivcustomfield label {
  display: block;
  color: rgba(255,255,255,.92) !important;
  font-size: clamp(1rem, 1.35vw, 1.22rem) !important;
  font-weight: 900 !important;
  line-height: 1.15;
  letter-spacing: .035em;
  text-transform: uppercase;
  margin: 0 0 8px !important;
}
.vrccustomfields .vrc-customfield-label .vrcrequired,
.vrccustomfields .vrcrequired,
.vrccustomfields .vrcmandatory,
.vrccustomfields sup,
.vrccustomfields .asterisk {
  color: #56ff95 !important;
  font-weight: 900;
}
.vrccustomfields input[type="text"],
.vrccustomfields input[type="email"],
.vrccustomfields input[type="tel"],
.vrccustomfields input[type="number"],
.vrccustomfields input[type="date"],
.vrccustomfields select,
.vrccustomfields textarea,
.vrccustomfields .vrcinput,
.vrccustomfields .vrctextarea {
  width: 100% !important;
  min-height: 64px;
  background: rgba(255,255,255,.04) !important;
  color: #fff !important;
  border: 3px dashed rgba(255,255,255,.94) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 14px 16px !important;
  font-size: 1.05rem !important;
  font-weight: 600;
  outline: none !important;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.vrccustomfields textarea,
.vrccustomfields .vrctextarea { min-height: 140px; }
.vrccustomfields select {
  appearance: auto !important;
  background-image: none !important;
}
.vrccustomfields select option { color: #07110f; background: #fff; }
.vrccustomfields input::placeholder,
.vrccustomfields textarea::placeholder { color: rgba(255,255,255,.55) !important; }
.vrccustomfields input:focus,
.vrccustomfields select:focus,
.vrccustomfields textarea:focus,
.vrccustomfields .vrcinput:focus,
.vrccustomfields .vrctextarea:focus {
  border-color: #56ff95 !important;
  background: rgba(86,255,149,.08) !important;
  box-shadow: 0 0 0 4px rgba(86,255,149,.13) !important;
}
.vrccustomfields .iti,
.vrccustomfields .iti--allow-dropdown { width: 100%; }
.vrccustomfields .iti input[type="tel"] { padding-left: 68px !important; }
.vrccustomfields .iti__selected-flag { background: rgba(255,255,255,.08); }
.vrccustomfields .iti__country-list { color: #07110f; }
.vrc-coupon-outer,
.vrc-enterpin-block {
  background: rgba(255,255,255,.96) !important;
  border: 1px solid rgba(86,255,149,.32) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 48px rgba(7,17,15,.14);
}
.vrcentercoupon input,
.vrc-enterpin-block input[type="text"] {
  border: 3px dashed rgba(7,17,15,.55) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.vrcentercoupon .btn,
.vrc-enterpin-top .vrc-pincode-sbmt {
  background: #56ff95 !important;
  color: #07110f !important;
  border-radius: 12px !important;
  border: 0 !important;
  font-weight: 900 !important;
}
@media (max-width: 760px) {
  .vrccustomfields .vrcdivcustomfield { flex-basis: 100%; }
  .vrccustomfields { padding: 22px !important; }
}

/* AUTOKEFALONIA GLOBAL HULK BUTTON SYSTEM 2026 */
:root {
  --ak-hulk-green: #56ff95;
  --ak-hulk-green-dark: #1ed46f;
  --ak-hulk-green-soft: #8dffb8;
  --ak-hulk-shadow: 0 18px 42px rgba(86,255,149,.26);
}
/* Bricks, Fancy Bricks, VikRentCar and legacy buttons */
a.brxe-button,
button.brxe-button,
.bricks-button,
.ak-btn-primary,
.ak-footer-fancy-button,
.fb-btn.brxe-button,
.vikrentcar .btn,
.vikrentcar .button,
.vrc-searchmod-wrap .btn,
.vrc-searchmod-wrap button,
.vrcdivsearch .btn,
.vrcdivsearch button,
.vrcoconfirmbottom .booknow,
.vrcoconfirmbottom button,
.vrc-enterpin-top .vrc-pincode-sbmt,
.vrcentercoupon .btn,
input[type="submit"].btn,
button[type="submit"] {
  border-radius: 999px !important;
  font-weight: 950 !important;
  letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease !important;
}
a.brxe-button:hover,
button.brxe-button:hover,
.bricks-button:hover,
.ak-btn-primary:hover,
.ak-footer-fancy-button:hover,
.fb-btn.brxe-button:hover,
.vikrentcar .btn:hover,
.vikrentcar .button:hover,
.vrc-searchmod-wrap .btn:hover,
.vrc-searchmod-wrap button:hover,
.vrcdivsearch .btn:hover,
.vrcdivsearch button:hover,
.vrcoconfirmbottom .booknow:hover,
.vrcoconfirmbottom button:hover,
.vrc-enterpin-top .vrc-pincode-sbmt:hover,
.vrcentercoupon .btn:hover,
input[type="submit"].btn:hover,
button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: var(--ak-hulk-shadow) !important;
}
/* Primary buttons */
.ak-btn-primary,
.fb-btn--primary-w.brxe-button,
.brxe-button[class*="primary"],
.vikrentcar .btn,
.vikrentcar .button,
.vrc-searchmod-wrap .btn,
.vrc-searchmod-wrap button,
.vrcdivsearch .btn,
.vrcdivsearch button,
.vrcoconfirmbottom .booknow,
.vrcoconfirmbottom button,
.vrc-enterpin-top .vrc-pincode-sbmt,
.vrcentercoupon .btn,
input[type="submit"].btn,
button[type="submit"] {
  background: linear-gradient(135deg, var(--ak-hulk-green), var(--ak-hulk-green-dark)) !important;
  color: #041006 !important;
  border-color: transparent !important;
  box-shadow: var(--ak-hulk-shadow) !important;
}
/* Outline / ghost buttons */
.fb-btn--outline-primary-w.brxe-button,
.fb-btn--outline-white.brxe-button,
.ak-btn-ghost,
.ak-btn-secondary,
.brxe-button[class*="outline"],
.brxe-button[class*="ghost"] {
  background: transparent !important;
  color: var(--ak-hulk-green) !important;
  border: 2px solid var(--ak-hulk-green) !important;
  box-shadow: inset 0 0 0 1px rgba(86,255,149,.45) !important;
}
.fb-btn--outline-primary-w.brxe-button:hover,
.fb-btn--outline-white.brxe-button:hover,
.ak-btn-ghost:hover,
.ak-btn-secondary:hover,
.brxe-button[class*="outline"]:hover,
.brxe-button[class*="ghost"]:hover {
  background: var(--ak-hulk-green) !important;
  color: #041006 !important;
  border-color: var(--ak-hulk-green) !important;
}
/* Fancy button fill animation should also use hulk green */
.fb-btn:before { background: var(--ak-hulk-green) !important; }
.fb-btn--outline-primary-w:before,
.fb-btn--outline-white:before { background: var(--ak-hulk-green) !important; }
/* Fancy cards/accordions share the same accent */
.fb-light-card {
  --border-color: rgba(86, 255, 149, 0.28) !important;
  --light-color: rgba(86, 255, 149, 0.34) !important;
  --light-border-color: var(--ak-hulk-green) !important;
}
.fb-accordion-six__button {
  --undeline-color: var(--ak-hulk-green) !important;
  --dot-background-active-hover: var(--ak-hulk-green) !important;
}

/* AUTOKEFALONIA CONVERSION BUTTON HIERARCHY 2026 */
:root {
  --ak-primary-green: #56ff95;
  --ak-primary-green-dark: #1ed46f;
  --ak-primary-green-soft: #8dffb8;
  --ak-contact-teal: #4cd4c8;
  --ak-cream-action: #f3dfb8;
  --ak-button-shadow: 0 18px 42px rgba(86,255,149,.22);
}
/* Base button shape only: keep editor colors possible unless intent classes below apply. */
a.brxe-button, button.brxe-button, .bricks-button,
.fb-btn.brxe-button, .ak-btn-primary, .ak-btn-secondary, .ak-btn-ghost,
.vikrentcar .btn, .vikrentcar .button, .vrc-searchmod-wrap button,
.vrcdivsearch button, .vrcoconfirmbottom button, input[type="submit"], button[type="submit"] {
  border-radius: 999px !important;
  font-weight: 950 !important;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease !important;
}
a.brxe-button:hover, button.brxe-button:hover, .bricks-button:hover,
.fb-btn.brxe-button:hover, .ak-btn-primary:hover, .ak-btn-secondary:hover, .ak-btn-ghost:hover,
.vikrentcar .btn:hover, .vikrentcar .button:hover, .vrc-searchmod-wrap button:hover,
.vrcdivsearch button:hover, .vrcoconfirmbottom button:hover, input[type="submit"]:hover, button[type="submit"]:hover {
  transform: translateY(-2px);
}
/* PRIMARY: booking / search / pay / continue. */
.ak-btn-primary,
.ak-footer-fancy-button,
.fb-btn--primary-w.brxe-button,
.brxe-button[class*="primary"],
.brxe-button[href*="book-now"],
.brxe-button[href*="search_all"],
a[href*="book-now"].brxe-button,
a[href*="search_all"].brxe-button,
.vrcdivsearch button,
.vrcdivsearch .btn,
.vrc-searchmod-wrap button,
.vrc-searchmod-wrap .btn,
.vrcoconfirmbottom button,
.vrcoconfirmbottom .booknow,
.vikrentcar input[type="submit"],
.vikrentcar button[type="submit"],
.vikrentcar .btn-success,
.vikrentcar .btn-primary {
  background: linear-gradient(135deg, var(--ak-primary-green), var(--ak-primary-green-dark)) !important;
  color: #041006 !important;
  border: 2px solid transparent !important;
  box-shadow: var(--ak-button-shadow) !important;
}
/* SECONDARY: browse/info buttons. */
.ak-btn-secondary,
.ak-btn-ghost,
.fb-btn--outline-primary-w.brxe-button,
.fb-btn--outline-white.brxe-button,
.brxe-button[class*="outline"],
.brxe-button[class*="ghost"] {
  background: rgba(255,255,255,.03) !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,.78) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08) !important;
}
.ak-btn-secondary:hover,
.ak-btn-ghost:hover,
.fb-btn--outline-primary-w.brxe-button:hover,
.fb-btn--outline-white.brxe-button:hover,
.brxe-button[class*="outline"]:hover,
.brxe-button[class*="ghost"]:hover {
  background: var(--ak-primary-green) !important;
  color: #041006 !important;
  border-color: var(--ak-primary-green) !important;
  box-shadow: var(--ak-button-shadow) !important;
}
/* CONTACT: phone / WhatsApp should assist conversion, not fight Book Now. */
a.brxe-button[href^="tel:"],
a.brxe-button[href*="wa.me"],
a.brxe-button[href*="whatsapp"],
a[href^="tel:"].ak-btn-secondary,
a[href*="wa.me"].ak-btn-secondary,
a[href*="whatsapp"].ak-btn-secondary {
  background: rgba(76,212,200,.08) !important;
  color: #eafffb !important;
  border: 2px solid rgba(76,212,200,.7) !important;
  box-shadow: 0 14px 34px rgba(76,212,200,.12) !important;
}
a.brxe-button[href^="tel:"]:hover,
a.brxe-button[href*="wa.me"]:hover,
a.brxe-button[href*="whatsapp"]:hover,
a[href^="tel:"].ak-btn-secondary:hover,
a[href*="wa.me"].ak-btn-secondary:hover,
a[href*="whatsapp"].ak-btn-secondary:hover {
  background: var(--ak-contact-teal) !important;
  color: #041006 !important;
  border-color: var(--ak-contact-teal) !important;
}
/* Fancy effects inherit the hierarchy. */
.fb-btn:before { background: var(--ak-primary-green) !important; }
.fb-btn--outline-primary-w:before,
.fb-btn--outline-white:before { background: var(--ak-primary-green) !important; }
.fb-light-card {
  --border-color: rgba(86, 255, 149, 0.28) !important;
  --light-color: rgba(86, 255, 149, 0.34) !important;
  --light-border-color: var(--ak-primary-green) !important;
}
.fb-accordion-six__button {
  --undeline-color: var(--ak-primary-green) !important;
  --dot-background-active-hover: var(--ak-primary-green) !important;
}

/* AUTOKEFALONIA OUTLINE SECONDARY BUTTONS SITE-WIDE 2026 */
/* Most non-booking Bricks/Fancy buttons should use the homepage outline-primary style. */
a.brxe-button:not([href*="book-now"]):not([href*="search_all"]):not([href^="tel:"]):not([href*="wa.me"]):not([href*="whatsapp"]):not(.ak-btn-primary):not(.fb-btn--primary-w),
a.bricks-button:not([href*="book-now"]):not([href*="search_all"]):not([href^="tel:"]):not([href*="wa.me"]):not([href*="whatsapp"]):not(.ak-btn-primary):not(.fb-btn--primary-w),
.ak-fancy-fleet-card .brxe-button,
.ak-fleet-card .brxe-button,
.brxe-button[href*="/fleet/"]:not([href*="book-now"]),
.brxe-button[href*="/prices/"]:not([href*="book-now"]),
.brxe-button[href*="/locations/"]:not([href*="book-now"]),
.brxe-button[href*="/driving-guide/"]:not([href*="book-now"]),
.brxe-button[href*="/destinations/"]:not([href*="book-now"]),
.brxe-button[href*="/road-trips/"]:not([href*="book-now"]),
.brxe-button[href*="/about-us/"]:not([href*="book-now"]),
.brxe-button[href*="/faq/"]:not([href*="book-now"]),
.brxe-button[href*="/reviews/"]:not([href*="book-now"]) {
  background: rgba(255,255,255,.03) !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,.82) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08) !important;
}
a.brxe-button:not([href*="book-now"]):not([href*="search_all"]):not([href^="tel:"]):not([href*="wa.me"]):not([href*="whatsapp"]):not(.ak-btn-primary):not(.fb-btn--primary-w):hover,
a.bricks-button:not([href*="book-now"]):not([href*="search_all"]):not([href^="tel:"]):not([href*="wa.me"]):not([href*="whatsapp"]):not(.ak-btn-primary):not(.fb-btn--primary-w):hover,
.ak-fancy-fleet-card .brxe-button:hover,
.ak-fleet-card .brxe-button:hover,
.brxe-button[href*="/fleet/"]:not([href*="book-now"]):hover,
.brxe-button[href*="/prices/"]:not([href*="book-now"]):hover,
.brxe-button[href*="/locations/"]:not([href*="book-now"]):hover,
.brxe-button[href*="/driving-guide/"]:not([href*="book-now"]):hover,
.brxe-button[href*="/destinations/"]:not([href*="book-now"]):hover,
.brxe-button[href*="/road-trips/"]:not([href*="book-now"]):hover,
.brxe-button[href*="/about-us/"]:not([href*="book-now"]):hover,
.brxe-button[href*="/faq/"]:not([href*="book-now"]):hover,
.brxe-button[href*="/reviews/"]:not([href*="book-now"]):hover {
  background: var(--ak-primary-green, #56ff95) !important;
  color: #041006 !important;
  border-color: var(--ak-primary-green, #56ff95) !important;
  box-shadow: 0 18px 42px rgba(86,255,149,.22) !important;
}
/* Keep explicit conversion CTAs filled even if other classes are present. */
a.brxe-button[href*="book-now"],
a.brxe-button[href*="search_all"],
.ak-btn-primary,
.fb-btn--primary-w.brxe-button {
  background: linear-gradient(135deg, var(--ak-primary-green, #56ff95), var(--ak-primary-green-dark, #1ed46f)) !important;
  color: #041006 !important;
  border-color: transparent !important;
  box-shadow: 0 18px 42px rgba(86,255,149,.22) !important;
}
/* Keep phone/WhatsApp distinct from both booking and secondary buttons. */
a.brxe-button[href^="tel:"],
a.brxe-button[href*="wa.me"],
a.brxe-button[href*="whatsapp"] {
  background: rgba(76,212,200,.08) !important;
  color: #eafffb !important;
  border: 2px solid rgba(76,212,200,.7) !important;
  box-shadow: 0 14px 34px rgba(76,212,200,.12) !important;
}

/* AUTOKEFALONIA OUTLINE BUTTON FADE + SIZE 2026 */
.ak-outline-secondary.brxe-button,
.fb-btn-outline-fade.brxe-button,
.akb-link.brxe-button,
a.brxe-button:not([href*="book-now"]):not([href*="search_all"]):not([href^="tel:"]):not([href*="wa.me"]):not([href*="whatsapp"]):not(.ak-btn-primary):not(.fb-btn--primary-w) {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate;
  min-width: clamp(13.5rem, 18vw, 17rem) !important;
  padding: 1.02rem 1.45rem !important;
  border-radius: 999px !important;
  background-color: transparent !important;
  background-image: linear-gradient(135deg, var(--ak-primary-green, #56ff95), var(--ak-primary-green-dark, #1ed46f)) !important;
  background-repeat: no-repeat !important;
  background-size: 0% 100% !important;
  background-position: left center !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,.86) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08) !important;
  transition: background-size .48s cubic-bezier(.22,1,.36,1), color .28s ease, border-color .28s ease, transform .18s ease, box-shadow .28s ease !important;
}
.ak-outline-secondary.brxe-button:hover,
.fb-btn-outline-fade.brxe-button:hover,
.akb-link.brxe-button:hover,
a.brxe-button:not([href*="book-now"]):not([href*="search_all"]):not([href^="tel:"]):not([href*="wa.me"]):not([href*="whatsapp"]):not(.ak-btn-primary):not(.fb-btn--primary-w):hover {
  background-size: 100% 100% !important;
  color: #041006 !important;
  border-color: var(--ak-primary-green, #56ff95) !important;
  box-shadow: 0 18px 42px rgba(86,255,149,.22) !important;
  transform: translateY(-2px);
}
/* The nice part: when hover leaves, background-size animates back to 0%, creating the fade-out wipe. */
.ak-outline-secondary.brxe-button:focus-visible,
.fb-btn-outline-fade.brxe-button:focus-visible,
.akb-link.brxe-button:focus-visible {
  outline: 3px solid rgba(86,255,149,.45) !important;
  outline-offset: 3px;
}
/* Compact cards still get a comfortable target without becoming huge on mobile. */
.ak-fancy-fleet-card .brxe-button,
.ak-fleet-card .brxe-button,
.akb-card .brxe-button {
  width: auto;
  justify-content: center;
}
@media (max-width: 640px) {
  .ak-outline-secondary.brxe-button,
  .fb-btn-outline-fade.brxe-button,
  .akb-link.brxe-button {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* AUTOKEFALONIA SIMPLIFIED BOOKING SEARCH 2026 */
/* Keep VikRentCar location values submitted for pricing/search, but remove the noisy location/map UI before date selection. */
.vik-hero-wrapper .vrc-main-title,
.vik-hero-wrapper .vrc-searchf-section-locations,
.vik-hero-wrapper .vrcmodal,
.vik-hero-wrapper .vrcgmapinfow,
.vik-hero-wrapper .vrc-gmap,
.vik-hero-wrapper .vrcmap,
.vik-hero-wrapper [class*="map"]:has(.vrcmodal) {
  display: none !important;
}
/* Pull the useful date/time facade up now that the location block is hidden. */
.vik-hero-wrapper .vikrentcar-obsidian-wrapper,
.vik-hero-wrapper .obsidian-facade {
  margin-top: 0 !important;
}

/* AUTOKEFALONIA DEMO POLISH ISLAND LIGHT 2026 */
body.home #brxe-hsec01.akb-hero{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  /* Background image intentionally NOT set here: let the Bricks section background control it. */
}
body.home #brxe-hsec01.akb-hero:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(180deg,rgba(4,7,9,.08),#080a0d 96%);
}
body.home .akb-booking-card,
body.home .vik-hero-wrapper{
  position:relative;
}
body.home .akb-booking-card:before,
body.home .vik-hero-wrapper:before{
  content:"";
  position:absolute;
  inset:-24px;
  z-index:-1;
  pointer-events:none;
  border-radius:36px;
  background:radial-gradient(circle at 50% 42%,rgba(86,255,149,.34),rgba(86,255,149,.13) 34%,transparent 68%);
  filter:blur(18px);
  opacity:.72;
}
body.home .akb-hero + .akb-section{
  background:
    radial-gradient(circle at 12% 5%,rgba(30,212,111,.12),transparent 24%),
    linear-gradient(180deg,#f6eddb,#ead9ba) !important;
  color:#132018;
}
body.home .akb-hero + .akb-section :is(h1,h2,h3,h4,.akb-section-title,.akb-card-title){color:#102017!important;}
body.home .akb-hero + .akb-section :is(p,.akb-section-lead,.akb-card-text,.akb-muted){color:rgba(16,32,23,.72)!important;}
body.home .akb-hero + .akb-section .akb-card,
body.home .akb-hero + .akb-section .fb-light-card{
  background:rgba(255,255,255,.62)!important;
  border-color:rgba(30,55,39,.14)!important;
  box-shadow:0 22px 60px rgba(74,51,24,.13)!important;
}
body.home .ak-destination-strip{
  background:#080a0d;
  padding:24px 18px 86px;
}
.ak-destination-strip__wrap{width:min(1180px,100%);margin-inline:auto;}
.ak-destination-strip__head{display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:18px;}
.ak-destination-strip__eyebrow{color:#56ff95;font-size:12px;font-weight:950;letter-spacing:.13em;text-transform:uppercase;margin-bottom:6px;}
.ak-destination-strip__title{color:#fff;font-size:clamp(1.9rem,3vw,3rem);line-height:1;letter-spacing:-.05em;margin:0;}
.ak-destination-strip__text{color:rgba(255,255,255,.68);max-width:460px;margin:0;line-height:1.55;}
.ak-destination-strip__grid{display:grid;grid-template-columns:1.15fr .9fr .9fr 1.05fr;gap:14px;}
.ak-destination-card{position:relative;min-height:220px;border-radius:26px;overflow:hidden;border:1px solid rgba(255,255,255,.12);background:#111;box-shadow:0 24px 70px rgba(0,0,0,.24);}
.ak-destination-card img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;filter:saturate(1.08) contrast(1.03);transition:transform .5s ease;}
.ak-destination-card:hover img{transform:scale(1.055);}
.ak-destination-card:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 35%,rgba(0,0,0,.78));}
.ak-destination-card span{position:absolute;left:18px;right:18px;bottom:16px;z-index:2;color:#fff;font-weight:950;font-size:1.08rem;letter-spacing:-.02em;}
.ak-destination-card small{display:block;color:#8dffb8;font-weight:900;font-size:.75rem;text-transform:uppercase;letter-spacing:.1em;margin-bottom:4px;}
@media(max-width:920px){.ak-destination-strip__head{display:block}.ak-destination-strip__text{margin-top:10px}.ak-destination-strip__grid{grid-template-columns:repeat(2,minmax(0,1fr));}.ak-destination-card{min-height:190px;}}
@media(max-width:560px){.ak-destination-strip{padding-bottom:62px}.ak-destination-strip__grid{grid-template-columns:1fr 1fr;gap:10px}.ak-destination-card{min-height:158px;border-radius:20px}.ak-destination-card span{font-size:.95rem;left:13px;right:13px;bottom:12px}}

/* AUTOKEFALONIA COMPACT INLINE LOCATION SELECTS 2026 */
.vik-hero-wrapper .vrc-searchf-section-locations{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important;margin:0 0 14px!important;visibility:visible!important;height:auto!important;overflow:visible!important;}
.vik-hero-wrapper .vrc-searchf-section-locations .vrcsfentrycont{margin:0!important;min-width:0!important;width:100%!important;}
.vik-hero-wrapper .vrc-searchf-section-locations label{display:block!important;margin:0 0 6px!important;color:rgba(255,255,255,.82)!important;font-size:11px!important;font-weight:950!important;text-transform:uppercase!important;letter-spacing:.08em!important;}
.vik-hero-wrapper .vrc-searchf-section-locations select{width:100%!important;min-height:46px!important;border-radius:14px!important;border:1px solid rgba(255,255,255,.18)!important;background:rgba(255,255,255,.075)!important;color:#fff!important;padding:0 34px 0 12px!important;font-size:13px!important;font-weight:850!important;box-shadow:none!important;}
.vik-hero-wrapper .vrc-searchf-section-locations select option{color:#0b1110;background:#fff;}
.vik-hero-wrapper .vrc-searchf-section-locations .vrcsfentryselect:after{display:none!important;}
@media(max-width:520px){.vik-hero-wrapper .vrc-searchf-section-locations{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important}.vik-hero-wrapper .vrc-searchf-section-locations label{font-size:9.5px!important;letter-spacing:.04em!important}.vik-hero-wrapper .vrc-searchf-section-locations select{min-height:42px!important;font-size:11.5px!important;padding-left:9px!important;padding-right:20px!important;border-radius:12px!important;}}
/* AUTOKEFALONIA FULL WIDTH LOCATION SELECTS 2026 */
.vik-hero-wrapper .vrc-searchf-section-locations{
  width:100% !important;
}
.vik-hero-wrapper .vrc-searchf-section-locations .vrcsfentrycont,
.vik-hero-wrapper .vrc-searchf-section-locations .vrcsfentryselect{
  width:100% !important;
  max-width:none !important;
}
.vik-hero-wrapper .vrc-searchf-section-locations select,
.vik-hero-wrapper #place,
.vik-hero-wrapper #returnplace{
  width:100% !important;
  max-width:none !important;
  min-width:0 !important;
  box-sizing:border-box !important;
}
.vik-hero-wrapper .vrc-searchf-section-datetimes,
.vik-hero-wrapper .vrcsfentrylabsel{
  width:100% !important;
}
@media(max-width:520px){
  .vik-hero-wrapper .vrc-searchf-section-locations{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}

/* AUTOKEFALONIA FULL WIDTH BOOKING FORM FIELDS 2026 */
.vik-hero-wrapper .vrcdivsearch,
.vik-hero-wrapper .vrcdivsearch-inner,
.vik-hero-wrapper .ak-vrc-real-form,
.vik-hero-wrapper .vrc-searchf-section-datetimes,
.vik-hero-wrapper .vrcsfentrycont,
.vik-hero-wrapper .vrcsfentrylabsel,
.vik-hero-wrapper .vrcsfentrydate,
.vik-hero-wrapper .vrcsfentrytime,
.vik-hero-wrapper .vrcsfentryselect,
.vik-hero-wrapper .vrctimesep {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}
.vik-hero-wrapper .vrc-searchf-section-datetimes {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  align-items: end !important;
}
.vik-hero-wrapper .vrc-searchf-section-datetimes .vrcsfentrycont {
  margin: 0 !important;
}
.vik-hero-wrapper input[type='text'],
.vik-hero-wrapper input[type='date'],
.vik-hero-wrapper input[type='time'],
.vik-hero-wrapper input[type='email'],
.vik-hero-wrapper input[type='tel'],
.vik-hero-wrapper input[type='number'],
.vik-hero-wrapper select,
.vik-hero-wrapper textarea,
.vik-hero-wrapper #pickupdate,
.vik-hero-wrapper #releasedate,
.vik-hero-wrapper #vrccomselph,
.vik-hero-wrapper #vrccomselpm,
.vik-hero-wrapper #vrccomselrh,
.vik-hero-wrapper #vrccomselrm {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}
.vik-hero-wrapper .vrcsfentrydate,
.vik-hero-wrapper .vrcsfentrytime {
  display: block !important;
}
.vik-hero-wrapper .vrcsfentrytime {
  margin-top: 8px !important;
}
.vik-hero-wrapper .vrcsfentrytime select {
  display: inline-block !important;
}
.vik-hero-wrapper .vrcsfentrytime select[id*='h'],
.vik-hero-wrapper .vrcsfentrytime select[id*='m'] {
  width: calc(50% - 4px) !important;
}
.vik-hero-wrapper .vrcsfentrytime .vrctimesep {
  display: none !important;
}
.vik-hero-wrapper .vrc-search-btn,
.vik-hero-wrapper input[type='submit'],
.vik-hero-wrapper button[type='submit'] {
  width: 100% !important;
  max-width: none !important;
}
@media(max-width:520px){
  .vik-hero-wrapper .vrc-searchf-section-datetimes {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }
  .vik-hero-wrapper .vrcsfentrytime {
    margin-top: 6px !important;
  }
}

/* AUTOKEFALONIA WCAG SAND SECTION BUTTON CONTRAST 2026 */
body.home .akb-hero + .akb-section .akb-link,
body.home .akb-hero + .akb-section .ak-outline-secondary,
body.home .akb-hero + .akb-section .fb-btn-outline-fade,
body.home .akb-hero + .akb-section .bricks-button {
  color: #102017 !important;
  border-color: rgba(16,32,23,.55) !important;
  background: linear-gradient(135deg,#56ff95,#1ed46f) no-repeat left center/0% 100%, rgba(255,255,255,.42) !important;
  text-shadow: none !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.36) !important;
}
body.home .akb-hero + .akb-section .akb-link:hover,
body.home .akb-hero + .akb-section .akb-link:focus-visible,
body.home .akb-hero + .akb-section .ak-outline-secondary:hover,
body.home .akb-hero + .akb-section .ak-outline-secondary:focus-visible,
body.home .akb-hero + .akb-section .fb-btn-outline-fade:hover,
body.home .akb-hero + .akb-section .fb-btn-outline-fade:focus-visible,
body.home .akb-hero + .akb-section .bricks-button:hover,
body.home .akb-hero + .akb-section .bricks-button:focus-visible {
  color: #041006 !important;
  border-color: #1a9f58 !important;
  background-size: 100% 100% !important;
  box-shadow: 0 14px 34px rgba(30,212,111,.22), inset 0 0 0 1px rgba(255,255,255,.4) !important;
}
body.home .akb-hero + .akb-section a:focus-visible,
body.home .akb-hero + .akb-section button:focus-visible,
body.home .akb-hero + .akb-section [tabindex]:focus-visible {
  outline: 3px solid #0a7a42 !important;
  outline-offset: 4px !important;
}
body.home .akb-hero + .akb-section .akb-card,
body.home .akb-hero + .akb-section .akb-entity-card {
  color: #102017 !important;
}

/* AUTOKEFALONIA MOBILE BOOKING + HAMBURGER VISIBILITY 2026 */
@media (max-width: 767px) {
  .ak-site-header,
  .ak-header-shell,
  #brxe-akhdr1,
  #brxe-akhdr2 {
    overflow: visible !important;
  }
  .ak-header-shell,
  #brxe-akhdr2 {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding: 10px 14px !important;
    box-sizing: border-box !important;
  }
  #brxe-aklogo,
  #brxe-aklogo img,
  #brxe-aklogo .bricks-site-logo {
    max-width: 158px !important;
    width: 158px !important;
    height: auto !important;
  }
  #brxe-aknav1 {
    margin-left: auto !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    min-width: 52px !important;
    z-index: 99999 !important;
  }
  #brxe-aknav1 .bricks-mobile-menu-toggle {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    border: 1px solid rgba(86,255,149,.72) !important;
    border-radius: 14px !important;
    background: rgba(4,16,6,.86) !important;
    box-shadow: 0 12px 32px rgba(0,0,0,.32), 0 0 0 1px rgba(255,255,255,.08) inset !important;
    color: #56ff95 !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 100000 !important;
    padding: 0 !important;
  }
  #brxe-aknav1 .bricks-mobile-menu-toggle span {
    display: block !important;
    width: 24px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: #56ff95 !important;
    box-shadow: 0 0 10px rgba(86,255,149,.38) !important;
    opacity: 1 !important;
    margin: 0 !important;
  }
  #brxe-aknav1 .bricks-mobile-menu-wrapper {
    z-index: 99998 !important;
    background: #07100d !important;
  }

  .vik-hero-wrapper .vrc-searchf-section-locations {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 12px !important;
    overflow: visible !important;
  }
  .vik-hero-wrapper .vrc-searchf-section-locations .vrcsfentrycont,
  .vik-hero-wrapper .vrc-searchf-section-locations .vrcsfentryselect {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    overflow: visible !important;
  }
  .vik-hero-wrapper .vrc-searchf-section-locations label {
    display: block !important;
    min-height: 1.1em !important;
    margin: 0 0 5px !important;
    font-size: 9px !important;
    line-height: 1.05 !important;
    letter-spacing: .035em !important;
    white-space: nowrap !important;
  }
  .vik-hero-wrapper .vrc-searchf-section-locations select,
  .vik-hero-wrapper #place,
  .vik-hero-wrapper #returnplace {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 20px 0 8px !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
    border-radius: 12px !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    appearance: auto !important;
    -webkit-appearance: menulist !important;
  }
}
@media (max-width: 380px) {
  .vik-hero-wrapper .vrc-searchf-section-locations label { font-size: 8px !important; }
  .vik-hero-wrapper .vrc-searchf-section-locations select,
  .vik-hero-wrapper #place,
  .vik-hero-wrapper #returnplace { font-size: 10px !important; padding-left: 6px !important; padding-right: 18px !important; }
}

/* AUTOKEFALONIA LOCATION SELECTS TRUE FULL WIDTH 2026-05-12
   Force pickup/dropoff selects to fill their two horizontal grid cells. */
body.home .vik-hero-wrapper .ak-vrc-real-form,
body.home .vik-hero-wrapper .vrcdivsearch,
body.home .vik-hero-wrapper .vrcdivsearch-inner {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}
body.home .vik-hero-wrapper .vrc-searchf-section-locations {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  column-gap: 18px !important;
  row-gap: 10px !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 100% !important;
  flex: 0 0 100% !important;
  align-items: end !important;
}
body.home .vik-hero-wrapper .vrc-searchf-section-locations > .vrcsfentrycont {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  flex: 1 1 0 !important;
  box-sizing: border-box !important;
}
body.home .vik-hero-wrapper .vrc-searchf-section-locations .vrcsfentrylabsel,
body.home .vik-hero-wrapper .vrc-searchf-section-locations .vrcsfentryselect {
  display: block !important;
  width: 100% !important;
  inline-size: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}
body.home .vik-hero-wrapper .vrc-searchf-section-locations select#place,
body.home .vik-hero-wrapper .vrc-searchf-section-locations select#returnplace,
body.home .vik-hero-wrapper .vrc-searchf-section-locations select[name="place"],
body.home .vik-hero-wrapper .vrc-searchf-section-locations select[name="returnplace"] {
  display: block !important;
  width: 100% !important;
  inline-size: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}
@media (max-width: 520px) {
  body.home .vik-hero-wrapper .vrc-searchf-section-locations {
    column-gap: 10px !important;
  }
}

/* AUTOKEFALONIA MOBILE HAMBURGER BAR CENTERING 2026-05-12
   Keep Bricks hamburger lines optically centered inside the green button. */
@media (max-width: 767px) {
  #brxe-aknav1 .bricks-mobile-menu-toggle,
  .ak-site-header #brxe-aknav1 .bricks-mobile-menu-toggle {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    padding: 0 !important;
    line-height: 1 !important;
    text-align: center !important;
  }
  #brxe-aknav1 .bricks-mobile-menu-toggle span,
  .ak-site-header #brxe-aknav1 .bricks-mobile-menu-toggle span {
    position: static !important;
    inset: auto !important;
    display: block !important;
    float: none !important;
    clear: none !important;
    width: 24px !important;
    height: 2px !important;
    min-height: 2px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    transform: none !important;
    translate: none !important;
    transform-origin: center center !important;
    flex: 0 0 auto !important;
  }
  #brxe-aknav1 .bricks-mobile-menu-toggle span::before,
  #brxe-aknav1 .bricks-mobile-menu-toggle span::after,
  .ak-site-header #brxe-aknav1 .bricks-mobile-menu-toggle span::before,
  .ak-site-header #brxe-aknav1 .bricks-mobile-menu-toggle span::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

/* AUTOKEFALONIA FOOTER LINK GRID POLISH 2026-05-12
   Make footer link groups denser: two columns, calmer radius, proper contact/call padding. */
.ak-fancy-footer .ak-footer-link-group {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: .62rem .72rem !important;
  align-items: start !important;
}
.ak-fancy-footer .ak-footer-group-title {
  grid-column: 1 / -1 !important;
  margin-bottom: .15rem !important;
}
.ak-fancy-footer .ak-footer-link.bricks-button,
.ak-fancy-footer a.ak-footer-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 44px !important;
  padding: .72rem .9rem !important;
  border-radius: 16px !important;
  line-height: 1.12 !important;
  white-space: normal !important;
  text-align: left !important;
  overflow-wrap: anywhere !important;
}
.ak-fancy-footer a.ak-footer-link[href^="tel:"],
.ak-fancy-footer a.ak-footer-link[href*="contact"] {
  justify-content: center !important;
  min-height: 48px !important;
  padding: .78rem 1.1rem !important;
  border-radius: 16px !important;
  text-align: center !important;
  overflow-wrap: normal !important;
  white-space: nowrap !important;
}
.ak-fancy-footer .ak-footer-fancy-button {
  border-radius: 18px !important;
}
@media (max-width: 620px) {
  .ak-fancy-footer .ak-footer-main-grid {
    gap: 1.35rem !important;
  }
  .ak-fancy-footer .ak-footer-link-group {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: .58rem .62rem !important;
  }
  .ak-fancy-footer .ak-footer-link.bricks-button,
  .ak-fancy-footer a.ak-footer-link {
    min-height: 42px !important;
    padding: .66rem .72rem !important;
    border-radius: 14px !important;
    font-size: .92rem !important;
  }
  .ak-fancy-footer a.ak-footer-link[href^="tel:"],
  .ak-fancy-footer a.ak-footer-link[href*="contact"] {
    padding: .72rem .95rem !important;
    min-height: 46px !important;
    border-radius: 14px !important;
  }
}
@media (max-width: 360px) {
  .ak-fancy-footer .ak-footer-link.bricks-button,
  .ak-fancy-footer a.ak-footer-link {
    font-size: .86rem !important;
    padding-inline: .58rem !important;
  }
}

/* AUTOKEFALONIA FOOTER BUTTON RADIUS SPECIFIC OVERRIDE 2026-05-12
   Beat Bricks/global pill button rules for footer nav links. */
footer.ak-fancy-footer a[id^="brxe-akft"].ak-footer-link.bricks-button,
footer.ak-fancy-footer .ak-footer-link-group a.ak-footer-link.bricks-button.bricks-background-secondary,
body footer.ak-fancy-footer .ak-footer-main-grid .ak-footer-link-group > a.ak-footer-link.bricks-button {
  border-radius: 14px !important;
  padding: .66rem .72rem !important;
  min-height: 42px !important;
  width: 100% !important;
  max-width: none !important;
}
footer.ak-fancy-footer a[id^="brxe-akft"].ak-footer-link.bricks-button[href^="tel:"],
body footer.ak-fancy-footer .ak-footer-main-grid .ak-footer-link-group > a.ak-footer-link.bricks-button[href^="tel:"] {
  border-radius: 14px !important;
  padding: .72rem .95rem !important;
  min-height: 46px !important;
}

/* AUTOKEFALONIA FOOTER LEGAL LINK 2026-05-12 */
.ak-fancy-footer .ak-footer-bottom {
  align-items: center !important;
  flex-wrap: wrap !important;
}
.ak-fancy-footer .ak-footer-legal-link.bricks-button,
.ak-fancy-footer a.ak-footer-legal-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 0 !important;
  width: auto !important;
  padding: .28rem .7rem !important;
  border-radius: 10px !important;
  border: 1px solid rgba(238,248,240,.20) !important;
  background: rgba(255,255,255,.035) !important;
  color: rgba(238,248,240,.72) !important;
  box-shadow: none !important;
  font-size: .86rem !important;
  font-weight: 750 !important;
  text-decoration: none !important;
}
.ak-fancy-footer .ak-footer-legal-link:hover {
  color: #56ff95 !important;
  border-color: rgba(86,255,149,.45) !important;
  background: rgba(86,255,149,.08) !important;
  transform: none !important;
}
@media(max-width:620px){
  .ak-fancy-footer .ak-footer-bottom{gap:.65rem!important;}
  .ak-fancy-footer .ak-footer-legal-link.bricks-button,
  .ak-fancy-footer a.ak-footer-legal-link{justify-self:start!important;}
}

/* AUTOKEFALONIA HOME FLEET CARD DARK BUTTONS 2026-05-12
   Cream/sand homepage car cards need dark readable CTAs, not white-on-white outlines. */
body.home .akb-hero + .akb-section .akb-cards-five .akb-card a.akb-link,
body.home .akb-hero + .akb-section .akb-cards-five .akb-entity-card a.akb-link,
body.home .akb-hero + .akb-section .akb-cards-five a.bricks-button,
body.home .akb-hero + .akb-section .akb-cards-five a.brxe-button {
  color: #102017 !important;
  background: rgba(16,32,23,.08) !important;
  border: 2px solid rgba(16,32,23,.48) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.48) !important;
  text-shadow: none !important;
}
body.home .akb-hero + .akb-section .akb-cards-five .akb-card a.akb-link:hover,
body.home .akb-hero + .akb-section .akb-cards-five .akb-entity-card a.akb-link:hover,
body.home .akb-hero + .akb-section .akb-cards-five a.bricks-button:hover,
body.home .akb-hero + .akb-section .akb-cards-five a.brxe-button:hover,
body.home .akb-hero + .akb-section .akb-cards-five .akb-card a.akb-link:focus-visible,
body.home .akb-hero + .akb-section .akb-cards-five .akb-entity-card a.akb-link:focus-visible,
body.home .akb-hero + .akb-section .akb-cards-five a.bricks-button:focus-visible,
body.home .akb-hero + .akb-section .akb-cards-five a.brxe-button:focus-visible {
  color: #041006 !important;
  background: linear-gradient(135deg,#56ff95,#1ed46f) !important;
  border-color: #188b4e !important;
  box-shadow: 0 14px 34px rgba(30,212,111,.24), inset 0 0 0 1px rgba(255,255,255,.35) !important;
}


/* AUTOKEFALONIA HOME FLEET CARD CTA ALIGNMENT 2026-05-12
   Keep the five homepage car-card CTAs on one baseline and reduce vertical padding. */
body.home .akb-hero + .akb-section .akb-cards-five > .akb-card,
body.home .akb-hero + .akb-section .akb-cards-five > .akb-entity-card {
  display: flex !important;
  flex-direction: column !important;
}
body.home .akb-hero + .akb-section .akb-cards-five :is(#brxe-seo-car-ecob,#brxe-seo-car-autob,#brxe-seo-car-familyb,#brxe-seo-car-7b,#brxe-seo-car-luxb) {
  margin-top: auto !important;
  margin-bottom: 0 !important;
  min-height: 46px !important;
  padding: .56rem 1.15rem !important;
  line-height: 1.15 !important;
  align-self: stretch !important;
  justify-content: center !important;
  text-align: center !important;
}


/* AUTOKEFALONIA HOME LOCATION FANCY CARDS 2026-05-12 */
body.home #brxe-seo-grid-loc.akb-location-grid{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:22px!important;
  align-items:stretch!important;
}
body.home #brxe-seo-grid-loc .akb-location-card{
  position:relative!important;
  display:flex!important;
  flex-direction:column!important;
  min-height:420px!important;
  padding:calc(184px + 1.35rem) 1.35rem 1.35rem!important;
  overflow:hidden!important;
  isolation:isolate!important;
  border:1px solid rgba(86,255,149,.28)!important;
  border-radius:18px!important;
  background:
    radial-gradient(circle at 18% 0%,rgba(86,255,149,.18),transparent 30%),
    linear-gradient(180deg,rgba(22,26,29,.94),rgba(10,13,15,.98))!important;
  box-shadow:0 24px 70px rgba(0,0,0,.32), inset 0 0 0 1px rgba(255,255,255,.035)!important;
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease!important;
}
body.home #brxe-seo-grid-loc .akb-location-card::before{
  content:"";
  position:absolute;
  z-index:-1;
  inset:14px 14px auto;
  height:178px;
  border-radius:14px;
  background:
    linear-gradient(180deg,rgba(5,8,10,.08),rgba(5,8,10,.46)),
    var(--ak-location-img,url('/wp-content/uploads/autokef-demo-polish/hero-kefalonia.jpg')) center/cover no-repeat;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
}
body.home #brxe-seo-grid-loc .akb-location-card::after{
  content:"";
  position:absolute;
  z-index:-2;
  inset:-1px;
  border-radius:18px;
  background:radial-gradient(circle at var(--mx,50%) var(--my,0%),rgba(86,255,149,.24),transparent 34%);
  opacity:.72;
  pointer-events:none;
}
body.home #brxe-seo-grid-loc .akb-location-card:hover{
  transform:translateY(-4px)!important;
  border-color:rgba(86,255,149,.55)!important;
  box-shadow:0 30px 80px rgba(0,0,0,.38),0 0 0 1px rgba(86,255,149,.18)!important;
}
body.home #brxe-seo-grid-loc #brxe-loc-airport{--ak-location-img:url('/wp-content/uploads/autokef-demo-polish/hero-kefalonia.jpg');}
body.home #brxe-seo-grid-loc #brxe-loc-argostoli{--ak-location-img:url('/wp-content/uploads/autokef-demo-polish/hero-kefalonia.jpg');}
body.home #brxe-seo-grid-loc #brxe-loc-lassi{--ak-location-img:url('/wp-content/uploads/autokef-demo-polish/hero-kefalonia.jpg');}
body.home #brxe-seo-grid-loc #brxe-loc-skala{--ak-location-img:url('/wp-content/uploads/autokef-demo-polish/melissani.jpg');}
body.home #brxe-seo-grid-loc #brxe-loc-sami{--ak-location-img:url('/wp-content/uploads/autokef-demo-polish/melissani.jpg');}
body.home #brxe-seo-grid-loc #brxe-loc-lourdas{--ak-location-img:url('/wp-content/uploads/autokef-demo-polish/hero-kefalonia.jpg');}
body.home #brxe-seo-grid-loc .akb-location-card .akb-card-title{
  color:#f5fff8!important;
  font-size:clamp(1.45rem,1.8vw,2rem)!important;
  line-height:1.05!important;
  letter-spacing:-.045em!important;
  margin:0 0 .55rem!important;
}
body.home #brxe-seo-grid-loc .akb-location-card .akb-card-text{
  color:rgba(245,255,248,.74)!important;
  font-size:1rem;
  line-height:1.55;
  margin:0 0 1.1rem!important;
}
body.home #brxe-seo-grid-loc .akb-location-card .akb-link{
  margin-top:auto!important;
  margin-bottom:0!important;
  min-width:0!important;
  width:100%!important;
  min-height:46px!important;
  padding:.62rem 1rem!important;
  justify-content:center!important;
  text-align:center!important;
  border-radius:999px!important;
  color:#f5fff8!important;
  border:2px solid rgba(245,255,248,.78)!important;
  background:linear-gradient(135deg,#56ff95,#1ed46f) no-repeat left center/0% 100%,rgba(255,255,255,.025)!important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.06)!important;
}
body.home #brxe-seo-grid-loc .akb-location-card .akb-link:hover,
body.home #brxe-seo-grid-loc .akb-location-card .akb-link:focus-visible{
  color:#041006!important;
  border-color:#56ff95!important;
  background-size:100% 100%!important;
  box-shadow:0 16px 38px rgba(86,255,149,.20)!important;
}
@media(max-width:980px){body.home #brxe-seo-grid-loc.akb-location-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}}
@media(max-width:640px){body.home #brxe-seo-grid-loc.akb-location-grid{grid-template-columns:1fr!important;}body.home #brxe-seo-grid-loc .akb-location-card{min-height:390px!important;padding:calc(160px + 1.15rem) 1.1rem 1.1rem!important;}body.home #brxe-seo-grid-loc .akb-location-card::before{height:154px;inset:12px 12px auto;}}


/* AUTOKEFALONIA HOME LOCATION CARD MOUSE FLARES 2026-05-12
   Add the missing Fancy Bricks-style cursor-following green light to homepage pickup cards. */
body.home #brxe-seo-grid-loc .akb-location-card > * {
  position: relative !important;
  z-index: 3 !important;
}
body.home #brxe-seo-grid-loc .akb-location-card::before {
  z-index: 1 !important;
}
body.home #brxe-seo-grid-loc .akb-location-card::after {
  z-index: 2 !important;
  inset: -40% !important;
  border-radius: inherit !important;
  background:
    radial-gradient(circle at var(--mx,50%) var(--my,20%), rgba(86,255,149,.42), rgba(86,255,149,.16) 12%, transparent 34%),
    radial-gradient(circle at var(--mx,50%) var(--my,20%), rgba(255,255,255,.18), transparent 18%) !important;
  opacity: var(--ak-flare-opacity,0) !important;
  mix-blend-mode: screen;
  transition: opacity .22s ease !important;
}
body.home #brxe-seo-grid-loc .akb-location-card:hover::after,
body.home #brxe-seo-grid-loc .akb-location-card.is-flaring::after,
body.home #brxe-seo-grid-loc .akb-location-card:focus-within::after {
  opacity: 1 !important;
}


/* AUTOKEFALONIA HOME DEMO POLISH 2026-05-12
   Remove leftover template CTA noise and strengthen above-the-fold readability for demo. */
body.home #brxe-gticen.fb-group-btn {
  display: none !important;
}
body.home #brxe-hsec01 .akb-trust-item {
  background: rgba(3, 10, 9, .52) !important;
  border: 1px solid rgba(255, 255, 255, .16) !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .18) !important;
  backdrop-filter: blur(10px);
}
body.home #brxe-hsec01 .akb-trust-item strong {
  color: #ffffff !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
}
body.home #brxe-hsec01 .akb-trust-item span {
  color: rgba(245, 255, 248, .88) !important;
}
body.home #brxe-hsec01 .ak-btn-primary,
body.home #brxe-hsec01 .akb-booking-card button[type="submit"],
body.home #brxe-hsec01 .vrc-search-btn,
body.home #brxe-hsec01 input[type="submit"] {
  background: linear-gradient(135deg, #56ff95 0%, #24d86d 55%, #b4e639 100%) !important;
  color: #041006 !important;
  border-color: rgba(180, 230, 57, .95) !important;
  box-shadow: 0 18px 44px rgba(86, 255, 149, .26), inset 0 1px 0 rgba(255,255,255,.34) !important;
}
body.home #brxe-seo-sec-cars .akb-eyebrow,
body.home #brxe-seo-sec-loc .akb-eyebrow {
  display: inline-flex !important;
  width: auto !important;
  color: #0b2419 !important;
  background: rgba(86, 255, 149, .18) !important;
  border: 1px solid rgba(13, 43, 35, .14) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55) !important;
}

/* AUTOKEFALONIA HOME DEMO POLISH FOLLOW-UP 2026-05-12
   Keep hero from stretching awkwardly on tall demo screens and fit airport labels in selects. */
body.home #brxe-hsec01.akb-hero {
  min-height: min(100vh, 1120px) !important;
}
body.home #brxe-hsec01 .vrc-searchf-section-locations select,
body.home #brxe-hsec01 select#place,
body.home #brxe-hsec01 select#returnplace {
  font-size: clamp(.78rem, .9vw, .92rem) !important;
  letter-spacing: -.015em !important;
  padding-left: .75rem !important;
  padding-right: 1.65rem !important;
}
@media (min-width: 1100px) {
  body.home #brxe-hsec01 .vrc-searchf-section-locations {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 12px !important;
  }
}
@media (max-width: 520px) {
  body.home #brxe-hsec01 .vrc-searchf-section-locations {
    grid-template-columns: 1fr !important;
  }
}

/* AUTOKEFALONIA HOME DEMO POLISH FINAL 2026-05-12
   Keep vendor/plugin labels out of the demo UI and correct eyebrow contrast on dark sections. */
body.home #brxe-hsec01 .vrc-main-title {
  display: none !important;
}
body.home #brxe-seo-sec-loc .akb-eyebrow {
  color: #dfff7a !important;
  background: rgba(86, 255, 149, .12) !important;
  border-color: rgba(180, 230, 57, .28) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,.18), inset 0 0 0 1px rgba(255,255,255,.08) !important;
}

/* AUTOKEFALONIA MOBILE DEMO FIX 2026-05-12
   Prevent horizontal overflow from the native header/hero on phone-sized demo screens. */
html, body {
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .ak-site-header,
  .ak-site-header * {
    box-sizing: border-box;
  }
  .ak-site-header {
    max-width: 100vw !important;
    overflow-x: clip !important;
  }
  .ak-site-header .ak-header-inner,
  .ak-site-header .ak-header-wrap,
  .ak-site-header .ak-header-row {
    max-width: 100% !important;
    min-width: 0 !important;
  }
  .ak-site-header .ak-header-phone {
    display: none !important;
  }
  .ak-site-header .ak-header-actions {
    gap: 8px !important;
    min-width: 0 !important;
    flex-shrink: 1 !important;
  }
  .ak-site-header .ak-header-cta {
    flex: 0 0 auto !important;
    max-width: 92px !important;
    min-width: 0 !important;
    padding: 9px 12px !important;
    font-size: 11px !important;
    letter-spacing: .03em !important;
    white-space: nowrap !important;
  }
  .ak-site-header .ak-brand,
  .ak-site-header .ak-brand-logo {
    min-width: 0 !important;
    max-width: 150px !important;
    flex-shrink: 1 !important;
  }
  .ak-site-header .ak-brand-logo img,
  .ak-site-header img {
    max-width: 150px !important;
    height: auto !important;
  }
  body.home #brxe-hsec01,
  body.home #brxe-hcon01,
  body.home #brxe-hcopy01,
  body.home #book-car {
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
  }
  body.home #brxe-hsec01 .akb-hero-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }
  body.home #brxe-hsec01 .akb-h1 {
    font-size: clamp(2.55rem, 13vw, 3.9rem) !important;
    line-height: .94 !important;
    letter-spacing: -.07em !important;
  }
  body.home #brxe-hsec01 .akb-lead {
    font-size: 1rem;
    line-height: 1.55;
  }
}
@media (max-width: 420px) {
  .ak-site-header .ak-brand,
  .ak-site-header .ak-brand-logo,
  .ak-site-header .ak-brand-logo img,
  .ak-site-header img {
    max-width: 128px !important;
  }
  .ak-site-header .ak-header-cta {
    max-width: 78px !important;
    padding-inline: 10px !important;
  }
}

/* AUTOKEFALONIA MOBILE OVERFLOW HARDENING 2026-05-12 */
@media (max-width: 767px) {
  #brxe-akhdr2.ak-header-shell {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 52px !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 14px !important;
  }
  #brxe-akacts.ak-header-actions {
    display: none !important;
  }
  #brxe-aknav1 {
    width: 52px !important;
    min-width: 52px !important;
    max-width: 52px !important;
    justify-self: end !important;
    overflow: visible !important;
  }
  #brxe-aknav1 .bricks-nav-menu-wrapper:not(.bricks-mobile-menu-wrapper),
  #brxe-aknav1 .bricks-nav-menu {
    display: none !important;
  }
  #brxe-aknav1 .bricks-mobile-menu-toggle {
    display: inline-flex !important;
  }
  #brxe-aklogo.ak-brand {
    width: auto !important;
    min-width: 0 !important;
    max-width: min(156px, calc(100vw - 104px)) !important;
    overflow: hidden !important;
  }
  #brxe-aklogo.ak-brand img {
    width: 100% !important;
    max-width: 156px !important;
    object-fit: contain !important;
  }
  body.home #brxe-hsec01.akb-hero {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  body.home #brxe-hcon01.akb-hero-grid,
  body.home #brxe-hcopy01.akb-hero-copy,
  body.home #book-car.akb-booking-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  body.home #brxe-hcon01.akb-hero-grid {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  body.home #brxe-hsec01 .akb-h1,
  body.home #brxe-hsec01 .akb-lead,
  body.home #brxe-hsec01 .akb-actions,
  body.home #brxe-hsec01 .akb-trust {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }
  body.home #brxe-hsec01 .akb-h1 {
    overflow-wrap: normal !important;
    word-break: normal !important;
  }
}

/* AUTOKEFALONIA MOBILE H1 CLIP FIX 2026-05-12 */
@media (max-width: 767px) {
  body.home #brxe-hh101.akb-h1 {
    display: block !important;
    max-width: calc(100vw - 36px) !important;
    width: 100% !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    -webkit-box-orient: initial !important;
    font-size: clamp(2.05rem, 9vw, 3.25rem) !important;
    line-height: 1.03 !important;
    letter-spacing: -.045em !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }
}

/* AUTOKEFALONIA MOBILE H1 FINAL FIT 2026-05-12 */
@media (max-width: 767px) {
  body.home #brxe-hh101.akb-h1 {
    font-size: clamp(1.9rem, 8vw, 2.85rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -.035em !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    max-width: 100% !important;
  }
}

/* AUTOKEFALONIA FLEET CHILD PAGES - BRICKS SHORTCODE CARD POLISH 2026-05-12
   The car cards are now rendered by visible Bricks Shortcode elements, not footer injection. */
.ak-topical-page[class*="ak-topical-fleet-"] {
  min-height: auto !important;
  padding-bottom: clamp(2rem, 4vw, 4rem) !important;
}
.ak-vrc-builder-shortcode {
  width: min(1160px, calc(100% - 2.5rem));
  margin: 0 auto clamp(4rem, 7vw, 7rem);
}
.ak-vrc-builder-shortcode .ak-vrc-category-cars {
  margin-top: 0;
}
.ak-vrc-builder-shortcode .ak-vrc-car-card__image {
  object-fit: contain !important;
  object-position: center center !important;
  padding: 18px;
  background: #fff;
}
@media (max-width: 767px) {
  .ak-vrc-builder-shortcode {
    width: min(100% - 1.5rem, 1160px);
  }
  .ak-vrc-builder-shortcode .ak-vrc-car-card__image {
    padding: 12px;
  }
}

/* AUTOKEFALONIA VIKRENTA CAR DETAIL ANCHOR UX 2026-05-12 */
#vrc-bookingpart-init,
.vrc-cardetails-legend,
.vrc-cardetails-book-wrap {
  scroll-margin-top: 115px;
}

/* AUTOKEFALONIA VIKRENTA MONTH SELECT CONTRAST 2026-05-12 */
.vrc-cardetails-legend select.vrcselectm,
.vrc-cardetails-legend .vrcselectm {
  color: #07110d !important;
  background-color: #ffffff !important;
  border: 1px solid rgba(86,255,149,.35) !important;
  border-radius: 0 !important;
  font-weight: 700 !important;
}
.vrc-cardetails-legend select.vrcselectm option {
  color: #07110d !important;
  background: #ffffff !important;
}

/* AUTOKEFALONIA STRONG VIKRENTA MONTH SELECT CONTRAST 2026-05-12 */
select.vrcselectm,
.vrc-cardetails-legend select,
.vrc-cardetails-legend select.vrcselectm,
.vrc-cardetails-legend .vrcselectm,
.vrc-cardetails-legend form select[name="month"] {
  color: #06110d !important;
  -webkit-text-fill-color: #06110d !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  opacity: 1 !important;
  text-shadow: none !important;
  font-weight: 800 !important;
}
select.vrcselectm option,
.vrc-cardetails-legend select option {
  color: #06110d !important;
  -webkit-text-fill-color: #06110d !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
}

/* AUTOKEFALONIA VIKRENTA AVAILABILITY CALENDAR DEMO UX 2026-05-12
   Keep the calendar as a visual availability reference only. VikRentCar's native
   day-click behavior does not reliably sync with the styled pickup/dropoff fields. */
.vrc-cardetails-legend .vrc-avcals-container .vrc-cdetails-cal-pickday,
.vrc-cardetails-legend .vrc-avcals-container td[class*="vrctd"] {
  cursor: pointer !important;
}
.vrc-cardetails-legend .vrc-avcals-container .vrc-cdetails-cal-pickday {
  pointer-events: auto !important;
}
.vrc-cardetails-legend::after {
  content: "Click an available day for pickup, then click a later day for drop-off.";
  display: block;
  margin-top: 14px;
  color: rgba(255,255,255,.74);
  font-size: 14px;
  line-height: 1.5;
}

/* AUTOKEFALONIA VIKRENTA CALENDAR CLICK BLOCK SELECTOR FIX 2026-05-12 */
.vrc-avcals-container .vrc-cdetails-cal-pickday,
.vrc-avcals-container td[class*="vrctd"] {
  cursor: pointer !important;
}
.vrc-avcals-container .vrc-cdetails-cal-pickday {
  pointer-events: auto !important;
}
.vrc-cardetails-legend + .vrc-avcals-container + *::before {
  content: "";
}

/* AUTOKEFALONIA VIKRENTA CALENDAR CONTROLLED SELECT OVERRIDE 2026-05-12 */
.vrc-avcals-container .vrc-cdetails-cal-pickday {
  pointer-events: auto !important;
  cursor: pointer !important;
}
.vrc-avcals-container td.vrctdpast .vrc-cdetails-cal-pickday,
.vrc-avcals-container td.vrctdbusy .vrc-cdetails-cal-pickday {
  cursor: not-allowed !important;
}


/* AUTOKEFALONIA VIKRENTA CAR DETAIL BIG DATE FACADE 2026-05-12 */
.vrc-cardetails-book-wrap .vrc-searchf-section-datetimes {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.ak-cardetail-facade {
  margin: 18px 0 22px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
}
.ak-cardetail-facade .facade-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.ak-cardetail-facade .facade-card {
  cursor: default;
}
.ak-cardetail-facade .ak-detail-time-card {
  cursor: pointer;
}
.ak-cardetail-facade-hint {
  margin-top: 12px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.45;
}
.vrc-avcals-container .vrc-cdetails-cal-pickday.ak-cal-selected-pickup,
.vrc-avcals-container .vrc-cdetails-cal-pickday.ak-cal-selected-dropoff {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15em;
  height: 2.15em;
  border-radius: 999px;
  font-weight: 900;
}
.vrc-avcals-container .vrc-cdetails-cal-pickday.ak-cal-selected-pickup {
  background: #b7f23b !important;
  color: #07110d !important;
  box-shadow: 0 0 0 3px rgba(183,242,59,.22);
}
.vrc-avcals-container .vrc-cdetails-cal-pickday.ak-cal-selected-dropoff {
  background: #56ff95 !important;
  color: #07110d !important;
  box-shadow: 0 0 0 3px rgba(86,255,149,.22);
}
#ui-datepicker-div.ak-cardetail-hidden-picker,
body:has(.ak-cardetail-facade) #ui-datepicker-div {
  display: none !important;
}
@media (max-width: 640px) {
  .ak-cardetail-facade .facade-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 10px; }
  .ak-cardetail-facade .facade-card { padding: 14px 10px; }
  .ak-cardetail-facade .facade-card .card-number { font-size: clamp(2.6rem, 16vw, 4rem); }
  .ak-cardetail-facade .facade-card .card-time { font-size: clamp(2.2rem, 13vw, 3.4rem); }
}

/* AUTOKEFALONIA VIKRENTA DETAIL TIME OPTIONS - isolated from homepage facade JS */
.ak-cardetail-facade .ak-detail-time-option {
  border: 0;
  border-radius: 10px;
  padding: 8px 6px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  font-weight: 800;
  cursor: pointer;
}
.ak-cardetail-facade .ak-detail-time-option:hover,
.ak-cardetail-facade .ak-detail-time-option.is-active {
  background: #b7f23b;
  color: #07110d;
}

/* AUTOKEFALONIA VIKRENTA CAR DETAIL FACADE CLICKABILITY 2026-05-12 */
.ak-cardetail-facade .ak-detail-date-card,
.ak-cardetail-facade .ak-detail-time-card {
  cursor: pointer !important;
  position: relative;
}
.ak-cardetail-facade .ak-detail-date-card:hover,
.ak-cardetail-facade .ak-detail-date-card.is-selecting,
.ak-cardetail-facade .ak-detail-time-card:hover,
.ak-cardetail-facade .ak-detail-time-card.is-open {
  transform: translateY(-2px);
  border-color: rgba(183,242,59,.48);
  box-shadow: 0 18px 42px rgba(0,0,0,.22), 0 0 0 1px rgba(183,242,59,.18) inset;
}
.ak-cardetail-facade .ak-detail-date-card.is-selecting::after {
  content: "Choosing";
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(183,242,59,.16);
  color: #dfff72;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ak-cardetail-facade .ak-detail-time-popover {
  z-index: 9999 !important;
  pointer-events: auto !important;
}
.ak-cardetail-facade .ak-detail-time-done {
  width: 100%;
  margin-top: 12px;
  border: 0;
  border-radius: 12px;
  padding: 10px 12px;
  background: #b7f23b;
  color: #07110d;
  font-weight: 900;
  cursor: pointer;
}
.ak-cardetail-facade .ak-detail-time-option,
.ak-cardetail-facade .ak-detail-time-done {
  pointer-events: auto !important;
}

/* AUTOKEFALONIA VIKRENTA CAR DETAIL MOBILE TIME POPOVER FIX 2026-05-12
   Homepage facade uses native mobile time inputs, but car-detail facade has custom buttons only. */
@media (hover: none), (pointer: coarse), (max-width: 900px) {
  .ak-cardetail-facade .ak-detail-time-popover {
    display: none !important;
    pointer-events: auto !important;
  }
  .ak-cardetail-facade .ak-detail-time-popover.is-open {
    display: block !important;
  }
}

/* AUTOKEFALONIA VIKRENTA MOBILE ONE-MONTH AVAILABILITY PAGER 2026-05-12 */
.ak-vrc-mobile-cal-pager {
  display: none;
}
@media (max-width: 700px) {
  .ak-vrc-mobile-cal-pager {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 10px;
    margin: 16px 0 12px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(7,17,13,.84);
    border: 1px solid rgba(183,242,59,.22);
    box-shadow: 0 16px 42px rgba(0,0,0,.18);
  }
  .ak-vrc-mobile-cal-pager button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #b7f23b;
    color: #07110d;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    cursor: pointer;
  }
  .ak-vrc-mobile-cal-pager button:disabled {
    opacity: .32;
    cursor: not-allowed;
  }
  .ak-vrc-cal-current {
    color: #fff;
    font-weight: 900;
    text-align: center;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .vrc-avcals-container .vrccaldivcont {
    display: none !important;
  }
  .vrc-avcals-container .vrccaldivcont.ak-vrc-cal-active {
    display: block !important;
  }
  .vrc-avcals-container {
    min-height: 360px;
  }
}

/* AUTOKEFALONIA VIKRENTA MOBILE CALENDAR ARROWS + TIME OVERLAY ALIGN 2026-05-12 */
@media (max-width: 700px) {
  .ak-vrc-mobile-cal-pager button {
    font-size: 12px !important;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .ak-vrc-mobile-cal-pager button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
}
@media (hover: none), (pointer: coarse), (max-width: 900px) {
  .ak-cardetail-facade .ak-detail-time-popover.is-open {
    position: fixed !important;
    left: 16px !important;
    right: 16px !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    max-width: 430px !important;
    max-height: min(78vh, 620px) !important;
    margin: 0 auto !important;
    overflow-y: auto !important;
    z-index: 2147483000 !important;
  }
  .ak-cardetail-facade .ak-detail-time-popover.is-open::before {
    content: "";
    position: fixed;
    inset: -100vh;
    background: rgba(0,0,0,.36);
    z-index: -1;
  }
  .ak-cardetail-facade .ak-detail-time-popover .facade-time-hours {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* AUTOKEFALONIA VIKRENTA MOBILE TIME OVERLAY WIDTH FORCE 2026-05-12 */
@media (hover: none), (pointer: coarse), (max-width: 900px) {
  .ak-cardetail-facade .ak-detail-time-popover.is-open {
    width: calc(100vw - 32px) !important;
    min-width: 0 !important;
    max-width: calc(100vw - 32px) !important;
    box-sizing: border-box !important;
  }
}

/* AUTOKEFALONIA VIKRENTA MOBILE TIME OVERLAY CENTER FORCE 2026-05-12 */
@media (hover: none), (pointer: coarse), (max-width: 900px) {
  .ak-cardetail-facade .ak-detail-time-popover.is-open {
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
  }
}

/* AUTOKEFALONIA VIKRENTA MOBILE TIME OVERLAY VISUAL VIEWPORT WIDTH 2026-05-12 */
@media (hover: none), (pointer: coarse), (max-width: 900px) {
  .ak-cardetail-facade .ak-detail-time-popover.is-open {
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
  }
}

/* AUTOKEFALONIA VIKRENTA BODY-LEVEL MOBILE TIME POPOVER 2026-05-12 */
@media (hover: none), (pointer: coarse), (max-width: 900px) {
  body > .ak-detail-body-popover.is-open {
    display: block !important;
    position: fixed !important;
    left: 16px !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box !important;
    z-index: 2147483000 !important;
    max-height: min(78vh, 620px) !important;
    overflow-y: auto !important;
  }
  body > .ak-detail-body-popover .facade-time-hours {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

/* AUTOKEFALONIA VIKRENTA CAR DETAIL BOOKING SECTION REORDER 2026-05-12 */
.ak-cardetail-calendar-title {
  margin: 26px 0 14px !important;
  color: #07110d;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -.03em;
}
.vrc-cardetails-book-wrap {
  margin-top: 16px !important;
}
.vrc-cardetails-book-wrap .ak-cardetail-facade {
  margin-top: 0 !important;
}
.vrc-cardetails-book-wrap .ak-cardetail-locations-after-dates {
  margin-top: 18px;
}
@media (max-width: 700px) {
  .ak-cardetail-calendar-title {
    margin: 18px 0 10px !important;
    font-size: clamp(1.22rem, 6vw, 1.55rem);
  }
  .vrc-cardetails-book-wrap {
    margin-top: 10px !important;
  }
  .vrc-cardetails-book-wrap .ak-cardetail-facade {
    margin-top: 0 !important;
    margin-bottom: 14px !important;
  }
  .vrc-cardetails-book-wrap .ak-cardetail-locations-after-dates {
    margin-top: 14px;
  }
}

/* AUTOKEFALONIA VIKRENTA TIGHTER CALENDAR TO BIG DATE GAP 2026-05-12 */
.vrc-avcals-container {
  margin-bottom: 8px !important;
}
.vrc-cardetails-book-wrap {
  margin-top: 8px !important;
  padding-top: 0 !important;
}
.vrc-cardetails-book-wrap .ak-cardetail-facade {
  margin-top: 0 !important;
}
@media (max-width: 700px) {
  .vrc-avcals-container {
    margin-bottom: 4px !important;
  }
  .vrc-cardetails-book-wrap {
    margin-top: 4px !important;
  }
  .vrc-cardetails-book-wrap .ak-cardetail-facade {
    margin-top: 0 !important;
  }
}

/* AUTOKEFALONIA VIKRENTA REMOVE EXTRA SEARCH WRAPPER GAP AFTER CALENDAR 2026-05-12 */
.vrc-cardetails-book-wrap > .vrcdivsearch {
  margin-top: 0 !important;
  padding-top: 8px !important;
}
@media (max-width: 700px) {
  .vrc-cardetails-book-wrap > .vrcdivsearch {
    padding-top: 4px !important;
  }
}

/* AUTOKEFALONIA VIKRENTA CAR DETAIL TITLE REPLACEMENT 2026-05-12 */
#brx-content > h1.ak-cardetail-page-title,
article#brx-content > h1.ak-cardetail-page-title {
  display: block !important;
  max-width: 1180px;
  margin: clamp(22px, 4vw, 46px) auto clamp(14px, 2.2vw, 26px) !important;
  padding: 0 clamp(18px, 4vw, 32px);
  color: #07110d;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 950;
}
.ak-cardetail-page-title span {
  display: block;
}
.ak-cardetail-title-kicker {
  margin-bottom: 10px;
  color: #2f6f38;
  font-size: clamp(.72rem, 1vw, .86rem);
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 900;
}
.ak-cardetail-title-main {
  max-width: 920px;
}
.ak-cardetail-title-meta {
  margin-top: 12px;
  color: #4f6f5d;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.25;
  letter-spacing: .01em;
  font-weight: 800;
}
.ak-cardetail-title-desc {
  max-width: 780px;
  margin-top: 12px;
  color: rgba(7,17,13,.70);
  font-size: clamp(.98rem, 1.25vw, 1.12rem);
  line-height: 1.55;
  letter-spacing: 0;
  font-weight: 550;
}
@media (max-width: 700px) {
  #brx-content > h1.ak-cardetail-page-title,
  article#brx-content > h1.ak-cardetail-page-title {
    margin-top: 18px !important;
    margin-bottom: 12px !important;
    padding-inline: 16px;
    font-size: clamp(2rem, 12vw, 3.15rem);
  }
  .ak-cardetail-title-desc {
    font-size: .98rem;
    line-height: 1.45;
  }
}

/* AUTOKEFALONIA VIKRENTA CAR DETAIL TITLE DARK BACKGROUND CONTRAST 2026-05-12 */
#brx-content > h1.ak-cardetail-page-title,
article#brx-content > h1.ak-cardetail-page-title {
  color: #ecffd6 !important;
  text-shadow: 0 2px 18px rgba(0,0,0,.38);
}
.ak-cardetail-title-kicker {
  color: #7cff8f !important;
}
.ak-cardetail-title-meta {
  color: #bdf7be !important;
}
.ak-cardetail-title-desc {
  color: rgba(236,255,214,.78) !important;
}

/* AUTOKEFALONIA VIKRENTA BOOKING FLOW CONTRAST + GENERIC TITLE CLEANUP 2026-05-12 */
body.page-id-108 #brx-content > h1:not(.ak-cardetail-page-title) {
  display: none !important;
}
.vrcstepsbarcont,
.vrc-stepbar {
  color: #07110d !important;
}
.vrc-stepbar .vrc-step,
.vrc-stepbar .vrc-step span,
.vrc-stepbar .vrc-step a {
  color: #07110d !important;
  -webkit-text-fill-color: #07110d !important;
  opacity: 1 !important;
  font-weight: 900 !important;
  text-shadow: none !important;
}
.vrc-stepbar .vrc-step-next span,
.vrc-stepbar .vrc-step-next a {
  color: #26332f !important;
  -webkit-text-fill-color: #26332f !important;
}
.vrc-stepbar .vrc-step-current span,
.vrc-stepbar .vrc-step-current a,
.vrc-stepbar .vrc-step-complete span,
.vrc-stepbar .vrc-step-complete a {
  color: #06110d !important;
  -webkit-text-fill-color: #06110d !important;
}
.vrc-stepbar .vrc-step:before,
.vrc-stepbar .vrc-step span:before,
.vrc-stepbar .vrc-step a:before {
  color: #06110d !important;
  -webkit-text-fill-color: #06110d !important;
  font-weight: 900 !important;
}
.vrc-stepbar .vrc-step-next:before,
.vrc-stepbar .vrc-step-next span:before {
  color: #26332f !important;
  -webkit-text-fill-color: #26332f !important;
}

/* AUTOKEFALONIA VIKRENTA DESKTOP TIME POPOVER ABOVE FOOTER 2026-05-12 */
body > .ak-detail-body-popover.is-open {
  display: block !important;
  position: fixed !important;
  left: 50% !important;
  top: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
  width: min(360px, calc(100vw - 32px)) !important;
  max-width: calc(100vw - 32px) !important;
  max-height: min(78vh, 620px) !important;
  overflow-y: auto !important;
  z-index: 2147483000 !important;
  pointer-events: auto !important;
}
body > .ak-detail-body-popover.is-open::before {
  content: "";
  position: fixed;
  inset: -100vh;
  background: rgba(0,0,0,.28);
  z-index: -1;
}
body > .ak-detail-body-popover .ak-detail-time-option,
body > .ak-detail-body-popover .ak-detail-time-done {
  pointer-events: auto !important;
}

/* AUTOKEFALONIA RESPONSIVE PRICE TABLES 2026-05-12 */
.ak-prices-table-section {
  margin-top: clamp(28px, 5vw, 54px);
}
.ak-prices-table-intro {
  max-width: 860px;
  margin-bottom: 22px;
}
.ak-prices-table-intro h2 {
  margin: 0 0 10px;
  color: #f4ffe9;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  letter-spacing: -.035em;
  line-height: 1.05;
}
.ak-prices-table-intro p {
  margin: 0;
  color: rgba(244,255,233,.72);
  line-height: 1.65;
}
.ak-prices-table-grid {
  display: grid;
  gap: 20px;
}
.cartable.ak-price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(11,28,22,.98), rgba(18,22,23,.98));
  border: 1px solid rgba(183,242,59,.20);
  box-shadow: 0 22px 60px rgba(0,0,0,.25);
  color: #f4ffe9;
}
.cartable.ak-price-table th,
.cartable.ak-price-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  text-align: left;
  vertical-align: middle;
}
.cartable.ak-price-table thead th {
  background: linear-gradient(135deg, rgba(32,78,42,.75), rgba(10,20,17,.98));
  color: #eaffd6;
  font-size: clamp(.9rem, 1vw, 1rem);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.cartable.ak-price-table thead th:first-child {
  width: 34%;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  text-transform: none;
  letter-spacing: 0;
}
.cartable.ak-price-table tbody tr:last-child td { border-bottom: 0; }
.cartable.ak-price-table tbody td {
  color: #ffffff;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
}
.cartable.ak-price-table tbody td:not(:first-child) strong {
  color: #b7f23b;
  font-size: 1.08em;
}
.ak-price-class {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #35e133;
  color: #06110d;
  font-size: .78rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cartable.ak-price-table thead em {
  display: block;
  margin-top: 6px;
  color: rgba(234,255,214,.72);
  font-style: normal;
  font-weight: 700;
}
@media (min-width: 980px) {
  .ak-prices-table-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cartable.ak-price-table:nth-child(7),
  .cartable.ak-price-table:nth-child(8),
  .cartable.ak-price-table:nth-child(9) {
    grid-column: auto;
  }
}
@media (max-width: 720px) {
  .cartable.ak-price-table,
  .cartable.ak-price-table thead,
  .cartable.ak-price-table tbody,
  .cartable.ak-price-table tr,
  .cartable.ak-price-table th,
  .cartable.ak-price-table td {
    display: block;
  }
  .cartable.ak-price-table {
    border-radius: 22px;
  }
  .cartable.ak-price-table thead tr {
    display: block;
  }
  .cartable.ak-price-table thead th {
    display: none;
  }
  .cartable.ak-price-table thead th:first-child {
    display: block;
    width: auto;
    padding: 18px;
  }
  .cartable.ak-price-table tbody tr {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }
  .cartable.ak-price-table tbody tr:last-child { border-bottom: 0; }
  .cartable.ak-price-table tbody td {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 18px;
    border-bottom: 0;
    font-size: 1rem;
  }
  .cartable.ak-price-table tbody td::before {
    content: attr(data-label);
    color: rgba(234,255,214,.72);
    font-weight: 800;
  }
  .cartable.ak-price-table tbody td:first-child {
    padding-top: 16px;
    color: #fff;
    font-size: 1.05rem;
  }
  .cartable.ak-price-table tbody td:first-child::before {
    color: #7cff8f;
  }
  .ak-price-class {
    margin: 0 0 10px;
  }
}

/* GLOBAL FLEET PLAN THE TRIP BUTTONS 2026-05-13 */
.ak-plan-trip-global {
  position: relative;
  overflow: hidden;
}
.ak-plan-trip-global::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(53,225,51,.16), transparent 34%),
    radial-gradient(circle at 84% 84%, rgba(183,242,59,.10), transparent 38%);
  opacity: .9;
}
.ak-plan-trip-head,
.ak-plan-trip-actions {
  position: relative;
  z-index: 1;
}
.ak-plan-trip-head h2 {
  margin: 8px 0 0;
}
.ak-plan-trip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.ak-plan-trip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(183,242,59,.42);
  background: rgba(183,242,59,.045);
  color: #ecffd6 !important;
  font-weight: 850;
  font-size: .94rem;
  letter-spacing: -.01em;
  text-decoration: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 12px 30px rgba(0,0,0,.20);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.ak-plan-trip-btn:hover,
.ak-plan-trip-btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(183,242,59,.82);
  background: rgba(183,242,59,.12);
  color: #ffffff !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 18px 42px rgba(53,225,51,.14);
}
.ak-plan-trip-btn-primary {
  border-color: rgba(53,225,51,.9);
  background: linear-gradient(135deg, rgba(53,225,51,.95), rgba(183,242,59,.88));
  color: #07110d !important;
  box-shadow: 0 18px 44px rgba(53,225,51,.18);
}
.ak-plan-trip-btn-primary:hover,
.ak-plan-trip-btn-primary:focus-visible {
  color: #07110d !important;
  background: linear-gradient(135deg, #7cff8f, #b7f23b);
}
@media (max-width: 640px) {
  .ak-plan-trip-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .ak-plan-trip-btn {
    width: 100%;
  }
}

/* HOMEPAGE TIME PICKER BODY OVERLAY FIX 2026-05-13 */
body > .facade-time-popover.ak-home-body-popover.is-open {
  position: fixed !important;
  left: 50% !important;
  top: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
  z-index: 2147483647 !important;
  display: block !important;
  width: min(620px, calc(100vw - 48px)) !important;
  max-height: calc(100vh - 48px) !important;
  overflow: auto !important;
  padding: 28px 32px !important;
}
body > .facade-time-popover.ak-home-body-popover.is-open .facade-time-hours {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
body > .facade-time-popover.ak-home-body-popover.is-open .facade-time-option {
  min-height: 56px;
  border-radius: 999px;
  font-size: 1.08rem;
}
body > .facade-time-popover.ak-home-body-popover.is-open .facade-time-minutes .facade-time-option {
  min-height: 52px;
}
@media (max-width: 700px) {
  body > .facade-time-popover.ak-home-body-popover.is-open {
    width: calc(100vw - 32px) !important;
    padding: 22px 18px !important;
  }
  body > .facade-time-popover.ak-home-body-popover.is-open .facade-time-hours {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* VIKRENTCAR BOOKING FLOW GREEN ACCENTS 2026-05-13 */
body .vrc-stepbar .vrc-stepbar-step .vrc-stepbar-num,
body .vrc-stepbar .vrc-stepbar-step .vrc-stepbar-number,
body .vrc-stepbar .vrc-stepbar-step span:first-child {
  color: #07110d !important;
  background: linear-gradient(135deg, #35e133, #b7f23b) !important;
  border-color: rgba(53,225,51,.75) !important;
  box-shadow: 0 10px 26px rgba(53,225,51,.22) !important;
  -webkit-text-fill-color: #07110d !important;
}
body .vrc-stepbar .vrc-stepbar-step-active .vrc-stepbar-num,
body .vrc-stepbar .vrc-stepbar-step-active .vrc-stepbar-number,
body .vrc-stepbar .vrc-stepbar-step-active span:first-child {
  background: linear-gradient(135deg, #7cff8f, #b7f23b) !important;
  box-shadow: 0 0 0 4px rgba(53,225,51,.16), 0 16px 34px rgba(53,225,51,.24) !important;
}
body .vrc-search-summary-duration,
body .vrc-search-summary .vrc-search-summary-duration,
body .vrc-showprc-duration,
body .vrc-rental-duration,
body .vrc-summary-duration,
body .vrcordduration,
body .vrcordudata .vrcordduration,
body .vrc-itinerary-duration,
body .vrc-itinerary-duration * {
  color: #35e133 !important;
  -webkit-text-fill-color: #35e133 !important;
  font-weight: 950 !important;
}

/* VIKRENTCAR BOOKING FLOW STEP NUMBER GREEN FIX 2026-05-13 */
.vrcstepsbarcont .vrc-stepbar > li > *:before {
  color: #07110d !important;
  -webkit-text-fill-color: #07110d !important;
  background: linear-gradient(135deg, #35e133, #b7f23b) !important;
  border-color: #35e133 !important;
  box-shadow: 0 10px 26px rgba(53,225,51,.24) !important;
  font-weight: 950 !important;
}
.vrcstepsbarcont .vrc-stepbar > li.vrc-step-current > *:before {
  background: linear-gradient(135deg, #7cff8f, #b7f23b) !important;
  border-color: #7cff8f !important;
  box-shadow: 0 0 0 4px rgba(53,225,51,.16), 0 16px 34px rgba(53,225,51,.26) !important;
}
.vrcstepsbarcont .vrc-stepbar > li:after {
  background-color: rgba(53,225,51,.38) !important;
}

/* VIKRENTCAR BOOKING FLOW CURRENT-STEP ONLY GREEN 2026-05-13 */
.vrcstepsbarcont .vrc-stepbar > li > *:before {
  color: #06110d !important;
  -webkit-text-fill-color: #06110d !important;
  background: #f7fff2 !important;
  background-image: none !important;
  border: 2px solid #35e133 !important;
  box-shadow: 0 0 0 0 rgba(53,225,51,0) !important;
  font-weight: 950 !important;
}
.vrcstepsbarcont .vrc-stepbar > li.vrc-step-current > *:before {
  color: #06110d !important;
  -webkit-text-fill-color: #06110d !important;
  background: linear-gradient(135deg, #35e133, #b7f23b) !important;
  border: 2px solid #35e133 !important;
  box-shadow: 0 0 0 7px rgba(53,225,51,.22), 0 14px 30px rgba(53,225,51,.24) !important;
}
.vrcstepsbarcont .vrc-stepbar > li.vrc-step-complete > *:before,
.vrcstepsbarcont .vrc-stepbar > li.vrc-step-next > *:before {
  background: #f7fff2 !important;
  background-image: none !important;
  border-color: #35e133 !important;
  box-shadow: none !important;
}
.vrcstepsbarcont .vrc-stepbar > li:after {
  background-color: rgba(53,225,51,.34) !important;
}
.vrcstepsbarcont .vrc-stepbar > li.vrc-step-current > span,
.vrcstepsbarcont .vrc-stepbar > li.vrc-step-current > a {
  font-weight: 950 !important;
}

/* HIDE VIKRENTCAR VIEW LOCATIONS MAP LINK FOR DEMO 2026-05-13 */
.vrclocationsbox,
.vrclocationsmapdiv {
  display: none !important;
}

/* VIKRENTCAR STEP 3 RENTAL DURATION GREEN 2026-05-13 */
.vrc-showprc-container .car_title .ak-vrc-title-days {
  color: #35e133 !important;
  -webkit-text-fill-color: #35e133 !important;
  font-weight: 950 !important;
  text-shadow: 0 0 22px rgba(53,225,51,.22) !important;
}

/* VIKRENTCAR CAR FEATURE ICON STRIP CONTRAST 2026-05-13 */
.vrccaratsdiv {
  background: rgba(255,255,255,.94) !important;
  border: 1px solid rgba(255,255,255,.85) !important;
  border-radius: 16px !important;
  padding: 10px 12px !important;
  box-shadow: 0 12px 32px rgba(0,0,0,.18) !important;
}
.vrccaratsdiv img,
.vrccaratsdiv svg,
.vrccaratsdiv i {
  opacity: 1 !important;
  filter: none !important;
}
.vrccaratsdiv .vrc-expl,
.vrccaratsdiv span,
.vrccaratsdiv li {
  color: #07110d !important;
  -webkit-text-fill-color: #07110d !important;
}

/* FANCY BRICKS OUTLINE RADIAL BUTTON SYSTEM 2026-05-13 */
.ak-plan-trip-btn,
.ak-plan-trip-btn-primary,
.ak-outline-secondary.brxe-button,
.fb-btn-outline-fade.brxe-button,
.fb-btn--outline-primary-w.brxe-button,
.fb-btn--outline-white.brxe-button,
.ak-btn-secondary,
.ak-btn-ghost,
.akb-link.brxe-button,
a.brxe-button[class*="outline"],
a.brxe-button[class*="ghost"],
a.bricks-button[class*="outline"],
a.bricks-button[class*="ghost"] {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background: rgba(255,255,255,.025) !important;
  background-image: none !important;
  color: #ecffd6 !important;
  -webkit-text-fill-color: #ecffd6 !important;
  border: 2px solid rgba(236,255,214,.82) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 12px 30px rgba(0,0,0,.18) !important;
  transition: transform .18s ease, border-color .24s ease, color .24s ease, box-shadow .24s ease !important;
}
.ak-plan-trip-btn::before,
.ak-plan-trip-btn-primary::before,
.ak-outline-secondary.brxe-button::before,
.fb-btn-outline-fade.brxe-button::before,
.fb-btn--outline-primary-w.brxe-button::before,
.fb-btn--outline-white.brxe-button::before,
.ak-btn-secondary::before,
.ak-btn-ghost::before,
.akb-link.brxe-button::before,
a.brxe-button[class*="outline"]::before,
a.brxe-button[class*="ghost"]::before,
a.bricks-button[class*="outline"]::before,
a.bricks-button[class*="ghost"]::before {
  content: "" !important;
  position: absolute !important;
  left: var(--ak-btn-x, 50%) !important;
  top: var(--ak-btn-y, 50%) !important;
  width: 220% !important;
  aspect-ratio: 1 / 1;
  border-radius: 999px !important;
  pointer-events: none !important;
  background: radial-gradient(circle, #7cff8f 0%, #56ff95 36%, #1ed46f 72%) !important;
  transform: translate(-50%, -50%) scale(0) !important;
  transform-origin: center !important;
  opacity: .98 !important;
  z-index: -1 !important;
  transition: transform .54s cubic-bezier(.16,1,.3,1), opacity .38s ease !important;
}
.ak-plan-trip-btn:hover::before,
.ak-plan-trip-btn-primary:hover::before,
.ak-plan-trip-btn:focus-visible::before,
.ak-plan-trip-btn-primary:focus-visible::before,
.ak-outline-secondary.brxe-button:hover::before,
.fb-btn-outline-fade.brxe-button:hover::before,
.fb-btn--outline-primary-w.brxe-button:hover::before,
.fb-btn--outline-white.brxe-button:hover::before,
.ak-btn-secondary:hover::before,
.ak-btn-ghost:hover::before,
.akb-link.brxe-button:hover::before,
a.brxe-button[class*="outline"]:hover::before,
a.brxe-button[class*="ghost"]:hover::before,
a.bricks-button[class*="outline"]:hover::before,
a.bricks-button[class*="ghost"]:hover::before {
  transform: translate(-50%, -50%) scale(1) !important;
}
.ak-plan-trip-btn:hover,
.ak-plan-trip-btn-primary:hover,
.ak-plan-trip-btn:focus-visible,
.ak-plan-trip-btn-primary:focus-visible,
.ak-outline-secondary.brxe-button:hover,
.fb-btn-outline-fade.brxe-button:hover,
.fb-btn--outline-primary-w.brxe-button:hover,
.fb-btn--outline-white.brxe-button:hover,
.ak-btn-secondary:hover,
.ak-btn-ghost:hover,
.akb-link.brxe-button:hover,
a.brxe-button[class*="outline"]:hover,
a.brxe-button[class*="ghost"]:hover,
a.bricks-button[class*="outline"]:hover,
a.bricks-button[class*="ghost"]:hover {
  color: #06110d !important;
  -webkit-text-fill-color: #06110d !important;
  border-color: #56ff95 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 18px 42px rgba(86,255,149,.22) !important;
  background: rgba(255,255,255,.025) !important;
  background-image: none !important;
}
.ak-plan-trip-actions .ak-plan-trip-btn,
.ak-plan-trip-actions .ak-plan-trip-btn-primary {
  min-width: clamp(13.5rem, 18vw, 17rem) !important;
  min-height: 54px !important;
  padding: 1.02rem 1.45rem !important;
  justify-content: center !important;
}
.ak-plan-trip-actions .ak-plan-trip-btn-primary {
  border-color: #56ff95 !important;
  color: #ecffd6 !important;
  -webkit-text-fill-color: #ecffd6 !important;
}
@media (max-width: 640px) {
  .ak-plan-trip-actions .ak-plan-trip-btn,
  .ak-plan-trip-actions .ak-plan-trip-btn-primary {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* VIKRENTCAR CAR FEATURE ICON STRIP CONTRAST 2026-05-13 */
.vrccaratsdiv {
  background: rgba(255,255,255,.94) !important;
  border: 1px solid rgba(255,255,255,.85) !important;
  border-radius: 16px !important;
  padding: 10px 12px !important;
  box-shadow: 0 12px 32px rgba(0,0,0,.18) !important;
}
.vrccaratsdiv img,
.vrccaratsdiv svg,
.vrccaratsdiv i {
  opacity: 1 !important;
  filter: none !important;
}
.vrccaratsdiv .vrc-expl,
.vrccaratsdiv span,
.vrccaratsdiv li {
  color: #07110d !important;
  -webkit-text-fill-color: #07110d !important;
}

/* AUTOKEFALONIA BRANDED SOCIAL NINJA REVIEWS 2026-05-13 */
.akb-reviews {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(86,255,149,.14), transparent 30rem),
    radial-gradient(circle at 86% 18%, rgba(76,212,200,.10), transparent 34rem),
    linear-gradient(180deg, #06110d 0%, #0b1711 52%, #06110d 100%) !important;
}
.akb-reviews::before {
  content: ";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: linear-gradient(135deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.akb-reviews > * { position: relative; z-index: 1; }
.akb-reviews .akb-eyebrow {
  color: #7cff8f !important;
  border-color: rgba(86,255,149,.38) !important;
  background: rgba(86,255,149,.09) !important;
}
.akb-reviews h2,
.akb-reviews .Reviews\ from\ Google\ Business {
  color: #ecffd6 !important;
  -webkit-text-fill-color: #ecffd6 !important;
  text-shadow: 0 22px 70px rgba(0,0,0,.28);
}
.akb-reviews .wpsr-reviews-wrapper,
.akb-reviews .wpsr-container {
  color: #ecffd6 !important;
}
.akb-reviews .wpsr-business-info-wrapper {
  margin: 28px 0 24px !important;
  padding: 22px 24px !important;
  border-radius: 28px !important;
  border: 1px solid rgba(86,255,149,.24) !important;
  background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.035)) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.08) !important;
  backdrop-filter: blur(14px);
}
.akb-reviews .wpsr-business-info,
.akb-reviews .wpsr-business-info-left,
.akb-reviews .wpsr-rating-and-count {
  color: #ecffd6 !important;
}
.akb-reviews .wpsr-business-info-logo span,
.akb-reviews .wpsr-total-reviews {
  color: rgba(236,255,214,.72) !important;
  -webkit-text-fill-color: rgba(236,255,214,.72) !important;
}
.akb-reviews .wpsr-total-rating {
  color: #7cff8f !important;
  -webkit-text-fill-color: #7cff8f !important;
  font-weight: 950 !important;
  text-shadow: 0 0 26px rgba(86,255,149,.22);
}
.akb-reviews .wpsr-write-review {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px !important;
  border-radius: 999px !important;
  border: 2px solid rgba(86,255,149,.82) !important;
  background: rgba(255,255,255,.025) !important;
  color: #ecffd6 !important;
  -webkit-text-fill-color: #ecffd6 !important;
  font-weight: 950 !important;
  text-decoration: none !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 12px 30px rgba(0,0,0,.18) !important;
}
.akb-reviews .wpsr-write-review:hover {
  background: #56ff95 !important;
  color: #06110d !important;
  -webkit-text-fill-color: #06110d !important;
  box-shadow: 0 18px 42px rgba(86,255,149,.22) !important;
}
.akb-reviews .wpsr-review-template {
  position: relative;
  overflow: hidden;
  border-radius: 28px !important;
  border: 1px solid rgba(86,255,149,.22) !important;
  background:
    radial-gradient(circle at 20% 0%, rgba(86,255,149,.11), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035)) !important;
  box-shadow: 0 22px 60px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.08) !important;
  color: #ecffd6 !important;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease !important;
}
.akb-reviews .wpsr-review-template:hover {
  transform: translateY(-4px);
  border-color: rgba(86,255,149,.48) !important;
  box-shadow: 0 28px 80px rgba(0,0,0,.32), 0 0 34px rgba(86,255,149,.10) !important;
}
.akb-reviews .wpsr-reviewer-avatar {
  border: 2px solid rgba(86,255,149,.72) !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.24) !important;
}
.akb-reviews .wpsr-reviewer-name,
.akb-reviews .wpsr-reviewer-name-url {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: 950 !important;
}
.akb-reviews .wpsr-review-date {
  color: rgba(236,255,214,.58) !important;
  -webkit-text-fill-color: rgba(236,255,214,.58) !important;
}
.akb-reviews .wpsr-review-content,
.akb-reviews .wpsr-review-content p {
  color: rgba(236,255,214,.82) !important;
  -webkit-text-fill-color: rgba(236,255,214,.82) !important;
  line-height: 1.65 !important;
}
.akb-reviews .wpsr-star-filled,
.akb-reviews .wpsr-star-empty {
  color: #b7f23b !important;
}
.akb-reviews .wpsr-star-filled svg,
.akb-reviews .wpsr-star-empty svg,
.akb-reviews .wpsr-star-filled path,
.akb-reviews .wpsr-star-empty path {
  fill: #b7f23b !important;
  color: #b7f23b !important;
}
.akb-reviews .swiper-pagination-bullet,
.akb-reviews .wpsr-swiper-pagination .swiper-pagination-bullet {
  background: rgba(236,255,214,.42) !important;
  opacity: 1 !important;
}
.akb-reviews .swiper-pagination-bullet-active,
.akb-reviews .wpsr-swiper-pagination .swiper-pagination-bullet-active {
  background: #56ff95 !important;
  box-shadow: 0 0 0 6px rgba(86,255,149,.14) !important;
}
.akb-reviews .swiper-button-next,
.akb-reviews .swiper-button-prev {
  color: #56ff95 !important;
}
@media (max-width: 720px) {
  .akb-reviews .wpsr-business-info-wrapper {
    padding: 18px !important;
    border-radius: 22px !important;
  }
  .akb-reviews .wpsr-business-info {
    gap: 16px !important;
  }
  .akb-reviews .wpsr-write-review {
    width: 100%;
    margin-top: 12px;
  }
}

/* Reviews section hard background override */
section#reviews.akb-reviews {
  background-color: #06110d !important;
  background-image: radial-gradient(circle at 12% 8%, rgba(86,255,149,.14), transparent 30rem), radial-gradient(circle at 86% 18%, rgba(76,212,200,.10), transparent 34rem), linear-gradient(180deg, #06110d 0%, #0b1711 52%, #06110d 100%) !important;
}

/* REVIEWS AVATAR CLEARANCE + LIGHT BUTTON CONTRAST 2026-05-13 */
.akb-reviews .wpsr-reviews-slider-wrapper-inner,
.akb-reviews .wpsr-reviews-slider,
.akb-reviews .swiper-container,
.akb-reviews .swiper,
.akb-reviews .swiper-wrapper {
  overflow: visible !important;
}
.akb-reviews .wpsr-reviews-slider-wrapper-inner {
  padding-top: 52px !important;
}
.akb-reviews .wpsr-review-template {
  margin-top: 0 !important;
}
.akb-reviews .wpsr-write-review {
  color: #06110d !important;
  -webkit-text-fill-color: #06110d !important;
  border-color: #56ff95 !important;
  background: rgba(86,255,149,.08) !important;
}
.akb-reviews .wpsr-write-review:hover,
.akb-reviews .wpsr-write-review:focus-visible {
  color: #06110d !important;
  -webkit-text-fill-color: #06110d !important;
  background: #56ff95 !important;
}

/* HOMEPAGE CREAM CATEGORY CARD BUTTONS: READABLE BEFORE HOVER */
body.home .akb-hero + .akb-section .akb-cards-five a.bricks-button,
body.home .akb-hero + .akb-section .akb-cards-five a.brxe-button,
body.home .akb-hero + .akb-section .akb-cards-five .ak-outline-secondary,
body.home .akb-hero + .akb-section .akb-cards-five .fb-btn-outline-fade {
  color: #0b2418 !important;
  -webkit-text-fill-color: #0b2418 !important;
  border-color: rgba(11,36,24,.72) !important;
  background: rgba(11,36,24,.035) !important;
  box-shadow: inset 0 0 0 1px rgba(11,36,24,.10) !important;
}
body.home .akb-hero + .akb-section .akb-cards-five a.bricks-button:hover,
body.home .akb-hero + .akb-section .akb-cards-five a.brxe-button:hover,
body.home .akb-hero + .akb-section .akb-cards-five .ak-outline-secondary:hover,
body.home .akb-hero + .akb-section .akb-cards-five .fb-btn-outline-fade:hover {
  color: #06110d !important;
  -webkit-text-fill-color: #06110d !important;
  border-color: #35e133 !important;
}

/* SOCIAL NINJA REVIEW AVATAR DEEP OVERFLOW FIX 2026-05-13 */
section#reviews.akb-reviews,
section#reviews.akb-reviews .brxe-container,
section#reviews.akb-reviews .brxe-shortcode,
section#reviews.akb-reviews .wpsr-reviews-wrapper,
section#reviews.akb-reviews .wpsr-container,
section#reviews.akb-reviews .wpsr-row,
section#reviews.akb-reviews .wpsr-reviews-slider-wrapper-inner,
section#reviews.akb-reviews .wpsr-reviews-slider,
section#reviews.akb-reviews .swiper-container,
section#reviews.akb-reviews .swiper,
section#reviews.akb-reviews .swiper-wrapper,
section#reviews.akb-reviews .swiper-slide,
section#reviews.akb-reviews .wpsr-review-template {
  overflow: visible !important;
}
section#reviews.akb-reviews .wpsr-reviews-slider-wrapper-inner,
section#reviews.akb-reviews .wpsr-reviews-slider {
  padding-top: 76px !important;
  margin-top: -18px !important;
}
section#reviews.akb-reviews .swiper-slide {
  padding-top: 46px !important;
}
section#reviews.akb-reviews .wpsr-review-template {
  height: auto !important;
  min-height: 250px !important;
  padding-top: 54px !important;
}
section#reviews.akb-reviews .wpsr-reviewer-image {
  z-index: 5 !important;
}
section#reviews.akb-reviews .wpsr-reviewer-avatar {
  position: relative !important;
  z-index: 6 !important;
}

/* SOCIAL NINJA REVIEW AVATAR INSIDE-CARD FINAL FIX 2026-05-13 */
section#reviews.akb-reviews .wpsr-review-template {
  padding-top: 104px !important;
}
section#reviews.akb-reviews .wpsr-reviewer-image {
  top: 18px !important;
  left: 50% !important;
  right: auto !important;
  width: 86px !important;
  height: 86px !important;
  transform: translateX(-50%) !important;
  overflow: visible !important;
}
section#reviews.akb-reviews .wpsr-reviewer-avatar {
  width: 86px !important;
  height: 86px !important;
  max-width: 86px !important;
  max-height: 86px !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: 999px !important;
}
section#reviews.akb-reviews .wpsr-review-platform {
  top: 24px !important;
  z-index: 7 !important;
}

/* VIKRENTCAR DATEPICKER ARROW HOVER GREEN 2026-05-13 */
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next,
.vrcdivsearch .ui-datepicker .ui-datepicker-prev,
.vrcdivsearch .ui-datepicker .ui-datepicker-next,
#ui-datepicker-div .ui-datepicker-prev,
#ui-datepicker-div .ui-datepicker-next {
  border-radius: 12px !important;
  border-color: transparent !important;
  background: transparent !important;
  color: #ecffd6 !important;
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover,
.ui-datepicker .ui-datepicker-prev:focus,
.ui-datepicker .ui-datepicker-next:focus,
.vrcdivsearch .ui-datepicker .ui-datepicker-prev:hover,
.vrcdivsearch .ui-datepicker .ui-datepicker-next:hover,
#ui-datepicker-div .ui-datepicker-prev:hover,
#ui-datepicker-div .ui-datepicker-next:hover,
#ui-datepicker-div .ui-datepicker-prev:focus,
#ui-datepicker-div .ui-datepicker-next:focus {
  background: linear-gradient(135deg, #35e133, #b7f23b) !important;
  border-color: #35e133 !important;
  color: #06110d !important;
  box-shadow: 0 0 0 6px rgba(53,225,51,.16), 0 12px 30px rgba(53,225,51,.24) !important;
}
.ui-datepicker .ui-datepicker-prev:hover span,
.ui-datepicker .ui-datepicker-next:hover span,
#ui-datepicker-div .ui-datepicker-prev:hover span,
#ui-datepicker-div .ui-datepicker-next:hover span {
  filter: none !important;
}

/* jQuery UI adds ui-state-hover class on datepicker arrows */
#ui-datepicker-div .ui-datepicker-prev.ui-state-hover,
#ui-datepicker-div .ui-datepicker-next.ui-state-hover,
.ui-datepicker .ui-datepicker-prev.ui-state-hover,
.ui-datepicker .ui-datepicker-next.ui-state-hover,
#ui-datepicker-div .ui-datepicker-prev.ak-force-hover,
#ui-datepicker-div .ui-datepicker-next.ak-force-hover {
  background: linear-gradient(135deg, #35e133, #b7f23b) !important;
  border-color: #35e133 !important;
  color: #06110d !important;
  box-shadow: 0 0 0 6px rgba(53,225,51,.16), 0 12px 30px rgba(53,225,51,.24) !important;
}

/* VIKRENTCAR DATEPICKER ROUNDED CLIP FIX 2026-05-13 */
#ui-datepicker-div,
.ui-datepicker,
.vrcdivsearch .ui-datepicker {
  overflow: hidden !important;
  border-radius: 24px !important;
  border: 1px solid rgba(53,225,51,.38) !important;
  box-shadow: 0 22px 70px rgba(0,0,0,.38), 0 0 0 1px rgba(53,225,51,.16), 0 0 34px rgba(53,225,51,.12) !important;
}
#ui-datepicker-div .ui-datepicker-calendar,
.ui-datepicker .ui-datepicker-calendar {
  margin-bottom: 0 !important;
  border-bottom: 0 !important;
}
#ui-datepicker-div table,
#ui-datepicker-div tbody,
#ui-datepicker-div tr:last-child,
#ui-datepicker-div tr:last-child td,
.ui-datepicker table,
.ui-datepicker tbody,
.ui-datepicker tr:last-child,
.ui-datepicker tr:last-child td {
  border-bottom: 0 !important;
}
#ui-datepicker-div .ui-datepicker-buttonpane,
.ui-datepicker .ui-datepicker-buttonpane {
  border-bottom-left-radius: 24px !important;
  border-bottom-right-radius: 24px !important;
  overflow: hidden !important;
  border-bottom: 0 !important;
}
@media (max-width: 640px) {
  #ui-datepicker-div,
  .ui-datepicker,
  .vrcdivsearch .ui-datepicker {
    border-radius: 20px !important;
  }
}


/* AUTOKEFALONIA DEMO CLEANUP: HIDE COUPON + RETURNING CUSTOMER PIN 2026-05-13 */
.vrc-coupon-outer,
.vrc-enterpin-block {
  display: none !important;
}

/* AUTOKEFALONIA MOBILE HERO ORDER: TRUST CARDS AFTER BOOKING 2026-05-13 */
@media (max-width: 767px) {
  body.home #brxe-htrust01.akb-trust {
    margin-top: 22px !important;
  }
}

/* DATEPICKER MOBILE EDGE SAFETY: keep glow from clipping viewport 2026-05-13 */
@media (max-width: 640px) {
  body #ui-datepicker-div.ui-datepicker,
  body #ui-datepicker-div {
    max-width: calc(100vw - 24px) !important;
    box-sizing: border-box !important;
  }
}

/* AUTOKEFALONIA MOBILE BOOKING PRIORITY: DATES/TIMES BEFORE LOCATIONS 2026-05-13 */
@media (max-width: 767px) {
  body.home .vik-hero-wrapper form.ak-vrc-real-form,
  body.home .vik-hero-wrapper .vrcdivsearch form {
    display: flex !important;
    flex-direction: column !important;
  }
  body.home .vik-hero-wrapper .vrc-searchf-section-datetimes {
    order: 1 !important;
  }
  body.home .vik-hero-wrapper .vrc-searchf-section-locations {
    order: 2 !important;
    margin-top: 14px !important;
  }
  body.home .vik-hero-wrapper .vrc-searchf-section-categories {
    order: 3 !important;
    margin-top: 14px !important;
  }
  body.home .vik-hero-wrapper .vrcsfentrysubmit,
  body.home .vik-hero-wrapper .vrc-searchf-section-submit,
  body.home .vik-hero-wrapper button[type=submit],
  body.home .vik-hero-wrapper input[type=submit] {
    order: 4 !important;
  }
}

/* VIKRENTCAR STEP 4 CONFIRMATION: KEEP PRICE/FEE ROWS DARK FOR WHITE TEXT 2026-05-13 */
.vrc-oconfirm-summary-car-row .vrc-oconfirm-priceinfo,
.vrc-oconfirm-summary-car-row .vrc-oconfirm-feename,
.vrc-oconfirm-priceinfo,
.vrc-oconfirm-feename {
  background: transparent !important;
  color: #f5fff0 !important;
  border-color: rgba(255,255,255,.14) !important;
}
.vrc-oconfirm-summary-car-row,
.vrc-oconfirm-summary-car-cell-descr,
.vrc-oconfirm-summary-car-cell-days,
.vrc-oconfirm-summary-car-cell-net,
.vrc-oconfirm-summary-car-cell-tax,
.vrc-oconfirm-summary-car-cell-tot {
  color: #f5fff0 !important;
}
.vrc-oconfirm-summary-car-row:nth-child(even) .vrc-oconfirm-priceinfo,
.vrc-oconfirm-summary-car-row:nth-child(even) .vrc-oconfirm-feename {
  background: rgba(255,255,255,.035) !important;
}
@media (max-width: 767px) {
  .vrc-oconfirm-priceinfo,
  .vrc-oconfirm-feename {
    background: rgba(6,17,13,.78) !important;
    color: #f5fff0 !important;
  }
}

/* VIKRENTCAR SELECT DROPDOWNS: SELECTED OPTION GREEN INSTEAD OF BLUE 2026-05-13 */
.vikrentcar-obsidian-wrapper select option:checked,
.vikrentcar-obsidian-wrapper select option:hover,
.vikrentcar-obsidian-wrapper select option:focus,
.vik-hero-wrapper select option:checked,
.vik-hero-wrapper select option:hover,
.vik-hero-wrapper select option:focus,
.vrcdivsearch select option:checked,
.vrcdivsearch select option:hover,
.vrcdivsearch select option:focus,
#place option:checked,
#returnplace option:checked,
#pickuph option:checked,
#pickupm option:checked,
#releaseh option:checked,
#releasem option:checked {
  background: #35e133 !important;
  background-color: #35e133 !important;
  color: #06110d !important;
  -webkit-text-fill-color: #06110d !important;
  box-shadow: 0 0 0 999px #35e133 inset !important;
}
.vikrentcar-obsidian-wrapper select option,
.vik-hero-wrapper select option,
.vrcdivsearch select option {
  background: #0b0f0d !important;
  color: #f5fff0 !important;
}

/* VIKRENTCAR STEP 4 CONFIRMATION: REMOVE WHITE BLOCKS BEHIND WHITE TEXT 2026-05-13 */
.vrc-oconfirm-summary-car-wrapper,
.vrc-oconfirm-middlep,
.vrc-oconfirm-summary-car-row,
.vrc-oconfirm-summary-car-cell-descr,
.vrc-oconfirm-summary-car-cell-days,
.vrc-oconfirm-summary-car-cell-net,
.vrc-oconfirm-summary-car-cell-tax,
.vrc-oconfirm-summary-car-cell-tot,
.vrc-oconfirm-summary-total-row,
.vrc-oconfirm-total-block,
.vrc-oconfirm-fee,
.vrc-oconfirm-fee *:not(input):not(select):not(textarea):not(button),
.vrc-oconfirm-priceinfo,
.vrc-oconfirm-feename {
  background-color: transparent !important;
  background-image: none !important;
  color: #f5fff0 !important;
}
.vrc-oconfirm-summary-car-wrapper,
.vrc-oconfirm-middlep {
  background: rgba(6,17,13,.56) !important;
  border-color: rgba(86,255,149,.18) !important;
}
@media (max-width: 767px) {
  .vrc-oconfirm-summary-car-row,
  .vrc-oconfirm-summary-car-cell-descr,
  .vrc-oconfirm-summary-car-cell-days,
  .vrc-oconfirm-summary-car-cell-net,
  .vrc-oconfirm-summary-car-cell-tax,
  .vrc-oconfirm-summary-car-cell-tot,
  .vrc-oconfirm-fee,
  .vrc-oconfirm-priceinfo,
  .vrc-oconfirm-feename {
    background: rgba(6,17,13,.72) !important;
    color: #f5fff0 !important;
  }
}


/* FLEET PAGE ORDER: SUPPORT/INTENT CONTENT BELOW CATEGORY CARDS 2026-05-13 */
body.page-id-30 .ak-fleet-intent-after-cards {
  padding-top: clamp(1.5rem, 3vw, 3rem) !important;
}
body.page-id-30 .ak-fleet-intent-after-cards .ak-support-content {
  margin-top: 0 !important;
}

/* PRICE TABLE TAX INCLUDED NOTE 2026-05-13 */
.ak-price-tax-note {
  caption-side: bottom !important;
  padding: 10px 12px 12px !important;
  color: rgba(245,255,240,.74) !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  text-align: left !important;
  background: rgba(6,17,13,.44) !important;
}

/* VIKRENTCAR PRICE LABELS: DISPLAYED PRICES INCLUDE VAT/TAX 2026-05-13 */
.vrcsrowpricediv::after,
.vrc-showprc-price-entry-cost::after,
.vrc-showprc-total-block::after,
.vrc-oconfirm-summary-car-cell-tot::after {
  content: incl. VAT/tax;
  display: block;
  margin-top: 4px;
  color: rgba(245,255,240,.68);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.vrcsrowpricediv .car_cost,
.vrc-showprc-price-entry-cost,
.vrc-showprc-total-block {
  color: inherit;
}
.vrc-oconfirm-summary-car-row:not(.vrc-oconfirm-summary-total-row) .vrc-oconfirm-summary-car-cell-tot::after {
  content: none !important;
  display: none !important;
}


/* CONTACT PAGE - AutoKefalonia 2026 */
.ak-contact-wrap{width:min(1180px,calc(100% - 40px));margin-inline:auto}.ak-contact-hero{position:relative;overflow:hidden;padding:clamp(84px,10vw,150px) 0 clamp(56px,7vw,96px);background:radial-gradient(circle at 18% 18%,rgba(53,225,51,.28),transparent 28%),linear-gradient(135deg,#06110d 0%,#0c241a 52%,#10291f 100%);color:#f7f2df}.ak-contact-hero:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(0deg,rgba(255,255,255,.035) 1px,transparent 1px);background-size:42px 42px;mask-image:linear-gradient(to bottom,rgba(0,0,0,.7),transparent);pointer-events:none}.ak-contact-hero-inner{position:relative;z-index:1;max-width:850px}.ak-contact-eyebrow{display:inline-flex;margin:0 0 18px;padding:8px 14px;border:1px solid rgba(53,225,51,.38);border-radius:999px;background:rgba(53,225,51,.12);color:#bfffb9;font-weight:800;letter-spacing:.08em;text-transform:uppercase;font-size:.78rem}.ak-contact-title{margin:0;color:#fff;font-size:clamp(2.4rem,6vw,5.4rem);line-height:.95;letter-spacing:-.055em}.ak-contact-lead{max-width:720px;margin-top:22px;color:rgba(247,242,223,.86);font-size:clamp(1.05rem,2vw,1.28rem);line-height:1.65}.ak-contact-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:30px}.ak-contact-btn{border-radius:999px!important;font-weight:900!important;text-decoration:none!important}.ak-contact-btn-primary{background:linear-gradient(135deg,#35e133,#b5ff62)!important;color:#06110d!important;box-shadow:0 18px 42px rgba(53,225,51,.22)!important}.ak-contact-btn-secondary{background:rgba(255,255,255,.08)!important;color:#fff!important;border:1px solid rgba(255,255,255,.26)!important}.ak-contact-main{padding:clamp(54px,7vw,96px) 0;background:#f7f2df}.ak-contact-grid{display:grid;grid-template-columns:minmax(0,.92fr) minmax(360px,1.08fr);gap:28px;align-items:start}.ak-contact-info-card,.ak-contact-form-card{position:relative;overflow:hidden;border-radius:30px;border:1px solid rgba(6,17,13,.12);background:rgba(255,255,255,.72);box-shadow:0 24px 70px rgba(6,17,13,.08);padding:clamp(24px,4vw,42px)}.ak-contact-form-card{background:linear-gradient(180deg,#fffdf4,#f0ead8)}.ak-contact-section-title{margin:0 0 14px;color:#07130f;font-size:clamp(1.7rem,3vw,2.45rem);letter-spacing:-.04em}.ak-contact-text,.ak-contact-form-intro{color:rgba(6,17,13,.72);line-height:1.7}.ak-contact-mini-cards{display:grid;gap:14px;margin:28px 0}.ak-contact-mini-card{padding:18px;border-radius:20px;background:#07130f;color:#f7f2df;border:1px solid rgba(53,225,51,.18)}.ak-contact-mini-card h3{margin:0 0 6px;color:#b5ff62;font-size:1.05rem}.ak-contact-mini-card p,.ak-contact-mini-card{font-size:.98rem;line-height:1.55}.ak-contact-note{margin-top:24px;padding:18px 20px;border-radius:20px;background:rgba(53,225,51,.12);border:1px solid rgba(53,225,51,.24);color:#102018}.ak-contact-form .form-group{margin-bottom:16px}.ak-contact-form label{font-weight:800;color:#07130f;margin-bottom:7px}.ak-contact-form input,.ak-contact-form textarea{border:1px solid rgba(6,17,13,.16)!important;border-radius:16px!important;background:#fff!important;color:#07130f!important;box-shadow:none!important}.ak-contact-form input:focus,.ak-contact-form textarea:focus{border-color:#35e133!important;box-shadow:0 0 0 4px rgba(53,225,51,.16)!important}.ak-contact-form textarea{min-height:150px}.ak-contact-form button[type=submit]{width:100%;border-radius:999px!important;background:linear-gradient(135deg,#07130f,#174431)!important;color:#b5ff62!important;border:1px solid rgba(53,225,51,.24)!important;font-weight:900!important;padding:14px 22px!important}.ak-contact-faq-strip{padding:clamp(44px,6vw,78px) 0;background:#07130f;color:#f7f2df}.ak-contact-faq-inner{display:grid;grid-template-columns:1fr auto;gap:18px 28px;align-items:center}.ak-contact-faq-inner h2{margin:0;color:#fff;font-size:clamp(1.7rem,3vw,2.4rem)}.ak-contact-faq-inner p{margin:0;color:rgba(247,242,223,.78);max-width:760px;line-height:1.65}@media(max-width:900px){.ak-contact-grid,.ak-contact-faq-inner{grid-template-columns:1fr}.ak-contact-wrap{width:min(100% - 28px,1180px)}.ak-contact-hero{padding-top:72px}.ak-contact-actions .bricks-button{width:100%;justify-content:center}.ak-contact-info-card,.ak-contact-form-card{border-radius:24px;padding:22px}.ak-contact-faq-inner .bricks-button{justify-self:start}}
/* END CONTACT PAGE - AutoKefalonia 2026 */

/* AUTOKEF FINAL DATEPICKER ARROW GREEN OVERRIDE 2026-05-14
   Purpose: stop jQuery UI / theme ui-state-hover from repainting VikRentCar calendar arrows purple. */
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev,
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next,
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev.ui-state-hover,
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next.ui-state-hover,
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:hover,
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:hover,
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:focus,
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:focus,
body .ui-datepicker .ui-datepicker-header .ui-datepicker-prev.ui-state-hover,
body .ui-datepicker .ui-datepicker-header .ui-datepicker-next.ui-state-hover,
body .vrcdivsearch .ui-datepicker .ui-datepicker-header .ui-datepicker-prev.ui-state-hover,
body .vrcdivsearch .ui-datepicker .ui-datepicker-header .ui-datepicker-next.ui-state-hover {
  background: linear-gradient(135deg, #35e133 0%, #b7f23b 100%) !important;
  background-color: #35e133 !important;
  background-image: linear-gradient(135deg, #35e133 0%, #b7f23b 100%) !important;
  border: 1px solid #35e133 !important;
  color: #06110d !important;
  box-shadow: 0 0 0 6px rgba(53,225,51,.16), 0 12px 30px rgba(53,225,51,.24) !important;
  border-radius: 12px !important;
}
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev span,
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next span,
body .ui-datepicker .ui-datepicker-header .ui-datepicker-prev span,
body .ui-datepicker .ui-datepicker-header .ui-datepicker-next span {
  background-image: none !important;
  background: none !important;
  overflow: visible !important;
  text-indent: 0 !important;
  width: 0 !important;
  height: 0 !important;
  margin-top: -6px !important;
}
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev span,
body .ui-datepicker .ui-datepicker-header .ui-datepicker-prev span {
  border-top: 6px solid transparent !important;
  border-bottom: 6px solid transparent !important;
  border-right: 8px solid #06110d !important;
  border-left: 0 !important;
}
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next span,
body .ui-datepicker .ui-datepicker-header .ui-datepicker-next span {
  border-top: 6px solid transparent !important;
  border-bottom: 6px solid transparent !important;
  border-left: 8px solid #06110d !important;
  border-right: 0 !important;
}

/* AUTOKEF COMPACT GREEN DATEPICKER ARROWS 2026-05-14
   Fixes purple/oversized Prev/Next buttons in VikRentCar calendar. */
body #ui-datepicker-div .ui-datepicker-header,
body .ui-datepicker .ui-datepicker-header,
body .vrcdivsearch .ui-datepicker .ui-datepicker-header {
  position: relative !important;
  overflow: visible !important;
}
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev,
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next,
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev.ui-state-hover,
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next.ui-state-hover,
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:hover,
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:hover,
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:focus,
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:focus,
body .ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
body .ui-datepicker .ui-datepicker-header .ui-datepicker-next,
body .ui-datepicker .ui-datepicker-header .ui-datepicker-prev.ui-state-hover,
body .ui-datepicker .ui-datepicker-header .ui-datepicker-next.ui-state-hover,
body .vrcdivsearch .ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
body .vrcdivsearch .ui-datepicker .ui-datepicker-header .ui-datepicker-next,
body .vrcdivsearch .ui-datepicker .ui-datepicker-header .ui-datepicker-prev.ui-state-hover,
body .vrcdivsearch .ui-datepicker .ui-datepicker-header .ui-datepicker-next.ui-state-hover {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(53,225,51,.55) !important;
  background: linear-gradient(135deg, #35e133 0%, #b7f23b 100%) !important;
  background-color: #35e133 !important;
  background-image: linear-gradient(135deg, #35e133 0%, #b7f23b 100%) !important;
  box-shadow: 0 10px 26px rgba(53,225,51,.24) !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px !important;
  overflow: hidden !important;
  cursor: pointer !important;
  z-index: 30 !important;
}
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev,
body .ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
body .vrcdivsearch .ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
  left: 12px !important;
  right: auto !important;
}
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next,
body .ui-datepicker .ui-datepicker-header .ui-datepicker-next,
body .vrcdivsearch .ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  right: 12px !important;
  left: auto !important;
}
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev span,
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next span,
body .ui-datepicker .ui-datepicker-header .ui-datepicker-prev span,
body .ui-datepicker .ui-datepicker-header .ui-datepicker-next span,
body .vrcdivsearch .ui-datepicker .ui-datepicker-header .ui-datepicker-prev span,
body .vrcdivsearch .ui-datepicker .ui-datepicker-header .ui-datepicker-next span {
  display: block !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translate(-50%, -50%) !important;
  background: none !important;
  background-image: none !important;
  text-indent: 0 !important;
  overflow: visible !important;
  font-size: 0 !important;
  line-height: 0 !important;
}
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev span,
body .ui-datepicker .ui-datepicker-header .ui-datepicker-prev span,
body .vrcdivsearch .ui-datepicker .ui-datepicker-header .ui-datepicker-prev span {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-right: 11px solid #06110d !important;
  border-left: 0 !important;
}
body #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next span,
body .ui-datepicker .ui-datepicker-header .ui-datepicker-next span,
body .vrcdivsearch .ui-datepicker .ui-datepicker-header .ui-datepicker-next span {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-left: 11px solid #06110d !important;
  border-right: 0 !important;
}

/* AUTOKEF DATEPICKER PURPLE OVERLAY KILL 2026-05-14
   If inspector shows green but frontend appears purple, the color is coming from inner ui-icon/pseudo/overlay. */
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-prev,
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-next,
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-prev.ui-state-hover,
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-next.ui-state-hover,
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-prev.ui-state-focus,
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-next.ui-state-focus,
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-prev:hover,
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-next:hover,
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-prev:focus,
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-next:focus {
  isolation: isolate !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background: #35e133 !important;
  background-color: #35e133 !important;
  background-image: linear-gradient(135deg, #35e133 0%, #b7f23b 100%) !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
  outline: none !important;
  text-shadow: none !important;
  box-shadow: 0 10px 26px rgba(53,225,51,.26) !important;
}
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-prev *,
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-next *,
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-prev *::before,
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-next *::before,
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-prev *::after,
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-next *::after,
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-prev::before,
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-next::before,
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-prev::after,
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-next::after {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  filter: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  color: transparent !important;
}
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-prev .ui-icon,
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-next .ui-icon {
  display: block !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 0 !important;
  height: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 0 !important;
  overflow: visible !important;
  text-indent: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
}
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-prev .ui-icon {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-right: 11px solid #06110d !important;
  border-left: 0 !important;
}
html body #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-next .ui-icon {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-left: 11px solid #06110d !important;
  border-right: 0 !important;
}

/* AUTOKEF MOBILE SEARCH RESULT PRICE BEFORE SPECS 2026-05-14 */
@media (max-width: 767px) {
  .car_result .vrc-car-result-inner > .vrc-car-lastblock {
    width: auto !important;
    margin: 16px 0 14px !important;
    padding: 14px 14px 16px !important;
    border: 1px solid rgba(53,225,51,.24) !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, rgba(7,17,13,.96), rgba(16,50,36,.94)) !important;
    box-shadow: 0 16px 38px rgba(0,0,0,.18) !important;
    text-align: left !important;
  }
  .car_result .vrc-car-result-inner > .vrc-car-lastblock .vrc-car-price,
  .car_result .vrc-car-result-inner > .vrc-car-lastblock .vrcsrowpricediv,
  .car_result .vrc-car-result-inner > .vrc-car-lastblock .vrc-car-bookingbtn,
  .car_result .vrc-car-result-inner > .vrc-car-lastblock .vrc-car-bookingbtn form,
  .car_result .vrc-car-result-inner > .vrc-car-lastblock .vrc-car-bookingbtn input[type="submit"],
  .car_result .vrc-car-result-inner > .vrc-car-lastblock .vrc-car-bookingbtn button {
    width: 100% !important;
  }
  .car_result .vrc-car-result-inner > .vrc-car-lastblock .vrcstartfrom {
    display: block !important;
    margin: 0 0 4px !important;
    color: rgba(236,255,214,.74) !important;
    -webkit-text-fill-color: rgba(236,255,214,.74) !important;
    font-size: .78rem !important;
    font-weight: 800 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
  }
  .car_result .vrc-car-result-inner > .vrc-car-lastblock .car_cost,
  .car_result .vrc-car-result-inner > .vrc-car-lastblock .vrc_currency,
  .car_result .vrc-car-result-inner > .vrc-car-lastblock .vrc_price {
    color: #b7f23b !important;
    -webkit-text-fill-color: #b7f23b !important;
  }
  .car_result .vrc-car-result-inner > .vrc-car-lastblock .car_cost {
    font-size: 1.9rem !important;
    line-height: 1 !important;
    font-weight: 950 !important;
  }
  .car_result .vrc-car-result-inner > .vrc-car-lastblock .vrc-car-bookingbtn {
    margin-top: 12px !important;
  }
  .car_result .vrc-car-result-inner > .vrc-car-result-characteristics {
    margin-top: 8px !important;
  }
}

/* AUTOKEF VRC STICKY HEADER STEP BAR OFFSET 2026-05-14
   The new sticky header overlaps the VikRentCar booking progress bar. */
.vrcstepsbarcont {
  margin-top: clamp(72px, 8vw, 112px) !important;
  scroll-margin-top: 150px !important;
}
@media (max-width: 767px) {
  .vrcstepsbarcont {
    margin-top: 88px !important;
  }
}

/* AUTOKEF HOME HERO STICKY HEADER OFFSET 2026-05-14
   The fixed/sticky header was slightly covering the first homepage hero content. */
body.home #brxe-hsec01.akb-hero {
  padding-top: clamp(128px, 11vw, 168px) !important;
}
@media (max-width: 767px) {
  body.home #brxe-hsec01.akb-hero {
    padding-top: 116px !important;
  }
}
