/* ================================================================
   AutoShkodra.com — Main Stylesheet
   Fully responsive: mobile 320px → tablet 768px → desktop 1200px
   ================================================================ */

: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;
}

/* ----------------------------------------------------------------
   RESET & BASE — overflow-x hidden is the key fix for white space
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevents horizontal scroll causing white gap */
}

body {
    font-family: var(--font);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden; /* Belt and braces */
    width: 100%;
    max-width: 100%;
}

a { text-decoration: none; color: inherit; }
a:hover { text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ----------------------------------------------------------------
   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);
    width: 100%;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.top-bar a { color: rgba(255,255,255,.7); transition: color .15s; }
.top-bar a:hover { color: #fff; }
.top-bar-left { display: flex; gap: 16px; flex-wrap: wrap; }
.top-bar-left span i { margin-right: 5px; }
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.top-bar-right .signin {
    background: var(--red);
    color: #fff;
    padding: 4px 12px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 12px;
    transition: background .15s;
    white-space: nowrap;
}
.top-bar-right .signin:hover { background: var(--red-dark); color: #fff; }

/* ----------------------------------------------------------------
   LANGUAGE SWITCHER
---------------------------------------------------------------- */
.lang-switcher { position: relative; flex-shrink: 0; }
.lang-switcher-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 4px;
    padding: 4px 10px;
    color: rgba(255,255,255,.9);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s;
    font-family: var(--font);
    letter-spacing: .5px;
    white-space: nowrap;
}
.lang-switcher-btn:hover { background: rgba(255,255,255,.18); }
.lang-switcher-btn i { font-size: 8px; opacity: .7; }

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    min-width: 160px;
    z-index: 9999;
    overflow: hidden;
}
.lang-switcher:hover .lang-dropdown,
.lang-switcher.open .lang-dropdown { display: block; }

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    transition: background .12s;
    border-bottom: 1px solid #f3f4f6;
    white-space: nowrap;
}
.lang-option:last-child { border-bottom: 0; }
.lang-option:hover { background: var(--light); color: var(--red); text-decoration: none; }
.lang-option.active { color: var(--red); background: #fff5f5; }
.lang-flag-img {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,.08);
}

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

.header-search { flex: 1; min-width: 0; max-width: 440px; }
.header-search form { display: flex; }
.header-search input {
    flex: 1;
    min-width: 0;
    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 14px;
    background: var(--red);
    border: 1.5px solid var(--red);
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background .15s;
    flex-shrink: 0;
}
.header-search button:hover { background: var(--red-dark); }

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }
.btn-file-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .3px;
    transition: background .15s;
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-file-service:hover { background: var(--red); color: #fff; }
.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;
    flex-shrink: 0;
}

/* ----------------------------------------------------------------
   NAVIGATION
---------------------------------------------------------------- */
.main-nav { background: var(--dark-2); border-bottom: 2px solid var(--red); width: 100%; max-width: 100vw; overflow: hidden; }
.nav-list {
    display: flex;
    list-style: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}
.nav-list::-webkit-scrollbar { display: none; }
.nav-list > li { position: relative; flex-shrink: 0; }
.nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 13px 15px;
    color: rgba(255,255,255,.88);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2px;
    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: 8px; 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: 210px;
    z-index: 999;
    border-radius: 0 0 6px 6px;
    list-style: none;
}
.nav-list > li:hover .nav-dropdown { display: block; }
.nav-dropdown li a {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--text);
    border-bottom: 1px solid #f3f4f6;
    transition: background .12s, color .12s;
    white-space: nowrap;
}
.nav-dropdown li:last-child a { border-bottom: 0; }
.nav-dropdown li a:hover { background: var(--light); color: var(--red); }

.mobile-nav {
    display: none;
    background: var(--dark-2);
    padding: 8px 0;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    box-sizing: border-box;
}
.mobile-nav a {
    display: block;
    padding: 11px 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); }
.mobile-lang-bar {
    padding: 12px 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.mobile-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s;
}
.mobile-lang-btn.current { background: var(--red); color: #fff; }
.mobile-lang-btn.other { background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); }
.mobile-lang-btn.other:hover { background: rgba(255,255,255,.15); color: #fff; }

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

/* Buttons */
.btn-primary-as {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    padding: 12px 22px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .3px;
    border: 0;
    cursor: pointer;
    transition: background .15s;
    font-family: var(--font);
    white-space: nowrap;
}
.btn-primary-as:hover { background: var(--red-dark); color: #fff; }
.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: 12px 22px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: background .15s;
    white-space: nowrap;
}
.btn-secondary-as:hover { background: rgba(255,255,255,.18); color: #fff; }

/* Page hero */
.page-hero {
    background: linear-gradient(120deg, var(--dark) 0%, var(--dark-2) 50%, var(--mid) 100%);
    padding: 48px 0 40px;
}
.page-hero h1 {
    font-family: var(--font-cond);
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}
.page-hero p { color: rgba(255,255,255,.65); font-size: 15px; margin: 0; line-height: 1.6; }
.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
---------------------------------------------------------------- */
.hero-slider { background: var(--dark); overflow: hidden; width: 100%; max-width: 100vw; }
.swiper-container { width: 100%; max-width: 100%; overflow: hidden; }
.hero-slide {
    position: relative;
    height: 460px;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10,10,20,.88) 0%, rgba(10,10,20,.5) 55%, 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.05); }
