/* ================================================================
   AutoShkodra.com — Main Stylesheet
   ================================================================ */

:root {
    --red:      #e63946;
    --red-dark: #c42d39;
    --dark:     #1a1a2e;
    --dark-2:   #16213e;
    --mid:      #2a2a3e;
    --light:    #f8f9fb;
    --text:     #222233;
    --muted:    #6b7280;
    --border:   #e5e7eb;
    --white:    #ffffff;
    --font:     'Barlow', sans-serif;
    --font-cond:'Barlow Condensed', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ----------------------------------------------------------------
   TOP BAR
---------------------------------------------------------------- */
.top-bar {
    background: var(--dark);
    color: rgba(255,255,255,.7);
    font-size: 12.5px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: rgba(255,255,255,.7); transition: color .15s; }
.top-bar a:hover { color: #fff; }
.top-bar-left { display: flex; gap: 20px; }
.top-bar-left span i { margin-right: 5px; }
.top-bar-right { display: flex; align-items: center; gap: 18px; }
.top-bar-right .signin {
    background: var(--red);
    color: #fff;
    padding: 4px 14px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 12px;
    transition: background .15s;
}
.top-bar-right .signin:hover { background: var(--red-dark); color: #fff; }

/* ----------------------------------------------------------------
   HEADER
---------------------------------------------------------------- */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner { display: flex; align-items: center; height: 70px; gap: 24px; }
.site-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.site-logo span { font-family: var(--font-cond); font-size: 26px; font-weight: 800; letter-spacing: 1px; color: var(--text); }
.site-logo span em { color: var(--red); font-style: normal; }

.header-search { flex: 1; max-width: 480px; }
.header-search form { display: flex; }
.header-search input {
    flex: 1;
    padding: 9px 14px;
    border: 1.5px solid var(--border);
    border-right: 0;
    border-radius: 4px 0 0 4px;
    font-family: var(--font);
    font-size: 14px;
    outline: none;
    background: var(--light);
    transition: border-color .15s;
}
.header-search input:focus { border-color: var(--red); background: #fff; }
.header-search button {
    padding: 9px 16px;
    background: var(--red);
    border: 1.5px solid var(--red);
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background .15s;
}
.header-search button:hover { background: var(--red-dark); }

.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.btn-file-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: .3px;
    transition: background .15s, transform .1s;
    white-space: nowrap;
}
.btn-file-service:hover { background: var(--red); color: #fff; transform: translateY(-1px); }
.menu-toggle {
    display: none;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    padding: 8px 11px;
    cursor: pointer;
    color: var(--text);
    font-size: 18px;
}

/* ----------------------------------------------------------------
   NAVIGATION
---------------------------------------------------------------- */
.main-nav { background: var(--dark-2); border-bottom: 2px solid var(--red); }
.nav-list { display: flex; list-style: none; margin: 0; padding: 0; }
.nav-list > li { position: relative; }
.nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 14px 18px;
    color: rgba(255,255,255,.88);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .3px;
    text-transform: uppercase;
    transition: color .15s, background .15s;
    white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li:hover > a { color: #fff; background: rgba(255,255,255,.08); }
.nav-list > li > a.nav-highlight { color: #fff; background: var(--red); }
.nav-list > li > a.nav-highlight:hover { background: var(--red-dark); }
.nav-list > li > a .fa-chevron-down { font-size: 9px; opacity: .6; }

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 2px solid var(--red);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    min-width: 220px;
    z-index: 999;
    border-radius: 0 0 6px 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-list > li:hover .nav-dropdown { display: block; }
.nav-dropdown li a {
    display: block;
    padding: 10px 18px;
    font-size: 13.5px;
    color: var(--text);
    border-bottom: 1px solid #f3f4f6;
    transition: background .12s, color .12s;
}
.nav-dropdown li:last-child a { border-bottom: 0; }
.nav-dropdown li a:hover { background: var(--light); color: var(--red); }

.nav-list > li.active > a { color: #fff; }

.mobile-nav { display: none; background: var(--dark-2); padding: 10px 0; }
.mobile-nav a {
    display: block;
    padding: 10px 20px;
    color: rgba(255,255,255,.85);
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-nav a:hover { background: rgba(255,255,255,.06); color: #fff; }
.mobile-nav a.highlight { color: var(--red); }

/* ----------------------------------------------------------------
   SECTION COMMONS
---------------------------------------------------------------- */
section { padding: 60px 0; }
.section-title {
    font-family: var(--font-cond);
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 8px;
    letter-spacing: -.3px;
}
.section-sub { font-size: 14px; color: var(--muted); margin: 0 0 36px; }
.section-heading { text-align: center; margin-bottom: 40px; }

/* Buttons */
.btn-primary-as {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    padding: 13px 26px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .3px;
    border: 0;
    cursor: pointer;
    transition: background .15s, transform .1s;
    font-family: var(--font);
}
.btn-primary-as:hover { background: var(--red-dark); color: #fff; transform: translateY(-1px); }
.btn-secondary-as {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.3);
    color: #fff;
    padding: 13px 26px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: background .15s;
}
.btn-secondary-as:hover { background: rgba(255,255,255,.18); color: #fff; }

/* Page hero (inner pages) */
.page-hero {
    background: linear-gradient(120deg, var(--dark) 0%, var(--dark-2) 50%, var(--mid) 100%);
    padding: 56px 0 48px;
}
.page-hero h1 {
    font-family: var(--font-cond);
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -.5px;
}
.page-hero p { color: rgba(255,255,255,.65); font-size: 16px; margin: 0; max-width: 600px; }
.page-hero .hero-tag {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 14px;
}

/* ----------------------------------------------------------------
   HERO SLIDER (homepage)
---------------------------------------------------------------- */
.hero-slider { background: var(--dark); overflow: hidden; }
.hero-slide {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10,10,20,.85) 0%, rgba(10,10,20,.4) 60%, transparent 100%);
    z-index: 1;
}
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}
.swiper-slide-active .hero-slide-bg { transform: scale(1.06); }
.hero-slide-1 .hero-slide-bg { background: linear-gradient(135deg, #0f0f1a 0%, #1a1a3e 40%, #0d1b2a 100%); }
.hero-slide-2 .hero-slide-bg { background: linear-gradient(135deg, #1a0a0a 0%, #3e0d0d 40%, #1a0a0a 100%); }
.hero-slide-3 .hero-slide-bg { background: linear-gradient(135deg, #0a1a0f 0%, #0d2e1b 40%, #0a1a0f 100%); }

.hero-content { position: relative; z-index: 2; padding: 0 0 0 60px; max-width: 620px; }
.hero-tag {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 16px;
}
.hero-title {
    font-family: var(--font-cond);
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin: 0 0 16px;
    letter-spacing: -.5px;
}
.hero-title span { color: var(--red); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.6; margin: 0 0 28px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.swiper-pagination-bullet { width: 10px; height: 10px; background: rgba(255,255,255,.4); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--red); }
.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    background: rgba(0,0,0,.3);
    width: 44px; height: 44px;
    border-radius: 50%;
    transition: background .15s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover { background: var(--red); }
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 16px; font-weight: 700; }

/* ----------------------------------------------------------------
   PARTNER CARDS
---------------------------------------------------------------- */
.partner-cards { background: var(--dark); padding: 0; }
.partner-cards .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.partner-card {
    padding: 36px 32px;
    border-right: 1px solid rgba(255,255,255,.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transition: background .2s;
}
.partner-card:last-child { border-right: 0; }
.partner-card:hover { background: rgba(255,255,255,.04); }
.partner-card-icon {
    width: 52px; height: 52px;
    background: rgba(230,57,70,.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    font-size: 22px;
    flex-shrink: 0;
}
.partner-card h3 { font-family: var(--font-cond); font-size: 20px; font-weight: 700; color: #fff; margin: 0; }
.partner-card p { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.6; margin: 0; flex: 1; }
.partner-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .3px;
    text-transform: uppercase;
    transition: gap .15s;
}
.partner-card-link:hover { gap: 10px; color: var(--red); }
.partner-card-link svg { width: 14px; }

/* ----------------------------------------------------------------
   INTRO GRID
---------------------------------------------------------------- */
.intro-section { background: var(--white); padding: 56px 0; }
.intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.intro-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}
.intro-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-3px); }
.intro-card-img {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.intro-card-img .card-icon { font-size: 64px; color: rgba(255,255,255,.15); }
.intro-card-img .card-label {
    position: absolute;
    bottom: 14px; left: 14px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
}
.intro-card-img-1 { background: linear-gradient(135deg, #0f0f2a 0%, #1a1a4e 100%); }
.intro-card-img-2 { background: linear-gradient(135deg, #1a0808 0%, #3e1010 100%); }
.intro-card-img-3 { background: linear-gradient(135deg, #0a1a14 0%, #0f3020 100%); }
.intro-card-body { padding: 22px 24px; }
.intro-card-body h3 { font-family: var(--font-cond); font-size: 20px; font-weight: 700; margin: 0 0 10px; color: var(--text); }
.intro-card-body p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin: 0 0 16px; }
.readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .3px;
    transition: gap .15s;
}
.readmore:hover { gap: 10px; color: var(--red); }

/* ----------------------------------------------------------------
   BRANDS
---------------------------------------------------------------- */
.brands-section { background: var(--light); padding: 48px 0; }
.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    align-items: center;
}
.brand-cell {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: box-shadow .2s, border-color .2s;
}
.brand-cell:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); border-color: var(--red); }
.brand-cell .brand-icon { font-size: 28px; color: var(--dark); }
.brand-cell span { font-size: 11px; font-weight: 700; color: var(--muted); text-align: center; text-transform: uppercase; letter-spacing: .5px; }

/* ----------------------------------------------------------------
   SERVICES GRID
---------------------------------------------------------------- */
.services-section { background: var(--white); padding: 60px 0; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s, border-color .2s;
}
.service-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-3px); border-color: var(--red); }
.service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform .2s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    font-size: 20px;
    flex-shrink: 0;
}
.service-card h4 { font-family: var(--font-cond); font-size: 17px; font-weight: 700; margin: 0; color: var(--text); }
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; flex: 1; }
.service-tag {
    display: inline-block;
    background: #fef3f3;
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 3px;
    border: 1px solid #fdd;
    align-self: flex-start;
}

/* ----------------------------------------------------------------
   COMPLETE TUNING SOLUTION
---------------------------------------------------------------- */
.solution-section { background: var(--light); padding: 60px 0; }
.solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.solution-cell {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: box-shadow .2s;
}
.solution-cell:hover { box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.solution-cell-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    font-size: 22px;
    flex-shrink: 0;
}
.solution-cell-text h4 { font-family: var(--font-cond); font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--text); }
.solution-cell-text p { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ----------------------------------------------------------------
   VEHICLE CATEGORIES
---------------------------------------------------------------- */
.vehicles-section { background: var(--dark); padding: 60px 0; }
.vehicles-section .section-title { color: #fff; }
.vehicles-section .section-sub { color: rgba(255,255,255,.55); }
.vehicles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.vehicle-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
    display: block;
}
.vehicle-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .4s ease;
}
.vehicle-card:hover .vehicle-card-bg { transform: scale(1.08); }
.vehicle-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
    transition: background .3s;
}
.vehicle-card:hover::after { background: linear-gradient(0deg, rgba(230,57,70,.6) 0%, rgba(0,0,0,.3) 60%, transparent 100%); }
.vehicle-bg-car   { background: linear-gradient(135deg, #1a1a2e, #2d2d5e); }
.vehicle-bg-truck { background: linear-gradient(135deg, #1a0f08, #3e2010); }
.vehicle-bg-agri  { background: linear-gradient(135deg, #0a1a0f, #1a3a1a); }
.vehicle-bg-marine{ background: linear-gradient(135deg, #080f1a, #102030); }
.vehicle-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 52px;
    color: rgba(255,255,255,.15);
    z-index: 1;
}
.vehicle-card-name {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 14px 16px;
    font-family: var(--font-cond);
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .3px;
}

/* ----------------------------------------------------------------
   VEHICLE DATABASE
---------------------------------------------------------------- */
.vdb-section { background: var(--white); padding: 64px 0 0; }
.vdb-brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}
.vdb-brand {
    display: block;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .15s, box-shadow .15s, transform .15s;
    cursor: pointer;
}
.vdb-brand:hover,
.vdb-brand.active {
    border-color: var(--red);
    box-shadow: 0 4px 16px rgba(230,57,70,.15);
    transform: translateY(-2px);
    text-decoration: none;
}
.vdb-brand.active { background: #fff5f5; }
.vdb-brand-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    gap: 8px;
    min-height: 80px;
    text-align: center;
}
.vdb-brand-inner img { width: 56px; height: 40px; object-fit: contain; border-radius: 4px; }
.vdb-brand-inner .vdb-icon { font-size: 26px; color: var(--muted); }
.vdb-brand-inner span { font-size: 11px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .3px; line-height: 1.3; }
.vdb-brand:hover .vdb-brand-inner .vdb-icon,
.vdb-brand.active .vdb-brand-inner .vdb-icon { color: var(--red); }
.vdb-brand:hover .vdb-brand-inner span,
.vdb-brand.active .vdb-brand-inner span { color: var(--red); }

.vdb-search-panel { background: var(--dark-2); padding: 52px 0; margin-top: 40px; }
.vdb-form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 12px;
    align-items: end;
    max-width: 900px;
    margin: 0 auto 32px;
}
.vdb-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px;
}
.vdb-select {
    width: 100%;
    padding: 11px 14px;
    background: #fff;
    border: 0;
    border-radius: 6px;
    font-family: var(--font);
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    outline: none;
}
.vdb-select:disabled { opacity: .5; cursor: default; }
.vdb-btn {
    width: 100%;
    padding: 11px 18px;
    background: var(--red);
    color: #fff;
    border: 0;
    border-radius: 6px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}
.vdb-btn:hover { background: var(--red-dark); }

.vdb-results {
    display: none;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    padding: 28px;
    max-width: 900px;
    margin: 0 auto;
}
.vdb-graph {
    display: none;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    padding: 28px;
    max-width: 900px;
    margin: 24px auto 0;
}
.vdb-table { width: 100%; border-collapse: collapse; }
.vdb-table th {
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: rgba(255,255,255,.5);
    border-bottom: 1px solid rgba(255,255,255,.1);
    text-align: center;
}
.vdb-table td {
    padding: 12px 14px;
    font-size: 15px;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.vdb-table td:first-child { text-align: left; }
.vdb-table .diff-col { color: var(--red); font-weight: 800; font-size: 18px; }
.vdb-table tr:last-child td { border-bottom: 0; }
.vdb-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 20px;
}
.vdb-spec {
    background: rgba(255,255,255,.05);
    border-radius: 6px;
    padding: 10px 14px;
}
.vdb-spec-label { font-size: 11px; color: rgba(255,255,255,.4); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 3px; }
.vdb-spec-value { font-size: 14px; color: #fff; font-weight: 600; }

/* ----------------------------------------------------------------
   HOW IT WORKS
---------------------------------------------------------------- */
.howitworks-section { background: var(--white); padding: 60px 0; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}
.steps-grid::before {
    content: "";
    position: absolute;
    top: 26px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--red) 0, var(--red) 8px, transparent 8px, transparent 16px);
    z-index: 0;
}
.step-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; position: relative; z-index: 1; }
.step-num {
    width: 52px; height: 52px;
    background: var(--red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-cond);
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--red);
}
.step-item h4 { font-family: var(--font-cond); font-size: 16px; font-weight: 700; margin: 0; color: var(--text); }
.step-item p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ----------------------------------------------------------------
   CTA BANNER
---------------------------------------------------------------- */
.cta-banner {
    background: linear-gradient(120deg, var(--dark) 0%, var(--dark-2) 40%, #0d1b2a 100%);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(230,57,70,.03) 0, rgba(230,57,70,.03) 1px, transparent 1px, transparent 50px);
}
.cta-banner-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner-text h2 { font-family: var(--font-cond); font-size: 36px; font-weight: 800; color: #fff; margin: 0 0 8px; letter-spacing: -.3px; }
.cta-banner-text h2 span { color: var(--red); }
.cta-banner-text p { color: rgba(255,255,255,.65); font-size: 15px; margin: 0; line-height: 1.55; }
.cta-banner-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ----------------------------------------------------------------
   OPENING HOURS TABLE
---------------------------------------------------------------- */
tr.open  { border-right: 5px solid #22c55e; }
tr.closed{ border-right: 5px solid var(--red); }
tr.closed td.time { color: var(--red); }
tr.today { background: rgba(230,57,70,.06); font-weight: 600; }
.today-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    padding: 1px 7px;
    border-radius: 3px;
    margin-left: 6px;
    font-weight: 700;
    vertical-align: middle;
}

/* ----------------------------------------------------------------
   CONTACT FORM
---------------------------------------------------------------- */
.contact-form .form-group label { font-weight: 600; font-size: 13px; color: var(--muted); margin-bottom: 5px; }
.contact-form .form-control {
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-family: var(--font);
    font-size: 14px;
    transition: border-color .15s;
}
.contact-form .form-control:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(230,57,70,.1); outline: none; }
.flash-ok  { background: #e7f6ed; color: #1b5e38; border: 1px solid #b7e4c7; border-radius: 6px; padding: 11px 16px; margin-bottom: 20px; font-size: 13.5px; }
.flash-err { background: #fde8ea; color: #921d27; border: 1px solid #f5bec3; border-radius: 6px; padding: 11px 16px; margin-bottom: 20px; font-size: 13.5px; }

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); }
.footer-top { padding: 52px 0 36px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand-name { font-family: var(--font-cond); font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 12px; letter-spacing: .5px; }
.footer-brand-name em { color: var(--red); font-style: normal; }
.footer-brand p { font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,.55); margin: 0 0 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: 14px;
    transition: background .15s, color .15s;
}
.footer-social a:hover { background: var(--red); color: #fff; }
.footer-col h4 {
    font-family: var(--font-cond);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,.55); font-size: 13.5px; transition: color .15s, padding-left .15s; display: block; }
.footer-col ul li a:hover { color: var(--red); padding-left: 4px; }
.footer-col p { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.7; margin: 0 0 8px; }
.footer-col a { color: rgba(255,255,255,.55); }
.footer-col a:hover { color: var(--red); }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,.35); }
.footer-payments { display: flex; align-items: center; gap: 10px; }
.footer-payments span { font-size: 12px; color: rgba(255,255,255,.35); white-space: nowrap; }
.payment-badge { background: rgba(255,255,255,.08); border-radius: 4px; padding: 4px 10px; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .5px; }

/* ----------------------------------------------------------------
   INNER PAGE CONTENT
---------------------------------------------------------------- */
.content-section { padding: 56px 0; }
.content-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 24px;
    transition: box-shadow .2s;
}
.content-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.content-card h3 { font-family: var(--font-cond); font-size: 22px; font-weight: 700; margin: 0 0 10px; color: var(--text); }
.content-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

.tool-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
    transition: box-shadow .2s, border-color .2s;
}
.tool-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); border-color: var(--red); }
.tool-card-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    font-size: 24px;
    flex-shrink: 0;
}
.tool-card h4 { font-family: var(--font-cond); font-size: 20px; font-weight: 700; margin: 0 0 8px; color: var(--text); }
.tool-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin: 0; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    padding: 18px 22px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: background .15s;
}
.faq-question:hover { background: var(--light); }
.faq-question i { font-size: 12px; color: var(--muted); transition: transform .2s; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    display: none;
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    background: var(--white);
}
.faq-item.open .faq-answer { display: block; }

/* ----------------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 1100px) {
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .partner-cards .container { grid-template-columns: 1fr; }
    .partner-card { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
    .intro-grid { grid-template-columns: 1fr; }
    .solution-grid { grid-template-columns: 1fr; }
    .cta-banner-inner { flex-direction: column; text-align: center; }
    .cta-banner-btns { justify-content: center; }
    .hero-content { padding: 0 20px; }
    .hero-title { font-size: 36px; }
    .vdb-form-grid { grid-template-columns: 1fr 1fr; }
    .vdb-form-grid > div:last-child { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .top-bar-left { display: none; }
    .header-search { display: none; }
    .main-nav { display: none; }
    .menu-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-slide { height: 320px; }
    .hero-title { font-size: 30px; }
    .hero-sub { font-size: 14px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section-title { font-size: 26px; }
    .steps-grid { grid-template-columns: 1fr; }
    .vehicles-grid { grid-template-columns: 1fr 1fr; }
    .vdb-brand-grid { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); }
    .vdb-form-grid { grid-template-columns: 1fr; }
    .vdb-spec-grid { grid-template-columns: 1fr; }
}