.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, #1a0808 0%, #3e0d0d 40%, #1a0808 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 20px 0 48px;
    max-width: 640px;
    width: 100%;
}
.hero-tag {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 14px;
}
.hero-title {
    font-family: var(--font-cond);
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin: 0 0 14px;
}
.hero-title span { color: var(--red); }
.hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,.75);
    line-height: 1.6;
    margin: 0 0 24px;
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.swiper-pagination-bullet { width: 9px; height: 9px; 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: 40px; height: 40px;
    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: 14px; font-weight: 700; }
/* Hide arrows on small mobile — they push the layout */
@media (max-width: 480px) {
    .swiper-button-prev, .swiper-button-next { display: none; }
}

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

/* ----------------------------------------------------------------
   INTRO GRID
---------------------------------------------------------------- */
.intro-section { background: var(--white); padding: 52px 0; }
.intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.intro-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}
.intro-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,.09); transform: translateY(-2px); }
.intro-card-img {
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.intro-card-img .card-icon { font-size: 56px; color: rgba(255,255,255,.15); }
.intro-card-img .card-label {
    position: absolute;
    bottom: 12px; left: 12px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 9px;
    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: 20px 22px; }
.intro-card-body h3 { font-family: var(--font-cond); font-size: 18px; font-weight: 700; margin: 0 0 8px; color: var(--text); }
.intro-card-body p { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0 0 14px; }
.readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .3px;
    transition: gap .15s;
}
.readmore:hover { gap: 10px; color: var(--red); }

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

/* ----------------------------------------------------------------
   SERVICES GRID
---------------------------------------------------------------- */
.services-section { background: var(--white); padding: 56px 0; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s, border-color .2s;
}
.service-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.09); transform: translateY(-2px); 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: 46px; height: 46px;
    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: 18px;
    flex-shrink: 0;
}
.service-card h4 { font-family: var(--font-cond); font-size: 16px; font-weight: 700; margin: 0; color: var(--text); }
.service-card p { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin: 0; flex: 1; }
.service-tag {
    display: inline-block;
    background: #fef3f3;
    color: var(--red);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    border: 1px solid #fdd;
    align-self: flex-start;
}

/* ----------------------------------------------------------------
   SOLUTION GRID
---------------------------------------------------------------- */
.solution-section { background: var(--light); padding: 56px 0; }
.solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.solution-cell {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: box-shadow .2s;
}
.solution-cell:hover { box-shadow: 0 3px 16px rgba(0,0,0,.06); }
.solution-cell-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;
}
.solution-cell-text h4 { font-family: var(--font-cond); font-size: 16px; font-weight: 700; margin: 0 0 6px; color: var(--text); }
.solution-cell-text p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ----------------------------------------------------------------
   VEHICLE TYPES
---------------------------------------------------------------- */
.vehicles-section { background: var(--dark); padding: 56px 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: 14px; }
.vehicle-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 180px;
    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.07); }
.vehicle-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
    transition: background .3s;
}
.vehicle-card:hover::after { background: linear-gradient(0deg, rgba(230,57,70,.6) 0%, rgba(0,0,0,.2) 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: 44px;
    color: rgba(255,255,255,.15);
    z-index: 1;
}
.vehicle-card-name {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 12px 14px;
    font-family: var(--font-cond);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

/* ----------------------------------------------------------------
   HOW IT WORKS
---------------------------------------------------------------- */
.howitworks-section { background: var(--white); padding: 56px 0; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
}
.steps-grid::before {
    content: "";
    position: absolute;
    top: 25px;
    left: calc(12.5% + 18px);
    right: calc(12.5% + 18px);
    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: 12px; position: relative; z-index: 1; }
.step-num {
    width: 48px; height: 48px;
    background: var(--red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-cond);
    font-size: 18px;
    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: 15px; font-weight: 700; margin: 0; color: var(--text); }
.step-item p { font-size: 12.5px; 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: 52px 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: 28px; flex-wrap: wrap; }
.cta-banner-text h2 { font-family: var(--font-cond); font-size: 32px; font-weight: 800; color: #fff; margin: 0 0 8px; }
.cta-banner-text h2 span { color: var(--red); }
.cta-banner-text p { color: rgba(255,255,255,.65); font-size: 14px; margin: 0; line-height: 1.55; }
.cta-banner-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ----------------------------------------------------------------
   OPENING HOURS TABLE
---------------------------------------------------------------- */
tr.open  { }
tr.closed td.time { color: var(--red); }
tr.today { background: rgba(230,57,70,.05); }
tr.today td.day { font-weight: 700; color: var(--red); }
td.day { padding: 7px 0; font-weight: 600; font-size: 13.5px; }
td.time { padding: 7px 0; color: var(--muted); text-align: right; font-size: 13.5px; }
tr { border-bottom: 1px solid var(--border); }
.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 { margin-bottom: 16px; }
.contact-form .form-group label { display: block; font-weight: 600; font-size: 13px; color: var(--muted); margin-bottom: 5px; }
.contact-form .form-control {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    padding: 10px 14px;
    font-family: var(--font);
    font-size: 14px;
    background: var(--white);
    transition: border-color .15s;
    outline: none;
}
.contact-form .form-control:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(230,57,70,.08); }
.flash-ok  { background: #e7f6ed; color: #1b5e38; border: 1px solid #b7e4c7; border-radius: 6px; padding: 11px 16px; margin-bottom: 16px; font-size: 13.5px; }
.flash-err { background: #fde8ea; color: #921d27; border: 1px solid #f5bec3; border-radius: 6px; padding: 11px 16px; margin-bottom: 16px; font-size: 13.5px; }

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); }
.footer-top { padding: 48px 0 32px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand-name { font-family: var(--font-cond); font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: .5px; }
.footer-brand-name em { color: var(--red); font-style: normal; }
.footer-brand p { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.55); margin: 0 0 16px; }
.footer-social { display: flex; gap: 9px; flex-wrap: wrap; }
.footer-social a {
    width: 34px; height: 34px;
    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: 13px;
    transition: background .15s, color .15s;
    flex-shrink: 0;
}
.footer-social a:hover { background: var(--red); color: #fff; }
.footer-col h4 {
    font-family: var(--font-cond);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.55); font-size: 13px; 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: 13px; 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: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-payments { display: flex; align-items: center; gap: 8px; }
.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: 52px 0; }
.content-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
    margin-bottom: 20px;
    transition: box-shadow .2s;
}
.content-card:hover { box-shadow: 0 3px 16px rgba(0,0,0,.06); }
.content-card h3 { font-family: var(--font-cond); font-size: 20px; font-weight: 700; margin: 0 0 8px; color: var(--text); }
.content-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin: 0; }

.tool-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 18px;
    transition: box-shadow .2s, border-color .2s;
}
.tool-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.07); border-color: var(--red); }
.tool-card-icon {
    width: 56px; height: 56px;
    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: 22px;
    flex-shrink: 0;
}
.tool-card h4 { font-family: var(--font-cond); font-size: 18px; font-weight: 700; margin: 0 0 6px; color: var(--text); }
.tool-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

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

/* ================================================================
   RESPONSIVE BREAKPOINTS
================================================================ */

/* --- Tablet landscape / small desktop (max 1100px) --- */
@media (max-width: 1100px) {
    .brands-grid { grid-template-columns: repeat(4, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* --- Tablet portrait (max 900px) --- */
@media (max-width: 900px) {
    .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: 38px; }
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
    .header-search { max-width: 300px; }
}

/* --- Mobile (max 768px) --- */
@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; gap: 28px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .brands-grid { grid-template-columns: repeat(3, 1fr); }

    .hero-slide { height: 380px; }
    .hero-title { font-size: 32px; }
    .hero-sub { font-size: 13.5px; }
    .hero-btns { gap: 8px; }
    .btn-primary-as, .btn-secondary-as { padding: 10px 16px; font-size: 13px; }

    .footer-bottom { flex-direction: column; text-align: center; }
    .section-title { font-size: 24px; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .vehicles-grid { grid-template-columns: 1fr 1fr; }

    .tool-card { flex-direction: column; gap: 14px; }
    .content-card { padding: 20px; }
    .page-hero h1 { font-size: 28px; }
    .page-hero p { font-size: 14px; }
}

/* --- Small mobile (max 480px) --- */
@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .services-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .vehicles-grid { grid-template-columns: 1fr; }
    .hero-slide { height: 340px; }
    .hero-title { font-size: 28px; }
    .hero-content { padding: 0 16px; }
    .solution-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 40px 0; }
    .section-title { font-size: 22px; }
    .partner-card { padding: 24px 20px; }
    .site-logo span { font-size: 18px; }
    .site-logo svg { width: 32px; height: 32px; }
    .btn-file-service { padding: 9px 12px; font-size: 12px; }
    .btn-file-service i { display: none; }
}
