/* =============================================
   MIDLAND AUTOMOBILES – MODERN STYLESHEET
   Bootstrap 5.3 + AOS + Custom Animations
   ============================================= */

/* --- Google Font + Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;600;700;800&display=swap');

:root {
    --red:       #c0c0c0;
    --red-dark:  #969696;
    --red-glow:  rgba(192,192,192,0.15);
    --dark:      #0d0d0d;
    --dark2:     #161616;
    --dark3:     #1f1f1f;
    --grey:      #2b2b2b;
    --light:     #f8f9fa;
    --lighter:   #ffffff;
    --muted:     #6c757d;
    --border:    #e9ecef;
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.18);
    --radius:    10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --ease:      cubic-bezier(0.4, 0, 0.2, 1);
    --t:         0.3s;
    /* Aliases for inner-page compatibility */
    --accent:        #c0c0c0;
    --accent20:      rgba(192,192,192,0.10);
    --primary:       #c0c0c0;
    --light-custom:  #f5f6fa;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: #f5f6fa; }

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    color: #222;
    background: #f5f6fa;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--t) var(--ease); }
a:hover { color: var(--red); }

::selection { background: var(--red); color: #fff; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ===== UTILITY ===== */
.section-badge {
    display: inline-block;
    background: var(--red-glow);
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}
.section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 12px;
}
.section-title span { color: var(--red); }
.section-sub {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7;
}
.btn-red {
    background: var(--red);
    color: #111;
    border: none;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: background var(--t) var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
    display: inline-flex; align-items: center; gap: 8px;
    cursor: pointer;
}
.btn-red:hover { background: var(--red-dark); color: #111; transform: translateY(-2px); box-shadow: 0 8px 24px var(--red-glow); }

.btn-outline-dark-custom {
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
    padding: 10px 26px;
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: 50px;
    transition: all var(--t) var(--ease);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-dark-custom:hover { background: var(--dark); color: #fff; transform: translateY(-2px); }

.divider-red { width: 48px; height: 4px; background: var(--red); border-radius: 2px; margin: 0 0 20px; }

/* ===== HEADER ===== */

/* Tiny black top bar */
#siteTopbar {
    background: var(--red);
    height: 46px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
    font-size: 0.95rem;
    font-weight: 500;
}
#siteTopbar .topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.topbar-email { flex: 1 1 0; min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.topbar-phone { flex: 1 1 0; min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; text-align: right; justify-content: flex-end; }
#siteTopbar a { color: rgba(255,255,255,0.9); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
#siteTopbar a:hover { color: #fff; }
#siteTopbar a i { color: rgba(255,255,255,0.75); font-size: 0.8rem; }

/* Sticky nav (slides down on scroll) */
#stickyNav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1060;
    background: #fff;
    padding: 10px 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    border-bottom: 1px solid #e9ecef;
}
#stickyNav.show { transform: translateY(0); }
.sticky-logo-icon {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #111; font-size: 0.85rem;
    flex-shrink: 0;
}
.sticky-logo-name { font-size: 0.82rem; font-weight: 800; color: #1a1a1a; letter-spacing: -0.3px; }
.sticky-nav-link {
    color: rgba(0,0,0,0.55);
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.8px;
    padding: 5px 11px; border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    text-decoration: none;
    display: block;
}
.sticky-nav-link:hover, .sticky-nav-link.active { color: var(--red); background: rgba(192,192,192,0.06); }
.sticky-phone-btn { display: none; }

/* Header hero area */
#siteHeader {
    position: relative;
    background: #fff;
    overflow: hidden;
}

/* Dark gradient only behind the navbar row */
.header-overlay { display: none; }

/* Main navbar — sticky, same on scroll */
#mainNavbar {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1060;
    padding: 18px 0;
    border: none;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
#mainNavbar .navbar-brand { text-decoration: none; display: flex; align-items: center; gap: 12px; }
.header-logo-area { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.site-logo-img {
    height: 90px;
    width: auto;
    display: block;
    object-fit: contain;
}
.footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}
.header-logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #111;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px var(--red-glow);
}
.logo-name { font-size: 1.2rem; font-weight: 800; color: #1a1a1a; letter-spacing: -0.5px; line-height: 1; }
.logo-tagline { font-size: 0.65rem; color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 3px; }
#mainNavbar .navbar-nav .nav-link {
    font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.8px;
    color: #333 !important;
    padding: 8px 14px !important;
    transition: color 0.2s;
}
#mainNavbar .navbar-nav .nav-link:hover,
#mainNavbar .navbar-nav .nav-link.active { color: var(--red) !important; }
#mainNavbar .dropdown-menu {
    background: #fff;
    border: none;
    border-top: 2px solid var(--red);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    padding: 6px 0;
    min-width: 190px;
    animation: dropIn 0.2s var(--ease);
}
@keyframes dropIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
#mainNavbar .dropdown-item {
    font-size: 0.82rem; padding: 10px 18px;
    font-weight: 600; color: #444;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
#mainNavbar .dropdown-item:hover { background: var(--red); color: #fff; padding-left: 24px; }

/* ===== MOBILE / TABLET RESPONSIVE HEADER ===== */

/* ---- Tablet + Mobile (≤ 991px): navbar separates from hero image ---- */
@media (max-width: 991px) {

    /* Navbar becomes a solid white bar on mobile */
    #mainNavbar {
        background: rgba(255,255,255,0.97) !important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        padding: 10px 0;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    /* Collapsed menu: seamless white panel */
    #mainNavbar .navbar-collapse {
        background: transparent;
        border-top: 1px solid rgba(0,0,0,0.06);
        padding: 8px 0 4px;
        margin-top: 8px;
    }
    #mainNavbar .navbar-nav .nav-link {
        padding: 10px 14px !important;
        border-radius: 6px;
    }
    #mainNavbar .navbar-nav .nav-link:hover,
    #mainNavbar .navbar-nav .nav-link.active {
        background: rgba(0,0,0,0.04);
    }

    /* No background image — clean white header on tablet */
    #siteHeader,
    #siteHeader.full-hero {
        height: auto !important;
        background-color: #fff !important;
    }

    /* Hero body sits naturally after the image */
    #heroBody {
        min-height: unset;
        padding: 32px 0 24px !important;
        align-items: flex-start;
    }

    /* ---- Search strip: light block on tablet ---- */
    #headerSearch {
        background: #f0f2f5;
        border-top: 2px solid rgba(192,192,192,0.3);
        padding: 20px 0 22px !important;
    }

    /* Search form: 2-column grid on tablet */
    .header-search-form {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .header-search-form select {
        flex: unset !important;
        min-width: unset !important;
        width: 100%;
    }
    .header-search-btn {
        grid-column: 1 / -1;
        justify-content: center;
        width: 100%;
    }
}

/* Horizontal search strip */
#headerSearch {
    position: relative;
    z-index: 2;
    padding: 0 0 32px;
}
.header-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid #dde0e8;
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 4px 24px rgba(192,192,192,0.08);
}
.header-search-form select {
    flex: 1;
    min-width: 130px;
    background: #fff;
    border: 1px solid #dde0e8;
    color: #333;
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 0.82rem; font-weight: 500;
    appearance: none; -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.header-search-form select option { color: #333; background: #fff; }
.header-search-form select:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px var(--red-glow);
}
.header-search-btn {
    background: var(--red);
    color: #111;
    border: none;
    padding: 11px 26px;
    border-radius: 8px;
    font-size: 0.85rem; font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: flex; align-items: center; gap: 8px;
    font-family: inherit;
    flex-shrink: 0;
}
.header-search-btn:hover { background: var(--red-dark); transform: translateY(-1px); }

/* Hero search — price range widget */
.hs-price-wrap {
    flex: 1.4;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #dde0e8;
    border-radius: 8px;
    padding: 6px 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    flex-wrap: wrap;
}
.hs-price-input {
    width: 80px;
    border: none;
    outline: none;
    font-size: 0.82rem;
    font-weight: 500;
    color: #333;
    background: transparent;
    font-family: inherit;
    padding: 3px 2px;
}
.hs-price-input::-webkit-outer-spin-button,
.hs-price-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.hs-price-sep { color: #aaa; font-size: 0.85rem; flex-shrink: 0; }
.hs-price-hint {
    width: 100%;
    font-size: 0.68rem;
    color: #888;
    margin-top: 1px;
    white-space: nowrap;
}
/* ---- Phone (≤ 767px): email left, phone right, small font ---- */
@media (max-width: 767px) {

    /* Topbar: single row, email left, phone right */
    #siteTopbar { height: 34px; }
    .topbar-txt { display: inline; }
    #siteTopbar .topbar-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 4px;
        height: 100%;
    }
    /* Email gets more space (longer text), phone gets less */
    .topbar-email { flex: 1.8 1 0; min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-size: 0.52rem; }
    .topbar-phone { flex: 1 1 0; min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-size: 0.52rem; justify-content: flex-end; }
    #siteTopbar a i { font-size: 0.5rem; }

    /* Hero body: compact on phones */
    #heroBody {
        min-height: unset;
        padding: 20px 0 14px !important;
    }

    /* Clean white on phones — no image */
    #siteHeader,
    #siteHeader.full-hero {
        background-color: #fff !important;
    }

    /* Headline + sub tighter on phones */
    .hero-headline {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        margin-bottom: 10px;
    }
    .hero-sub {
        font-size: 0.88rem;
        margin-bottom: 20px;
    }
    .hero-stats { gap: 14px; margin-top: 20px; }
    .hero-stat-num { font-size: 1.25rem; }
    .hero-stat-sep { display: none; }

    /* Search: single column on phones */
    .header-search-form {
        grid-template-columns: 1fr;
    }
    #headerSearch { padding: 16px 0 18px !important; }

    /* Scroll indicator hidden on small phones */
    #scrollIndicator { padding: 6px 0 4px; }
}

/* ===== FULL-SCREEN HERO HEADER ===== */
#siteHeader.full-hero {
    height: calc(100vh - 46px); /* 46px = topbar height */
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #ffffff 0%, #fdf1f2 45%, #f5f6fa 100%) !important;
}
/* Decorative radial glow — top-right */
#siteHeader.full-hero::before {
    content: '';
    position: absolute;
    right: -180px; top: -180px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(192,192,192,0.10) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
/* Red accent line at bottom of hero */
#siteHeader.full-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--red-dark), var(--red));
    z-index: 3;
}
/* Hero body (headline + CTA + stats, fills space between navbar and search) */
#heroBody {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 20px 0 10px;
}
/* Scroll down indicator */
#scrollIndicator {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 12px 0 8px;
    cursor: pointer;
}
#scrollIndicator i {
    color: rgba(0,0,0,0.35);
    font-size: 1.5rem;
    animation: bounceDown 1.6s ease-in-out infinite;
}
@keyframes bounceDown {
    0%, 100% { transform: translateY(0); opacity: 0.65; }
    50%       { transform: translateY(9px); opacity: 1; }
}

/* Animated headline */
.hero-headline {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 14px;
}
.hero-headline .highlight {
    color: var(--red);
    position: relative;
    display: inline-block;
}
.hero-headline .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineIn 0.8s 0.6s var(--ease) forwards;
}
@keyframes underlineIn { to { transform: scaleX(1); } }

.hero-sub { font-size: 1rem; color: #555; margin-bottom: 30px; line-height: 1.7; max-width: 480px; }

/* Hero stats bar */
.hero-stats { display: flex; gap: 24px; margin-top: 30px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 1.6rem; font-weight: 800; color: #1a1a1a; line-height: 1; }
.hero-stat-lbl { font-size: 0.72rem; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.hero-stat-sep { width: 1px; background: rgba(0,0,0,0.12); align-self: stretch; margin: 4px 0; }

/* Search card */
.home-search-card {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255,255,255,0.3);
}
.home-search-card-head {
    background: linear-gradient(135deg, var(--dark), var(--dark3));
    padding: 14px 20px;
    display: flex; align-items: center; justify-content: space-between;
}
.home-search-card-head h3 {
    color: #fff; font-size: 0.9rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; margin: 0; display: flex; align-items: center; gap: 8px;
}
.stock-pill {
    background: var(--red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
}
.home-search-card-body { padding: 20px; }
.home-search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.home-search-grid select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.83rem;
    font-weight: 500;
    color: #333;
    background: #fff;
    cursor: pointer;
    transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c0c0c0' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 34px;
}
.home-search-grid select:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px var(--red-glow);
}
.btn-search-home {
    width: 100%;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #111;
    border: none;
    padding: 13px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-search-home:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--red-glow); }
.btn-search-home:active { transform: translateY(0); }

/* Counter animation */
.counter { display: inline-block; }

/* ===== HERO VISUAL (right-side decorative panel) ===== */
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(192,192,192,0.08);
    border: 1px solid rgba(192,192,192,0.2);
    color: var(--red);
    font-size: 0.78rem; font-weight: 700;
    padding: 6px 16px; border-radius: 50px;
    margin-bottom: 18px;
}
/* ===== HERO FEATURE CARDS (right column) ===== */
.hero-feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.hero-feat-card {
    background: #fff;
    border: 1px solid #e4eaf8;
    border-radius: 16px;
    padding: 26px 20px 22px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
    box-shadow: 0 2px 14px rgba(192,192,192,0.06);
}
.hero-feat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(192,192,192,0.14);
    border-color: rgba(192,192,192,0.28);
}
.hero-feat-icon {
    width: 46px; height: 46px;
    background: rgba(192,192,192,0.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--red);
    margin-bottom: 6px;
    transition: background var(--t) var(--ease), transform var(--t) var(--ease);
}
.hero-feat-card:hover .hero-feat-icon {
    background: var(--red);
    color: #fff;
    transform: scale(1.08);
}
.hero-feat-name {
    font-size: 0.93rem;
    font-weight: 800;
    color: #1a1a1a;
}
.hero-feat-desc {
    font-size: 0.77rem;
    color: #888;
    line-height: 1.4;
}
/* ===== INSTRUMENT CLUSTER (hero right column) ===== */
.ic-panel {
    background: linear-gradient(160deg, #0f172a 0%, #111827 100%);
    border-radius: 20px;
    padding: 18px 18px 14px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.05);
    width: 100%;
}
.ic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.ic-lbl {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #475569;
}
.ic-brand-label {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #334155;
}
.ic-dials {
    display: flex;
    align-items: center;
    gap: 4px;
}
.ic-dial-svg {
    flex: 1 1 0;
    min-width: 0;
    height: auto;
    display: block;
}
.ic-center {
    flex: 0 0 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.ic-gear {
    width: 32px; height: 32px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    font-weight: 900;
    color: #f8fafc;
    font-family: Arial, sans-serif;
}
.ic-stat-mini { text-align: center; }
.ic-stat-val {
    font-size: 0.88rem;
    font-weight: 800;
    color: #f8fafc;
    line-height: 1;
}
.ic-stat-lbl {
    font-size: 0.52rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}
.ic-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #1e293b;
    font-size: 0.65rem;
    color: #64748b;
}
.ic-dot {
    width: 3px; height: 3px;
    background: #334155;
    border-radius: 50%;
    flex-shrink: 0;
}
/* ===== HERO TRUST BAR ===== */
.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-bottom: 28px;
}
.hero-trust-item {
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-trust-item i {
    color: #22c55e;
    font-size: 0.85rem;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background: #f0f2f5;
    padding: 90px 0 80px;
}
.reviews-head { text-align: center; margin-bottom: 52px; }
.reviews-head-stars { color: #f4b400; font-size: 1.4rem; letter-spacing: 4px; margin-bottom: 14px; }
.reviews-head-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; color: #1a1a1a; line-height: 1.2; margin-bottom: 12px; }
.reviews-head-title span { color: var(--red); }
.reviews-head-sub { font-size: 0.95rem; color: #777; max-width: 420px; margin: 0 auto; line-height: 1.6; }

.reviews-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
    align-items: stretch;
}
.rv-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 14px;
    transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
}
.rv-card:hover { transform: translateY(-5px); border-color: rgba(192,192,192,0.35); box-shadow: 0 12px 32px rgba(0,0,0,0.10); }
.rv-card-stars { color: #f4b400; font-size: 0.85rem; letter-spacing: 3px; }
.rv-card-text { font-size: 0.88rem; color: #555; line-height: 1.75; margin: 0; flex: 1; }
.rv-card-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid #eee; }
.rv-card-avatar { width: 40px; height: 40px; border-radius: 50%; background: #2e2e2e; border: 2px solid #c0c0c0; color: #c0c0c0; font-size: 1rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rv-card-name { font-size: 0.88rem; font-weight: 700; color: #1a1a1a; }
.rv-card-verified { font-size: 0.7rem; color: #4ade80; margin-top: 2px; display: flex; align-items: center; gap: 4px; }
.reviews-cta { text-align: center; }

@media (max-width: 991px) { .reviews-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .reviews-cards-grid { grid-template-columns: 1fr; } .reviews-section { padding: 60px 0 50px; } }

/* ===== SERVICES FULL-SCREEN SECTION ===== */
.svc-full-section {
    background: #0d1117;
}

/* Single unified grid */
.svc-full-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 300px 300px 260px 260px;
    grid-auto-rows: 260px;
    gap: 3px;
}

/* Grid placement */
.svc-full-grid > :nth-child(1) { grid-column: 1; grid-row: 1 / 3; }  /* Used Cars */
.svc-full-grid > :nth-child(2) { grid-column: 2 / 4; grid-row: 1; }  /* Finance */
.svc-full-grid > :nth-child(3) { grid-column: 2 / 4; grid-row: 2; }  /* Warranty */
.svc-full-grid > :nth-child(4) { grid-column: 1; grid-row: 3; }       /* Testimonials */
.svc-full-grid > :nth-child(5) { grid-column: 2; grid-row: 3; }       /* Workshop */
.svc-full-grid > :nth-child(6) { grid-column: 3; grid-row: 3; }       /* Part Exchange */
.svc-full-grid > :nth-child(7) { grid-column: 1 / 3; grid-row: 4; }   /* Warranty */
.svc-full-grid > :nth-child(8) { grid-column: 3; grid-row: 4; }        /* Terms & Conditions */

/* Base tile */
.svc-tile {
    position: relative;
    overflow: hidden;
    display: flex;
    text-decoration: none;
    cursor: pointer;
}

/* Background image */
.svc-tile-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s var(--ease);
}
.svc-tile:hover .svc-tile-bg { transform: scale(1.07); }

/* Dark gradient overlay */
.svc-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.15) 100%
    );
    transition: background 0.4s var(--ease);
    z-index: 1;
}
.svc-tile:hover .svc-tile-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.25) 50%,
        rgba(0,0,0,0.05) 100%
    );
}

/* Content inside tile */
.svc-tile-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 28px;
    gap: 5px;
}
.svc-tile-sm .svc-tile-content { padding: 18px 22px; }

.svc-tile-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #fff;
    margin-bottom: 8px;
    transition: background 0.3s, transform 0.3s;
    flex-shrink: 0;
}
.svc-tile-sm .svc-tile-icon { width: 34px; height: 34px; font-size: 0.9rem; border-radius: 9px; margin-bottom: 5px; }
.svc-tile:hover .svc-tile-icon { background: var(--red); border-color: var(--red); transform: scale(1.1); }

.svc-tile-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 4px;
    width: fit-content;
}

.svc-tile-name {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    line-height: 1;
}
.svc-tile-sm .svc-tile-name { font-size: 1rem; }

.svc-tile-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    max-width: 340px;
}
.svc-tile-sm .svc-tile-desc { font-size: 0.74rem; }

/* CTA — hidden until hover */
.svc-tile-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    background: var(--red);
    padding: 9px 20px;
    border-radius: 50px;
    width: fit-content;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.svc-tile:hover .svc-tile-cta { opacity: 1; transform: translateY(0); }

/* Red accent line at bottom on hover */
.svc-tile::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
    z-index: 3;
}
.svc-tile:hover::after { transform: scaleX(1); }

/* ---- Responsive ---- */
@media (max-width: 767px) {
    .svc-full-grid {
        grid-template-columns: 1fr 1fr;
        
        grid-template-rows: 240px 110px 160px 110px 110px;
        min-height: unset;
    }
    .svc-full-grid > :nth-child(1) { grid-column: 1 / 3; grid-row: 1; }       /* Used Cars — full width */
    .svc-full-grid > :nth-child(2) { grid-column: 1; grid-row: 2; }           /* Finance */
    .svc-full-grid > :nth-child(3) { grid-column: 2; grid-row: 2; }           /* Warranty */
    .svc-full-grid > :nth-child(4) { grid-column: 1 / 3; grid-row: 3; }       /* Testimonials — full width */
    .svc-full-grid > :nth-child(5) { grid-column: 1; grid-row: 4; }           /* Workshop */
    .svc-full-grid > :nth-child(6) { grid-column: 2; grid-row: 4; }           /* Part Exchange */
    .svc-full-grid > :nth-child(7) { grid-column: 1; grid-row: 5; }           /* Warranty */
    .svc-full-grid > :nth-child(8) { grid-column: 2; grid-row: 5; }           /* Terms & Conditions */
    
    .svc-tile-content { padding: 18px 20px; }
    .svc-tile-sm .svc-tile-content { padding: 14px 16px; }
    .svc-tile-name { font-size: 1.1rem; }
    .svc-tile-sm .svc-tile-name { font-size: 0.9rem; }
    .svc-tile-desc { display: none; }
    .svc-full-section { min-height: unset; }
}

/* ===== PROMO BLOCKS ===== */
.promo-section { background: var(--light); padding: 30px 0 6px; }
.promo-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 8px; }
.promo-stack {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-height: 100%;
}

.promo-tile {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
}
.promo-tile::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.25);
    transition: background var(--t) var(--ease);
    z-index: 1;
}
.promo-tile:hover::before { background: rgba(0,0,0,0.1); }
.promo-tile-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease);
}
.promo-tile:hover .promo-tile-bg { transform: scale(1.06); }
.promo-tile-half .promo-tile-body, .promo-tile-large .promo-tile-body { min-height: unset !important; }

.promo-tile-body {
    min-height: 100% !important;
    flex: 1;
    position: relative; z-index: 2;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 24px 20px;
    height: 100%;
}

.promo-tile-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff;
    margin-bottom: 14px;
    transition: background var(--t) var(--ease), transform var(--t) var(--ease);
}
.promo-tile:hover .promo-tile-icon { background: rgba(255,255,255,0.25); transform: scale(1.1) rotate(5deg); }
.promo-tile-label {
    font-size: 1.1rem; font-weight: 800; color: #fff;
    text-transform: uppercase; letter-spacing: 1.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.promo-tile-sub {
    font-size: 0.78rem; color: rgba(255,255,255,0.8);
    margin-top: 4px; text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.promo-tile-arrow {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.9rem;
    margin-top: 12px;
    transition: background var(--t) var(--ease), transform var(--t) var(--ease);
}
.promo-tile:hover .promo-tile-arrow { background: var(--red); transform: translateX(4px); }

/* Testimonials tile inside the grid */
.tmo-tile {
    background: #0d1117;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 28px;
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Decorative quote mark */
.tmo-quote-mark {
    position: absolute;
    top: -20px; right: 28px;
    font-size: 10rem;
    font-family: 'Georgia', serif;
    color: var(--red);
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Header inside panel */
.tmo-head {
    margin-bottom: 14px;
}
.tmo-head-stars {
    color: #f4b400;
    font-size: 0.95rem;
    letter-spacing: 3px;
    margin-bottom: 5px;
}
.tmo-head-title {
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 4px;
}
.tmo-head-title span { color: var(--red); }
.tmo-head-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
}

/* Slides */
.testimonial-slide { display: none; animation: fadeSlide 0.5s var(--ease); }
.testimonial-slide.active { display: block; }
@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.tmo-text {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.82);
    font-style: italic;
    line-height: 1.7;
    border-left: 3px solid var(--red);
    padding-left: 14px;
    margin: 0 0 14px;
}
.tmo-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.tmo-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.tmo-author-name { font-size: 0.82rem; font-weight: 700; color: #fff; }
.tmo-author-meta { font-size: 0.68rem; color: #4ade80; margin-top: 2px; display: flex; align-items: center; gap: 5px; }

/* Controls row */
.tmo-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}
.testimonial-dots { display: flex; gap: 6px; align-items: center; }
.t-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none; cursor: pointer;
    transition: background var(--t), width var(--t);
    padding: 0;
}
.t-dot.active { background: var(--red); width: 20px; border-radius: 4px; }
.tslide-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff; font-size: 0.85rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--t) var(--ease), transform var(--t) var(--ease);
}
.tslide-btn:hover { background: var(--red); border-color: var(--red); transform: scale(1.1); }

@media (max-width: 575px) {
    .tmo-text { font-size: 0.92rem; }
}

/* RIGHT tiles (Workshop & Part Exchange) */
.svc-pair-strip {
    display: contents;
}
.svc-pair-tile {
    position: relative;
    overflow: hidden;
    display: flex;
    text-decoration: none;
    cursor: pointer;
}
.svc-pair-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s var(--ease);
}
.svc-pair-tile:hover .svc-pair-bg { transform: scale(1.07); }
.svc-pair-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.12) 100%);
    transition: background 0.4s var(--ease);
    z-index: 1;
}
.svc-pair-tile:hover .svc-pair-overlay { background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0.05) 100%); }
.svc-pair-content {
    position: relative; z-index: 2;
    width: 100%;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 36px 44px;
    gap: 6px;
}
.svc-pair-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 14px;
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #fff;
    margin-bottom: 10px;
    transition: background var(--t) var(--ease), transform var(--t) var(--ease);
}
.svc-pair-tile:hover .svc-pair-icon { background: var(--red); border-color: var(--red); transform: scale(1.1); }
.svc-pair-name {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.svc-pair-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.3px;
}
.svc-pair-cta {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 12px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(6px);
    color: #fff; font-size: 0.82rem; font-weight: 700;
    padding: 9px 20px; border-radius: 50px;
    transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
    align-self: flex-start;
}
.svc-pair-tile:hover .svc-pair-cta { background: var(--red); border-color: var(--red); }
@media (max-width: 767px) {
    .svc-pair-strip { grid-template-columns: 1fr; min-height: unset; }
    .svc-pair-content { padding: 24px 22px; }
}

/* ===== DELIVER BANNER ===== */
.deliver-banner {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    margin: 8px 0 0;
    position: relative; overflow: hidden;
}
.deliver-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}
.deliver-banner a {
    display: flex; align-items: center; justify-content: center; gap: 18px;
    padding: 26px 20px;
    position: relative; z-index: 1;
    text-decoration: none;
    transition: gap var(--t) var(--ease);
}
.deliver-banner a:hover { gap: 24px; }
.deliver-banner .deliver-icon {
    font-size: 2.4rem; color: rgba(255,255,255,0.9);
    animation: truckPulse 2s ease-in-out infinite;
}
@keyframes truckPulse {
    0%, 100% { transform: translateX(0); }
    50%       { transform: translateX(6px); }
}
.deliver-banner .deliver-text h4 { color: #fff; font-size: 1.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin: 0; }
.deliver-banner .deliver-text p  { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin: 4px 0 0; }
.deliver-banner .deliver-cta {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff; font-weight: 700; font-size: 0.82rem;
    padding: 10px 22px; border-radius: 50px;
    transition: background var(--t), border-color var(--t);
    white-space: nowrap;
}
.deliver-banner a:hover .deliver-cta { background: rgba(255,255,255,0.25); border-color: #fff; }

/* ===== WELCOME SECTION ===== */
.welcome-section { background: #fff; padding: 60px 0; }
.welcome-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 36px;
    border-left: 5px solid var(--red);
    box-shadow: var(--shadow-sm);
}
.welcome-title { font-size: 1.8rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.welcome-title span { color: var(--red); }
.welcome-body p { font-size: 0.9rem; color: #555; line-height: 1.8; margin-bottom: 14px; }
.welcome-body a { color: var(--red); font-weight: 600; }
.welcome-features { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* Motor Ombudsman stamp */
.tmo-stamp-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
    gap: 10px;
}
.tmo-stamp-img {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.14));
    transition: transform 0.5s ease, filter 0.3s ease;
}
.tmo-stamp-img:hover {
    transform: rotate(8deg) scale(1.07);
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.22));
}
.tmo-stamp-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
}
.welcome-feat {
    display: flex; align-items: center; gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.82rem; font-weight: 600; color: #333;
    transition: all var(--t) var(--ease);
}
.welcome-feat:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.welcome-feat i { color: var(--red); }

/* ===== LATEST VEHICLES ===== */
.latest-section {
    background: #f4f6f9;
    padding: 64px 0 52px;
}
.lv-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}
.lv-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: #111;
    margin: 6px 0 0;
    line-height: 1.1;
}
.lv-title span { color: var(--red); }

/* Slider outer — holds arrows + track */
.lv-slider-outer {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}
.lv-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 20px 20px;
    flex: 1;
    scrollbar-width: none;
}
.lv-track::-webkit-scrollbar { display: none; }

/* Arrow buttons */
.lv-arrow {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e3ea;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s, transform 0.25s, border-color 0.25s, color 0.25s;
    z-index: 2;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.lv-arrow:hover { background: var(--red); border-color: var(--red); color: #fff; transform: scale(1.1); }
.lv-arrow-prev { margin-right: 6px; }
.lv-arrow-next { margin-left: 6px; }

/* Cards */
.lv-card {
    flex: 0 0 290px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    scroll-snap-align: start;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8eaee;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.lv-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.13);
    border-color: var(--red);
}

/* Image area */
.lv-card-img {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: #f0f1f4;
}
.lv-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.lv-card:hover .lv-card-img img { transform: scale(1.06); }
.lv-card-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 50%);
    pointer-events: none;
}
.lv-card-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--red); color: #fff;
    font-size: 0.63rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.2px;
    padding: 4px 12px; border-radius: 50px;
}
.lv-card-fav {
    position: absolute; top: 10px; right: 10px;
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; color: #aaa;
    transition: all 0.25s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.lv-card-fav:hover, .lv-card-fav--active { background: #fff; color: var(--red); border-color: var(--red); }
.lv-card-price {
    position: absolute; bottom: 12px; right: 14px;
    background: var(--red);
    color: #fff;
    font-size: 1rem; font-weight: 800;
    padding: 5px 16px; border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

/* Card body */
.lv-card-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 5px;
}
.lv-card-make {
    font-size: 0.67rem; font-weight: 700;
    color: var(--red);
    text-transform: uppercase; letter-spacing: 1.5px;
}
.lv-card-model {
    font-size: 1.05rem; font-weight: 800;
    color: #111;
    line-height: 1.2;
}
.lv-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}
.lv-spec {
    display: inline-flex; align-items: center; gap: 5px;
    background: #f3f4f7;
    border: 1px solid #e4e6eb;
    color: #555;
    font-size: 0.7rem; font-weight: 500;
    padding: 4px 11px; border-radius: 50px;
}
.lv-spec i { color: var(--red); font-size: 0.65rem; }
.lv-card-cta {
    margin-top: auto;
    padding-top: 14px;
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8rem; font-weight: 700;
    color: var(--red);
    border-top: 1px solid #eef0f4;
    transition: gap 0.2s;
}
.lv-card:hover .lv-card-cta { gap: 13px; }

/* Dots */
.lv-dots-wrap {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}
.lv-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #cdd0d8;
    border: none; cursor: pointer; padding: 0;
    transition: background 0.25s, width 0.25s;
}
.lv-dot.active { background: var(--red); width: 26px; border-radius: 4px; }

/* ===== USED CARS PAGE ===== */

/* Page header */
.uc-page-header {
    background: linear-gradient(135deg, #0d0d0d 0%, #1e1e1e 60%, #2e2e2e 100%);
    border-bottom: 3px solid var(--red);
    padding: 40px 0 34px;
    position: relative; overflow: hidden;
}
.uc-page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c0c0c0' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.uc-page-header-inner {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    position: relative; z-index: 1;
}
.uc-page-title { color: #fff; font-size: 2rem; font-weight: 900; margin: 0 0 6px; }
.uc-header-stats { display: flex; gap: 16px; }
.uc-stat { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; padding: 12px 24px; text-align: center; }
.uc-stat-num { display: block; font-size: 1.6rem; font-weight: 900; color: #fff; line-height: 1; }
.uc-stat-label { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }

/* Breadcrumb */
.breadcrumb-bar { display: flex; align-items: center; gap: 7px; margin-top: 4px; }
.breadcrumb-bar a { color: rgba(255,255,255,0.6); font-size: 0.78rem; text-decoration: none; transition: color 0.2s; }
.breadcrumb-bar a:hover { color: #fff; }
.breadcrumb-bar i { color: rgba(255,255,255,0.3); font-size: 0.55rem; }
.breadcrumb-bar span { color: rgba(255,255,255,0.9); font-size: 0.78rem; font-weight: 600; }

/* Body layout */
.uc-body { background: #f2f4f8; padding: 32px 0 56px; }
.uc-layout { display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start; }

/* ===== SIDEBAR ===== */
.uc-sidebar { position: sticky; top: 80px; }
.uc-filter-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    margin-bottom: 16px;
}
.uc-filter-card-head {
    background: #111;
    color: #fff;
    padding: 14px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex; align-items: center; justify-content: space-between;
}
.uc-filter-card-head i { color: var(--red); margin-right: 8px; }
.uc-filter-clear { color: rgba(255,255,255,0.55); font-size: 0.72rem; font-weight: 500; text-decoration: none; transition: color 0.2s; }
.uc-filter-clear:hover { color: var(--red); }
.uc-filter-group { padding: 14px 18px; border-bottom: 1px solid #f0f1f5; }
.uc-filter-label { display: block; font-size: 0.72rem; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 7px; }
.uc-filter-select {
    width: 100%; padding: 9px 12px;
    border: 1.5px solid #e4e6ec;
    border-radius: 8px;
    font-size: 0.83rem; color: #222; background: #fff;
    appearance: auto;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.uc-filter-select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-glow); }
.uc-filter-input-wrap { position: relative; }
.uc-filter-input-wrap i { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); color: #bbb; font-size: 0.78rem; }
.uc-filter-input {
    width: 100%; padding: 9px 12px 9px 32px;
    border: 1.5px solid #e4e6ec;
    border-radius: 8px;
    font-size: 0.83rem; color: #222; background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.uc-filter-input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-glow); }
/* Price inputs (no icon, so no left-padding) */
.uc-filter-input[type="number"] { padding: 9px 10px; }
.uc-filter-submit {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: calc(100% - 36px); margin: 14px 18px 18px;
    background: var(--red); color: #fff;
    border: none; border-radius: 50px;
    padding: 11px 0; font-size: 0.85rem; font-weight: 700;
    cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.uc-filter-submit:hover { background: var(--red-dark); transform: translateY(-1px); }

/* Sidebar promo */
.uc-sidebar-promo {
    background: linear-gradient(135deg, #111 0%, #1d1d2e 100%);
    border-radius: 14px;
    padding: 22px 20px;
    text-align: center;
    color: #fff;
}
.uc-sidebar-promo-icon {
    width: 44px; height: 44px;
    background: var(--red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 12px;
}
.uc-sidebar-promo-title { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.uc-sidebar-promo-text { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.5; margin-bottom: 14px; }
.uc-sidebar-promo-btn {
    display: inline-block;
    background: var(--red); color: #fff;
    padding: 8px 22px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.uc-sidebar-promo-btn:hover { background: #b91c1c; color: #fff; transform: translateY(-1px); }

/* ===== SORT BAR ===== */
.uc-sort-bar {
    background: #fff;
    border-radius: 12px;
    padding: 13px 18px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 10px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.uc-sort-count { font-size: 0.85rem; color: #555; font-weight: 500; }
.uc-sort-count strong { color: #111; font-weight: 800; }
.uc-active-filters { display: inline-flex; flex-wrap: wrap; gap: 6px; margin-left: 10px; }
.uc-filter-tag {
    background: #fff0f0; border: 1px solid #fcd0d0;
    color: #b91c1c; font-size: 0.7rem; font-weight: 600;
    padding: 3px 10px; border-radius: 50px;
}
.uc-filter-tag a { color: #b91c1c; text-decoration: none; margin-left: 4px; font-weight: 700; }
.uc-sort-form { display: flex; align-items: center; gap: 8px; }
.uc-sort-label { font-size: 0.8rem; font-weight: 600; color: #666; white-space: nowrap; }
.uc-sort-select {
    border: 1.5px solid #e4e6ec; border-radius: 8px;
    padding: 7px 12px; font-size: 0.82rem; font-weight: 600; color: #222;
    background: #fff;
}
.uc-sort-select:focus { outline: none; border-color: var(--red); }

/* ===== CAR CARDS ===== */
.uc-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    margin-bottom: 16px;
    border: 1.5px solid #eaecf2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.uc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.11); border-color: var(--red); }

.uc-card-img-wrap {
    flex: 0 0 300px;
    position: relative; overflow: hidden;
    display: block; text-decoration: none;
}
.uc-card-img-wrap img {
    width: 100%; height: 210px; object-fit: cover;
    display: block;
    transition: transform 0.55s var(--ease);
}
.uc-card:hover .uc-card-img-wrap img { transform: scale(1.05); }
.uc-card-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--red); color: #fff;
    font-size: 0.63rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.2px;
    padding: 4px 12px; border-radius: 50px;
}
.uc-card-type {
    position: absolute; bottom: 12px; left: 12px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.65rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    padding: 3px 10px; border-radius: 50px;
}

.uc-card-body {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}
.uc-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.uc-card-make { font-size: 0.68rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 1.4px; margin-bottom: 3px; }
.uc-card-title { font-size: 1.15rem; font-weight: 800; color: #111; line-height: 1.25; margin: 0 0 5px; }
.uc-card-title a { color: inherit; text-decoration: none; }
.uc-card-title a:hover { color: var(--red); }
.uc-card-desc { font-size: 0.78rem; color: #777; line-height: 1.5; margin: 0; }
.uc-card-price-wrap { text-align: right; flex-shrink: 0; }
.uc-card-price { font-size: 1.55rem; font-weight: 900; color: var(--red); white-space: nowrap; line-height: 1.1; }
.uc-card-price-sub { font-size: 0.68rem; color: #aaa; font-weight: 400; margin-top: 2px; }

.uc-card-specs { display: flex; flex-wrap: wrap; gap: 7px; }
.uc-chip {
    display: inline-flex; align-items: center; gap: 5px;
    background: #f3f5f9;
    border: 1px solid #e4e8f0;
    color: #444;
    font-size: 0.72rem; font-weight: 600;
    padding: 5px 12px; border-radius: 50px;
}
.uc-chip i { color: var(--red); font-size: 0.65rem; }

.uc-card-actions { display: flex; gap: 9px; flex-wrap: wrap; }
.uc-btn-primary {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--red); color: #fff;
    padding: 9px 20px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.uc-btn-primary:hover { background: var(--red-dark); color: #fff; transform: translateY(-1px); }
.uc-btn-whatsapp {
    display: inline-flex; align-items: center; gap: 7px;
    background: #25d366; color: #fff;
    padding: 9px 18px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.uc-btn-whatsapp:hover { background: #1da851; color: #fff; transform: translateY(-1px); }
.uc-btn-call {
    display: inline-flex; align-items: center; gap: 7px;
    background: #fff; color: #333;
    border: 1.5px solid #dde0e8;
    padding: 9px 18px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}
.uc-btn-call:hover { border-color: var(--red); color: var(--red); transform: translateY(-1px); }

/* No results */
.uc-no-results {
    background: #fff; border-radius: 14px;
    padding: 60px 30px; text-align: center;
    border: 1.5px dashed #dde0e8;
}
.uc-no-results-icon { font-size: 3rem; color: #ccc; margin-bottom: 16px; }
.uc-no-results h3 { font-size: 1.2rem; font-weight: 700; color: #444; margin-bottom: 8px; }
.uc-no-results p { font-size: 0.85rem; color: #888; }
.uc-no-results a { color: var(--red); font-weight: 600; text-decoration: none; }

/* Pagination */
.uc-pagination {
    display: flex; justify-content: center; align-items: center; gap: 6px;
    flex-wrap: wrap; margin-top: 28px;
}
.uc-page-btn {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 8px 16px; border-radius: 8px;
    font-size: 0.82rem; font-weight: 700;
    background: #fff; color: #444;
    border: 1.5px solid #e4e6ec;
    text-decoration: none;
    transition: all 0.2s;
}
.uc-page-btn:hover { border-color: var(--red); color: var(--red); }
.uc-page-btn.active { background: var(--red); color: #111; border-color: var(--red); }

/* Old page-header for other pages */
.page-header {
    background: linear-gradient(135deg, #0d0d0d 0%, #1e1e1e 60%, #2e2e2e 100%);
    border-bottom: 3px solid var(--red);
    padding: 40px 0 34px;
    position: relative; overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c0c0c0' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}
.page-header h1, .page-header .h2 { color: #fff; font-size: 1.8rem; font-weight: 800; margin: 0; position: relative; z-index: 1; }
.page-header .text-white-50 { color: rgba(255,255,255,0.6) !important; position: relative; z-index: 1; }

/* Sort bar (old) */
.sort-bar {
    background: #fff; border-radius: var(--radius);
    padding: 12px 18px;
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px; box-shadow: var(--shadow-sm);
    flex-wrap: wrap; gap: 10px;
}

/* Car listing card (old — kept for backwards compat) */
.car-list-item {
    background: #fff; border-radius: var(--radius-lg); overflow: hidden;
    margin-bottom: 16px; box-shadow: var(--shadow-sm); display: flex;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.car-list-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.car-list-img-wrap { flex: 0 0 280px; position: relative; overflow: hidden; }
.car-list-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); min-height: 200px; }
.car-list-item:hover .car-list-img-wrap img { transform: scale(1.04); }
.car-list-body { flex: 1; padding: 20px 24px; display: flex; flex-direction: column; justify-content: space-between; }
.car-list-title { font-size: 1.15rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; line-height: 1.3; }
.car-list-actions { display: flex; gap: 8px; }
.car-list-actions a { padding: 9px 18px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; transition: all var(--t) var(--ease); }

/* ===== CAR DETAIL PAGE — GALLERY SLIDER ===== */

/* Outer wrapper */
.cd-gallery { margin-bottom: 20px; }

/* Slider wrapper & slides */
.cd-slider-wrap {
    position: relative;
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    user-select: none;
}
.cd-slides { position: relative; }
.cd-slide {
    display: none;
    position: relative;
}
.cd-slide.active { display: block; }
.cd-slide img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    cursor: zoom-in;
    display: block;
    transition: opacity .25s ease;
}
@media (max-width: 576px) { .cd-slide img { height: 240px; } }

/* Arrows */
.cd-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,.55);
    color: #fff;
    border: none;
    width: 42px; height: 42px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s;
    display: flex; align-items: center; justify-content: center;
}
.cd-arrow:hover { background: rgba(192,57,43,.9); }
.cd-arrow-prev { left: 12px; }
.cd-arrow-next { right: 12px; }

/* Counter badge */
.cd-slide-counter {
    position: absolute;
    bottom: 10px; right: 12px;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    pointer-events: none;
}

/* Sold stamp */
.cd-sold-stamp {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%) rotate(-12deg);
    background: rgba(0,0,0,.75);
    color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 4px;
    padding: 10px 36px;
    border-radius: 6px;
    border: 4px solid rgba(255,255,255,.3);
    pointer-events: none;
}

/* Thumbnail strip */
.cd-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: #c0392b #eee;
}
.cd-thumbs::-webkit-scrollbar { height: 4px; }
.cd-thumbs::-webkit-scrollbar-track { background: #eee; border-radius: 2px; }
.cd-thumbs::-webkit-scrollbar-thumb { background: #c0392b; border-radius: 2px; }

.cd-thumb {
    flex: 0 0 80px;
    height: 58px;
    padding: 0;
    border: 2px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    background: none;
    transition: border-color .2s, transform .2s;
}
.cd-thumb:hover { border-color: #c0392b; transform: scale(1.05); }
.cd-thumb.active { border-color: #c0392b; box-shadow: 0 0 0 2px rgba(192,57,43,.3); }
.cd-thumb img { width: 80px; height: 54px; object-fit: cover; display: block; }

/* ===== LIGHTBOX ===== */
.cd-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.93);
    align-items: center;
    justify-content: center;
    animation: lbFadeIn .2s ease;
}
.cd-lightbox.open { display: flex; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }

.cd-lb-inner {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
    position: relative;
}
.cd-lb-inner img {
    max-width: 90vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0,0,0,.6);
    display: block;
    margin: 0 auto;
}
.cd-lb-caption {
    color: rgba(255,255,255,.7);
    font-size: 0.85rem;
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Lightbox arrows */
.cd-lb-arrow {
    background: rgba(255,255,255,.12);
    color: #fff;
    border: none;
    width: 52px; height: 52px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s;
    display: flex; align-items: center; justify-content: center;
    margin: 0 14px;
}
.cd-lb-arrow:hover { background: rgba(192,57,43,.85); }

/* Lightbox close */
.cd-lb-close {
    position: absolute;
    top: 16px; right: 16px;
    z-index: 10001;
    background: rgba(255,255,255,.12);
    color: #fff;
    border: none;
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background .2s;
    display: flex; align-items: center; justify-content: center;
}
.cd-lb-close:hover { background: rgba(192,57,43,.9); }

.price-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    position: sticky; top: 80px;
    border-top: 4px solid var(--red);
}
.price-card .big-price { font-size: 2rem; font-weight: 900; color: var(--red); }
.price-card .monthly-est { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.spec-table { width: 100%; font-size: 0.82rem; }
.spec-table tr td { padding: 9px 0; border-bottom: 1px solid var(--border); }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table td:first-child { color: var(--muted); font-weight: 500; width: 45%; }
.spec-table td:last-child { font-weight: 700; color: var(--dark); }
.key-spec-bar {
    display: flex; flex-wrap: wrap; gap: 10px;
    background: #f0f2f5;
    border: 1px solid #e0e3ea;
    border-radius: var(--radius);
    padding: 14px 18px; margin-bottom: 20px;
}
.key-spec {
    flex: 1 1 100px; text-align: center;
    padding: 8px 10px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius);
    transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
}
.key-spec:hover { background: rgba(192,192,192,0.05); border-color: rgba(192,192,192,0.2); }
.key-spec-val { font-size: 1rem; font-weight: 700; color: #1a1a1a; }
.key-spec-lbl { font-size: 0.65rem; color: #888; text-transform: uppercase; letter-spacing: 0.8px; margin-top: 3px; }

/* ===== FORMS ===== */
.form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
}
.form-card label { font-size: 0.82rem; font-weight: 600; color: #444; margin-bottom: 6px; display: block; }
.form-card .form-control, .form-card .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.88rem;
    padding: 10px 14px;
    transition: border-color var(--t), box-shadow var(--t);
}
.form-card .form-control:focus, .form-card .form-select:focus {
    border-color: var(--red); box-shadow: 0 0 0 3px var(--red-glow); outline: none;
}
.form-card .btn-submit {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff; border: none;
    padding: 12px 32px; font-weight: 700; font-size: 0.9rem;
    border-radius: 50px; cursor: pointer;
    width: 100%;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.form-card .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--red-glow); }

/* ===== FOOTER ===== */
#siteFooter {
    background: #f8f9fa;
    padding: 60px 0 0;
    position: relative; overflow: hidden;
    border-top: 3px solid var(--red);
}
#siteFooter::before { display: none; }
.footer-brand-name { color: #1a1a1a; font-size: 1.2rem; font-weight: 800; line-height: 1; }
.footer-brand-tag  { color: var(--red); font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-top: 3px; }
.footer-desc       { color: #666; font-size: 0.82rem; line-height: 1.8; margin-top: 14px; }

.footer-heading    { color: #1a1a1a; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid rgba(0,0,0,0.08); }
.footer-links      { list-style: none; padding: 0; margin: 0; }
.footer-links li   { margin-bottom: 9px; }
.footer-links a    { color: #666; font-size: 0.82rem; transition: color var(--t), padding-left var(--t) var(--ease); display: flex; align-items: center; gap: 7px; }
.footer-links a i  { color: var(--red); font-size: 0.7rem; }
.footer-links a:hover { color: var(--red); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; color: #555; font-size: 0.82rem; line-height: 1.6; }
.footer-contact-item i { color: var(--red); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: #555; }
.footer-contact-item a:hover { color: var(--red); }

.footer-bottom {
    background: #eceef2;
    margin-top: 48px; padding: 16px 0;
    font-size: 0.78rem; color: #777;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
    border-top: 1px solid #dde0e8;
}
.footer-bottom a { color: #888; transition: color var(--t); }
.footer-bottom a:hover { color: var(--red); }
.footer-credit {
    background: #e4e6ec;
    border-top: 1px solid #d4d7e1;
    text-align: center;
    padding: 10px 0;
    font-size: 0.74rem;
    color: #888;
    letter-spacing: 0.01em;
}
.footer-credit a { color: #555; font-weight: 600; text-decoration: none; transition: color var(--t); }
.footer-credit a:hover { color: var(--red); }

/* Floating CTA */
.floating-cta {
    position: fixed; right: 20px; bottom: 20px;
    display: flex; flex-direction: column; gap: 10px; z-index: 9999;
}
.float-btn {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff; text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.float-btn:hover { transform: scale(1.12) translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); color: #fff; }
.float-btn-wa  { background: linear-gradient(135deg, #25D366, #128C7E); }
.float-btn-ph  { background: linear-gradient(135deg, var(--red), var(--red-dark)); }

/* ===== MISC / PAGES ===== */
/* Contact info cards (contact.php sidebar) */
.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    border-left: 4px solid var(--red);
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
    width: 40px; height: 40px;
    min-width: 40px;
    background: var(--red-glow, #fff0f0);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--red);
}
.contact-info-item strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #999;
    margin-bottom: 2px;
}
.contact-info-item p, .contact-info-item a {
    font-size: 0.92rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
}
.contact-info-item a:hover { color: var(--red); text-decoration: none; }

/* Opening hours rows */
.contact-info-card .d-flex.justify-content-between {
    padding: 8px 0;
    border-bottom: 1px solid #f4f4f4;
    font-size: 0.88rem;
}
.contact-info-card .d-flex.justify-content-between:last-child { border-bottom: none; }

.contact-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--red);
    transition: transform var(--t) var(--ease);
}
.contact-card:hover { transform: translateY(-4px); }
.contact-card-icon {
    width: 54px; height: 54px;
    background: var(--red-glow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--red); margin-bottom: 14px;
}

/* ===== REVIEWS PAGE ===== */

/* Stats bar */
.rv-stats-bar {
    background: var(--primary, #1e1e1e);
    padding: 48px 0;
}
.rv-stats-grid {
    display: grid;
    grid-template-columns: 200px 1fr 260px;
    gap: 48px;
    align-items: center;
}
@media (max-width: 900px) {
    .rv-stats-grid { grid-template-columns: 1fr 1fr; }
    .rv-badges { grid-column: 1/-1; display: flex; gap: 16px; }
}
@media (max-width: 576px) {
    .rv-stats-grid { grid-template-columns: 1fr; }
    .rv-badges { flex-direction: column; }
}

/* Big score */
.rv-big-score { text-align: center; }
.rv-score-num {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    letter-spacing: -2px;
}
.rv-score-stars { font-size: 1.3rem; margin: 8px 0 6px; letter-spacing: 3px; }
.rv-score-label { color: rgba(255,255,255,0.55); font-size: 0.82rem; }

/* Rating bars */
.rv-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.rv-bar-label { color: rgba(255,255,255,0.7); font-size: 0.8rem; width: 36px; flex-shrink: 0; }
.rv-bar-label i { color: #f4b400; font-size: 0.65rem; }
.rv-bar-track {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.12);
    border-radius: 99px;
    overflow: hidden;
}
.rv-bar-fill {
    height: 100%;
    background: #f4b400;
    border-radius: 99px;
    transition: width 1s var(--ease);
}
.rv-bar-pct { color: rgba(255,255,255,0.55); font-size: 0.75rem; width: 34px; text-align: right; flex-shrink: 0; }

/* Badges */
.rv-badges { display: flex; flex-direction: column; gap: 12px; }
.rv-badge-box {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.rv-badge-box i { font-size: 1.4rem; color: #f4b400; flex-shrink: 0; }
.rv-badge-title { display: block; color: #fff; font-weight: 700; font-size: 0.88rem; }
.rv-badge-sub   { display: block; color: rgba(255,255,255,0.5); font-size: 0.75rem; }

/* Reviews grid */
.rv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
@media (max-width: 992px) { .rv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .rv-grid { grid-template-columns: 1fr; } }

/* Review card */
.rv-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    border-bottom: 3px solid transparent;
}
.rv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.11);
    border-bottom-color: var(--red);
}
.rv-card-top { display: flex; align-items: center; gap: 12px; }
.rv-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 800; color: #fff;
    flex-shrink: 0;
    letter-spacing: 1px;
}
.rv-card-name  { font-weight: 700; font-size: 0.92rem; color: #1a1a1a; }
.rv-card-date  { font-size: 0.75rem; color: #aaa; margin-top: 1px; }
.rv-card-stars { font-size: 0.8rem; letter-spacing: 1px; white-space: nowrap; }
.rv-card-text  { font-size: 0.875rem; color: #555; line-height: 1.75; font-style: italic; flex: 1; margin: 0; }
.rv-card-footer { border-top: 1px solid #f0f0f0; padding-top: 12px; margin-top: auto; }
.rv-verified   { font-size: 0.75rem; color: #16a34a; font-weight: 600; }
.rv-verified i { margin-right: 4px; }

/* Write a review section */
.rv-form-section {
    padding: 80px 0;
    background: #fff;
}
.rv-form-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
@media (max-width: 992px) { .rv-form-wrap { grid-template-columns: 1fr; gap: 40px; } }

.rv-form-points { display: flex; flex-direction: column; gap: 12px; }
.rv-form-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #444;
}
.rv-form-point i { color: #16a34a; font-size: 1rem; flex-shrink: 0; }

/* Star rating input */
.rv-star-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}
.rv-star-input input[type="radio"] { display: none; }
.rv-star-input label {
    font-size: 1.8rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.15s;
    line-height: 1;
}
.rv-star-input input:checked ~ label,
.rv-star-input label:hover,
.rv-star-input label:hover ~ label { color: #f4b400; }

/* Success state */
.rv-success-msg {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}
.rv-success-icon {
    width: 64px; height: 64px;
    background: #16a34a;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: #fff;
    margin: 0 auto 20px;
}
.rv-success-msg h4 { color: #15803d; font-weight: 800; margin-bottom: 10px; }
.rv-success-msg p  { color: #555; font-size: 0.92rem; }

/* Service sections */
.svc-link-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-bottom: 4px solid transparent;
    transition: all var(--t) var(--ease);
    height: 100%;
}
.svc-link-box:hover { border-bottom-color: var(--red); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--red-glow); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--red); margin: 0 auto 16px; transition: background var(--t) var(--ease), transform var(--t) var(--ease); }
.svc-link-box:hover .svc-icon { background: var(--red); color: #fff; transform: rotate(10deg) scale(1.1); }

/* Pagination */
.pagination-bar .page-link { border: 1.5px solid var(--border); color: #333; padding: 8px 14px; font-size: 0.82rem; font-weight: 600; border-radius: var(--radius) !important; margin: 0 2px; transition: all var(--t) var(--ease); }
.pagination-bar .page-link:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-1px); }
.pagination-bar .page-item.active .page-link { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 4px 12px var(--red-glow); }

/* Toasts / Alerts */
.alert-modern { border: none; border-radius: var(--radius); padding: 14px 18px; font-size: 0.85rem; font-weight: 500; border-left: 4px solid; }
.alert-modern.alert-success { background: #f0fdf4; border-left-color: #22c55e; color: #166534; }
.alert-modern.alert-danger  { background: #fff1f2; border-left-color: var(--red); color: var(--red-dark); }

/* ===== INNER-PAGE UTILITY ===== */
.section-pad { padding: 64px 0; }
.bg-light-custom { background: var(--light-custom) !important; }

.section-label {
    display: inline-block;
    background: var(--red-glow);
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
}
.section-subtitle { font-size: 0.95rem; color: var(--muted); max-width: 560px; margin: 8px auto 0; line-height: 1.7; }

.section-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 16px;
}
.section-divider i { color: #f59e0b; font-size: 0.8rem; }

/* Page section-header (centered) */
.section-header:not(.latest-section .section-header) {
    text-align: center;
    margin-bottom: 36px;
}

/* form-card-title */
.form-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-card-title i { color: var(--red); }

/* ===== WARRANTY PAGE ===== */
.about-check-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}
.about-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.88rem;
    color: #333;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.about-check-list li:last-child { border-bottom: none; }
.about-check-list li i { color: var(--red); margin-top: 2px; flex-shrink: 0; }

.warranty-cover-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid transparent;
    transition: border-color var(--t) var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
    height: 100%;
}
.warranty-cover-card:hover { border-bottom-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.wc-icon {
    width: 48px; height: 48px;
    background: var(--red-glow);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--red);
    margin-bottom: 14px;
}
.wc-title { font-size: 0.95rem; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
.wc-desc  { font-size: 0.82rem; color: #666; line-height: 1.6; margin: 0; }

/* Included warranty banner */
.warranty-included-bar {
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 4px 20px rgba(22,163,74,0.25);
}
.wib-icon {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #fff;
    flex-shrink: 0;
}
.wib-title { font-size: 1rem; font-weight: 800; color: #fff; }
.wib-sub   { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-top: 2px; }
.wib-badge {
    background: #fff;
    color: #16a34a;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
}

.warranty-plan {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.warranty-plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.warranty-plan.popular { border-color: var(--red); }
.wp-popular-badge {
    position: absolute; top: 14px; right: 14px;
    background: var(--red); color: #fff;
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 4px 12px; border-radius: 50px;
}
.wp-header {
    background: linear-gradient(135deg, #0d0d0d, #1e1e1e);
    padding: 28px 24px 22px;
    text-align: center;
}
.wp-name     { font-size: 1.1rem; font-weight: 800; color: #fff; }
.wp-duration { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.wp-price    { font-size: 1.4rem; font-weight: 800; color: var(--red); margin-top: 10px; }
.wp-features {
    list-style: none;
    padding: 20px 24px;
    margin: 0;
    flex: 1;
}
.wp-features li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0;
    font-size: 0.85rem; color: #333;
    border-bottom: 1px solid var(--border);
}
.wp-features li:last-child { border-bottom: none; }
.wp-features li i.fa-check { color: #22c55e; }
.wp-features li i.fa-times { color: #ccc; }
.wp-features li.text-muted { color: #aaa !important; }
.wp-features li + a { margin: 0 24px 24px; }

.btn-outline-gold {
    background: transparent;
    border: 2px solid #d4a017;
    color: #d4a017;
    padding: 10px 24px;
    font-weight: 700; font-size: 0.85rem;
    border-radius: 50px;
    transition: background var(--t), color var(--t);
    display: inline-block;
    text-align: center;
}
.btn-outline-gold:hover { background: #d4a017; color: #fff; }

/* ===== WARRANTY T&C SECTION ===== */
.wt-wrap { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }

.wt-block {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    border-left: 4px solid var(--red);
}
.wt-block-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}
.wt-block-header h5 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a1a1a;
}
.wt-block-icon {
    width: 42px; height: 42px;
    background: var(--red-glow, rgba(192,192,192,0.1));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--red);
    flex-shrink: 0;
}
.wt-icon-green  { background: rgba(22,163,74,0.1);  color: #16a34a; }
.wt-icon-orange { background: rgba(234,88,12,0.1);  color: #ea580c; }
.wt-icon-red    { background: rgba(220,38,38,0.1);  color: #dc2626; }
.wt-block-icon.wt-icon-green  { color: #16a34a; }
.wt-block-icon.wt-icon-orange { color: #ea580c; }
.wt-block-icon.wt-icon-red    { color: #dc2626; }

.wt-intro { font-size: 0.9rem; color: #555; line-height: 1.75; margin-bottom: 20px; }

.wt-components-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (max-width: 768px) { .wt-components-grid { grid-template-columns: 1fr; } }

.wt-component {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 14px 16px;
    border-left: 3px solid var(--red);
}
.wt-comp-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.wt-comp-title i { color: var(--red); font-size: 0.75rem; }
.wt-component p { font-size: 0.8rem; color: #666; line-height: 1.6; margin: 0; }

.wt-excl-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
}
.wt-excl-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.88rem; color: #444;
    padding: 10px 14px;
    background: #fff8f8;
    border-radius: 8px;
    border-left: 3px solid #dc2626;
}
.wt-excl-list li i { color: #dc2626; font-size: 0.85rem; flex-shrink: 0; }

.wt-consumables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
@media (max-width: 576px) { .wt-consumables-grid { grid-template-columns: 1fr; } }

.wt-consumable {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.85rem; color: #444;
    padding: 10px 14px;
    background: #fff8f0;
    border-radius: 8px;
    border-left: 3px solid #ea580c;
}
.wt-consumable i { color: #ea580c; font-size: 0.8rem; flex-shrink: 0; }

.wt-note {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 16px 18px;
    border-radius: 10px;
    font-size: 0.87rem;
    line-height: 1.7;
}
.wt-note i { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.wt-note-grey { background: #f4f6f8; color: #555; border: 1px solid #e2e6ea; }
.wt-note-grey i { color: #6c757d; }
.wt-note-red { background: #fff5f5; color: #333; border: 1px solid #fecaca; }
.wt-note-red i { color: #dc2626; }

/* ===== WORKSHOP PAGE ===== */
.info-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid transparent;
    transition: border-color var(--t) var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
    height: 100%;
}
.info-card:hover { border-bottom-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card-icon {
    width: 52px; height: 52px;
    background: var(--red-glow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--red);
    margin: 0 auto 14px;
    transition: background var(--t) var(--ease);
}
.info-card:hover .info-card-icon { background: var(--red); color: #fff; }
.info-card-title { font-size: 0.95rem; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
.info-card-sub   { font-size: 0.78rem; color: #888; line-height: 1.5; margin: 0; }

/* ===== PART EXCHANGE PAGE ===== */
.px-steps { display: flex; flex-direction: column; gap: 14px; }
.px-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--red);
}
.px-step-num {
    width: 32px; height: 32px; flex-shrink: 0;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; font-weight: 800;
}

/* ===== FINANCE PAGE ===== */
.finance-option-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 22px 18px;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid transparent;
    transition: border-color var(--t) var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
    height: 100%;
}
.finance-option-card:hover { border-bottom-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.finance-icon {
    width: 44px; height: 44px;
    background: var(--red-glow);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--red);
    margin-bottom: 12px;
    transition: background var(--t) var(--ease);
}
.finance-option-card:hover .finance-icon { background: var(--red); color: #fff; }
.finance-option-card h5 { font-size: 0.95rem; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
.finance-option-card p  { font-size: 0.8rem; color: #666; line-height: 1.6; margin: 0; }

/* ===== AUTOTRADER AWARDS SECTION ===== */
/* ===== TRUST SECTION (AUTOTRADER + MOTOR OMBUDSMAN) ===== */
.at-awards-section {
    background: #fff;
    padding: 80px clamp(20px, 5vw, 60px);
    position: relative;
    overflow: hidden;
}
.at-awards-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Eyebrow label */
.trust-eyebrow {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(0,0,0,0.3);
    margin-bottom: 52px;
    position: relative;
}

/* Two cards row */
.trust-cards-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    max-width: 100%;
    position: relative;
}

.trust-card-at {
    max-width: 680px;
    width: 100%;
}

/* Base card */
.trust-card {
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    border: 1.5px solid rgba(255,255,255,0.07);
    background: #242424;
    box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}

/* Glow blobs */
.trust-card-glow {
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    pointer-events: none;
    top: -60px; right: -60px;
}
.trust-card-glow-at  { background: #c0c0c0; }
.trust-card-glow-tmo { background: #c0c0c0; top: auto; bottom: -60px; left: -60px; right: auto; }

/* Inner padding */
.trust-card-inner {
    position: relative;
    z-index: 1;
    padding: 44px 40px;
    height: 100%;
}
.trust-card-inner-tmo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Year pill — kept for TMO only */
.trust-card-year-pill-tmo {
    display: inline-flex;
    align-items: center;
    background: rgba(192,192,192,0.1);
    border: 1px solid rgba(192,192,192,0.25);
    color: #c0c0c0;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

/* AutoTrader brand text */
.trust-card-brand {
    font-size: 1.1rem;
    color: rgba(200,200,200,0.6);
    letter-spacing: -0.5px;
    display: block;
    margin-bottom: 10px;
}
.trust-card-brand strong { color: #fff; font-weight: 900; }

/* Card title */
.trust-card-title {
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 28px;
}
.trust-card-title span { color: var(--red); }
.trust-card-tmo .trust-card-title span { color: #c0c0c0; }

/* AutoTrader badges — 4 per row */
.at-awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.at-award-card {
    background: #1a1a1a;
    border: 1.5px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 12px 8px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.at-award-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(192,192,192,0.12);
}
.at-award-card img { width: 100%; height: auto; object-fit: contain; display: block; }
.at-award-card-year { font-size: 0.68rem; font-weight: 700; color: rgba(200,200,200,0.55); text-align: center; }

/* TMO stamp hero */
.tmo-stamp-hero {
    width: 180px;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 20px rgba(192,192,192,0.15));
    transition: transform 0.5s ease, filter 0.4s ease;
}
.tmo-stamp-hero:hover { transform: rotate(5deg) scale(1.07); filter: drop-shadow(0 8px 32px rgba(192,192,192,0.25)); }

/* Credential list */
.tmo-cred-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    width: 100%;
    max-width: 280px;
}
.tmo-cred-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(200,210,235,0.82);
}
.tmo-cred-list i { color: #c0c0c0; font-size: 0.95rem; flex-shrink: 0; }

/* Responsive */
@media (max-width: 991px) {
    .trust-cards-row { grid-template-columns: 1fr; }
    .trust-card-inner { padding: 36px 28px; }
}
@media (max-width: 575px) {
    .at-awards-section { padding: 52px 20px; }
    .trust-card-inner { padding: 28px 20px; }
    .at-awards-grid { grid-template-columns: repeat(4, 1fr); gap: 7px; }
}

/* ===== ANIMATIONS (AOS fallback) ===== */ { opacity: 0; transition-property: opacity, transform; transition-duration: 0.6s; transition-timing-function: var(--ease); }
[data-aos="fade-up"]    { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos="zoom-in"]    { transform: scale(0.9); }
[data-aos].aos-animate  { opacity: 1 !important; transform: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .uc-layout { grid-template-columns: 240px 1fr; }
}
@media (max-width: 991px) {
    .uc-layout { grid-template-columns: 1fr; }
    .uc-sidebar { position: static; }
    .uc-filter-card { display: none; }
    .promo-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .promo-tile-large .promo-tile-body { min-height: 220px; }
}
@media (max-width: 767px) {
    .home-hero { min-height: 360px; }
    .hero-headline { font-size: 1.8rem; }
    .home-search-grid { grid-template-columns: 1fr; }
    .uc-card { flex-direction: column; }
    .uc-card-img-wrap { flex: none; height: 200px; }
    .uc-card-top { flex-direction: column; gap: 6px; }
    .uc-card-price-wrap { text-align: left; }
    .car-list-item { flex-direction: column; }
    .car-list-img-wrap { flex: none; height: 200px; }
    .deliver-banner .deliver-text h4 { font-size: 1.1rem; }
    .deliver-cta { display: none; }
    .promo-tile-half .promo-tile-body { min-height: 140px; }
    .promo-tile-icon { width: 44px; height: 44px; font-size: 1.1rem; }
    .welcome-card { padding: 22px; }
    .latest-section .section-header { flex-direction: column; align-items: flex-start; }
    .uc-page-title { font-size: 1.5rem; }
    .uc-header-stats { display: none; }
}
@media (max-width: 479px) {
    .hero-stats { gap: 14px; }
    .hero-stat-num { font-size: 1.2rem; }
}

/* ===== HOMEPAGE FULL-WIDTH SECTION CONTAINERS ===== */
.at-awards-section > .container,
.reviews-section > .container,
.welcome-section > .container,
.latest-section > .container,
#siteFooter > .container {
    max-width: 100%;
    padding-left: clamp(20px, 5vw, 60px);
    padding-right: clamp(20px, 5vw, 60px);
}


/* =====================================================
   WARRANTY PAGE REDESIGN
   ===================================================== */

/* Hero */
.wpage-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #181818 0%, #242424 50%, #1e1e1e 100%);
    overflow: hidden;
}
.wpage-hero-blob {
    position: absolute;
    right: -100px; top: -100px;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    opacity: 1;
    pointer-events: none;
}
.wpage-hero-inner {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
}
.wpage-breadcrumb { background: none; padding: 0; margin-bottom: 14px; }
.wpage-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.wpage-breadcrumb .breadcrumb-item a:hover { color: #fff; }
.wpage-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.45); }
.wpage-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }
.wpage-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -.02em;
}
.wpage-hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.72);
    max-width: 540px;
    line-height: 1.7;
    margin: 0;
}
.wpage-hero-sub strong { color: #fff; }

/* Trust Bar */
.wpage-trust-bar {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.07);
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.wtb-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
}
.wtb-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 26px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--primary);
}
.wtb-item i { color: var(--red); font-size: 1.05rem; }
.wtb-sep { width: 1px; height: 26px; background: #e5e7eb; }
@media (max-width: 575px) {
    .wtb-sep { display: none; }
    .wtb-item { width: 50%; padding: 8px 14px; font-size: .8rem; }
}

/* Coverage Cards */
.wcover-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: var(--radius-lg);
    padding: 22px 18px;
    height: 100%;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.wcover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(192,192,192,.13);
    border-color: var(--red);
}
.wcover-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--red-glow);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: var(--red);
    margin-bottom: 12px;
}
.wcover-title { font-weight: 700; font-size: .95rem; color: var(--primary); margin-bottom: 6px; }
.wcover-desc { font-size: .82rem; color: #6b7280; line-height: 1.55; margin: 0; }

/* Notice Box */
.wpage-notice-box {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 4px solid #f59e0b;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: .88rem;
    color: #78350f;
    line-height: 1.6;
}
.wpage-notice-box i { color: #f59e0b; font-size: 1.05rem; margin-top: 2px; flex-shrink: 0; }

/* Plans Section */
.wpage-plans-section { background: #f0f2f5; }

.wplan-free-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    background: linear-gradient(135deg, #0f4c27 0%, #166534 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 22px 28px;
    box-shadow: 0 6px 24px rgba(22,101,52,.25);
}
.wplan-fb-left { display: flex; align-items: center; gap: 16px; }
.wplan-fb-icon {
    width: 50px; height: 50px;
    background: rgba(255,255,255,.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.wplan-fb-title { font-weight: 700; font-size: 1.05rem; }
.wplan-fb-sub { font-size: .86rem; color: rgba(255,255,255,.78); margin-top: 2px; }
.wplan-fb-badge {
    background: #22c55e;
    color: #fff;
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: .12em;
    padding: 7px 20px;
    border-radius: 30px;
    white-space: nowrap;
}

/* Plan Cards */
.wplan-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    border: 2px solid transparent;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.wplan-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,.11); }
.wplan-card-popular {
    border-color: var(--red);
    box-shadow: 0 8px 34px rgba(192,192,192,.2);
    transform: translateY(-4px);
}
.wplan-card-popular:hover { transform: translateY(-10px); }
.wplan-popular-ribbon {
    background: var(--red);
    color: #fff;
    text-align: center;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 7px 0;
}
.wplan-header {
    padding: 28px 24px 22px;
    text-align: center;
    color: #fff;
}
.wplan-silver   { background: linear-gradient(135deg, #3a3a3a 0%, #4e4e4e 100%); }
.wplan-gold     { background: linear-gradient(135deg, #b8892a 0%, #d4aa50 100%); }
.wplan-platinum { background: linear-gradient(135deg, #2e2e2e 0%, #3a3a3a 100%); }
.wplan-tier-icon { font-size: 2rem; margin-bottom: 10px; opacity: .85; }
.wplan-name { font-size: 1.45rem; font-weight: 800; letter-spacing: .02em; margin-bottom: 4px; }
.wplan-months { font-size: .9rem; opacity: .82; margin-bottom: 12px; }
.wplan-ask {
    display: inline-block;
    background: rgba(255,255,255,.15);
    border-radius: 20px;
    font-size: .82rem;
    padding: 4px 16px;
}
.wplan-body { padding: 22px 24px; }
.wplan-list { list-style: none; padding: 0; margin: 0; }
.wplan-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: .9rem;
    border-bottom: 1px solid #f3f4f6;
}
.wplan-list li:last-child { border-bottom: none; }
.wpl-yes { color: var(--primary); }
.wpl-no  { color: #9ca3af; }
.wpl-yes i { color: #16a34a; }
.wpl-no  i { color: #d1d5db; }

/* CTA Strip */
.wpage-cta-strip {
    background: linear-gradient(135deg, #1e1e1e 0%, #2e2e2e 100%);
    padding: 64px 0;
}
.wpage-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px;
}
@media (max-width: 767px) {
    .wpage-cta-inner { flex-direction: column; text-align: center; }
    .wpage-cta-inner > div:last-child { justify-content: center; }
}

/* T&C Accordion */
.wtc-wrap { display: flex; flex-direction: column; gap: 10px; }
.wtc-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.wtc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-weight: 600;
    font-size: .97rem;
    color: var(--primary);
    transition: background var(--t);
}
.wtc-trigger:hover { background: #f9fafb; }
.wtc-trig-left { display: flex; align-items: center; gap: 14px; }
.wtc-trig-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
}
.wtc-icon-green  { background: #dcfce7; color: #16a34a; }
.wtc-icon-orange { background: #fff7ed; color: #ea580c; }
.wtc-icon-red    { background: #fef2f2; color: #dc2626; }
.wtc-chevron { transition: transform var(--t); color: #9ca3af; font-size: .85rem; }
.wtc-trigger:not(.collapsed) .wtc-chevron { transform: rotate(180deg); }
.wtc-body { padding: 4px 22px 22px; }

/* =============================================
   PROFESSIONAL DARK GRAY THEME
   ============================================= */

/* ── Palette ────────────────────────────────────
   --navy-900 : #0a0a0a  (deepest – footer bar)
   --navy-800 : #131313  (footer body)
   --navy-700 : #1a1a1a  (page base)
   --navy-600 : #242424  (cards / sections)
   --navy-500 : #333333  (highlight panels)
   --accent   : #c0c0c0  (brand blue)
   --gold     : #c9a84c  (optional warm accent)
   ──────────────────────────────────────────── */

html,
body {
    background: #1a1a1a !important;
    color: #e8eaf2 !important;
}

/* ── Sections ─────────────────────────────────── */
section,
.section,
.welcome-section,
.page-hero,
.page-hero-section,
.finance-section,
.warranty-section,
.workshop-section,
.contact-section,
.reviews-section,
.part-exchange-section,
.used-cars-section,
.inner-page-wrap,
.content-wrap {
    background: #1a1a1a !important;
    color: #e8eaf2 !important;
}

/* Alternating/light sections — subtle depth */
.section-light,
.bg-light,
.bg-white,
[class*="section--light"],
[class*="bg-grey"],
[class*="bg-gray"] {
    background: #242424 !important;
    color: #e8eaf2 !important;
}

/* ── Header & Navbar ──────────────────────────── */
#siteHeader,
#siteHeader.full-hero,
#mainNavbar,
#stickyNav {
    background: #161616 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    box-shadow: 0 2px 24px rgba(0,0,0,0.4) !important;
}
#siteHeader.full-hero {
    background: linear-gradient(160deg, #0a0a0a 0%, #1a1a1a 55%, #242424 100%) !important;
}
#siteHeader.full-hero::before {
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 60%) !important;
}
#siteTopbar {
    background: #0a0a0a !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

/* Hero copy */
.hero-headline,
.hero-headline span { color: #fff !important; text-shadow: 0 2px 24px rgba(0,0,0,0.3); }
.hero-sub           { color: rgba(255,255,255,0.78) !important; }
.hero-stat-num      { color: #fff !important; }
.hero-stat-label    { color: rgba(255,255,255,0.65) !important; }
.hero-stat-sep      { border-color: rgba(255,255,255,0.18) !important; }
.hero-badge,
.hero-location-badge {
    background: rgba(255,255,255,0.09) !important;
    color: rgba(255,255,255,0.9) !important;
    border-color: rgba(255,255,255,0.18) !important;
    backdrop-filter: blur(8px);
}

/* Responsive navbar */
@media (max-width: 991px) {
    #mainNavbar,
    #mainNavbar .navbar-collapse { background: #161616 !important; border-top-color: rgba(255,255,255,0.07) !important; }
    #siteHeader, #siteHeader.full-hero { background: #1a1a1a !important; background-color: #1a1a1a !important; }
    #headerSearch { background: rgba(255,255,255,0.04) !important; border-top-color: rgba(255,255,255,0.1) !important; }
}
@media (max-width: 767px) {
    #siteHeader, #siteHeader.full-hero { background-color: #1a1a1a !important; }
}

/* Nav links */
#mainNavbar .navbar-nav .nav-link { color: rgba(255,255,255,0.82) !important; }
#mainNavbar .navbar-nav .nav-link:hover,
#mainNavbar .navbar-nav .nav-link.active { color: #fff !important; }
.logo-name { color: #fff !important; }
.logo-tagline { color: rgba(255,255,255,0.48) !important; }
.sticky-logo-name { color: #fff !important; }
.sticky-nav-link { color: rgba(255,255,255,0.75) !important; }
.sticky-nav-link:hover, .sticky-nav-link.active { color: #fff !important; background: rgba(255,255,255,0.08) !important; }

/* Dropdown */
#mainNavbar .dropdown-menu {
    background: #1a1a1a !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-top: 2px solid var(--red) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5) !important;
}
#mainNavbar .dropdown-item { color: rgba(255,255,255,0.78) !important; }
#mainNavbar .dropdown-item:hover { background: rgba(192,192,192,0.25) !important; color: #fff !important; padding-left: 24px; }

/* Navbar toggler MENU button */
.navbar-toggler-text {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}
.navbar-toggler-icon-custom { color: #c0c0c0; font-size: 0.9rem; }

/* Mobile toggle (dark theme) */
.navbar-toggler { border-color: rgba(255,255,255,0.25) !important; }
.navbar-toggler-icon { filter: invert(1); }
.navbar-toggler .navbar-toggler-text { color: #fff !important; }
.navbar-toggler .navbar-toggler-icon-custom { color: #c0c0c0 !important; }

/* ── Cards ────────────────────────────────────── */
.car-card,
.lv-card,
.review-card,
.feature-card,
.info-card,
.stat-card,
.step-card,
.why-card,
.service-card,
.finance-card,
.warranty-card,
.contact-card,
.card {
    background: #242424 !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25) !important;
    color: #e8eaf2 !important;
}
.car-card:hover,
.lv-card:hover {
    background: #333333 !important;
    border-color: rgba(192,192,192,0.4) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35) !important;
    transform: translateY(-3px);
}

/* Car price / badge inside card */
.lv-price, .car-price { color: #fff !important; }
.lv-badge, .badge-fuel, .badge-trans { background: rgba(192,192,192,0.25) !important; color: #e2e2e2 !important; }
.lv-card-body, .car-card-body { background: transparent !important; }

/* ── Typography ───────────────────────────────── */
h1, h2, h3, h4, h5, h6,
.section-title,
.car-title,
.card-title,
.page-title       { color: #fff !important; }
.section-title span { color: var(--red) !important; }

p,
.section-sub,
.car-meta,
.card-text        { color: rgba(232,234,242,0.78) !important; }
.text-muted       { color: rgba(232,234,242,0.55) !important; }

.section-badge {
    background: rgba(192,192,192,0.2) !important;
    color: #e2e2e2 !important;
    border: 1px solid rgba(192,192,192,0.3) !important;
}
.divider-red { background: var(--red) !important; }

/* ── Forms ────────────────────────────────────── */
.form-control,
.form-select,
.header-search-form select,
.hs-price-input {
    background: rgba(255,255,255,0.07) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    color: #fff !important;
    border-radius: 8px !important;
}
.form-control::placeholder,
.hs-price-input::placeholder { color: rgba(255,255,255,0.35) !important; }
.form-control:focus,
.form-select:focus,
.header-search-form select:focus {
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(192,192,192,0.7) !important;
    color: #fff !important;
    box-shadow: 0 0 0 3px rgba(192,192,192,0.18) !important;
}
.form-select option,
.header-search-form select option { background: #1a1a1a; color: #fff; }
.form-label, label { color: rgba(255,255,255,0.88) !important; }
textarea.form-control { background: rgba(255,255,255,0.07) !important; color: #fff !important; }

/* Search bar */
.header-search-form {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25) !important;
}
.hs-price-wrap {
    background: rgba(255,255,255,0.07) !important;
    border-color: rgba(255,255,255,0.14) !important;
}
.hs-price-sep  { color: rgba(255,255,255,0.3) !important; }
.hs-price-hint { color: rgba(255,255,255,0.4) !important; }
.hs-price-wrap .hs-price-input {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: #fff !important;
}
#headerSearch  { background: transparent !important; }

/* ── Footer ───────────────────────────────────── */
footer,
#siteFooter {
    background: #111111 !important;
    border-top: 2px solid rgba(192,192,192,0.45) !important;
    padding-top: 60px !important;
}

/* Footer headings */
.footer-heading {
    color: #fff !important;
    border-bottom-color: rgba(255,255,255,0.1) !important;
    font-size: 0.75rem !important;
    letter-spacing: 2.5px !important;
}

/* Footer body text */
.footer-desc { color: rgba(200,210,235,0.72) !important; }

/* Footer links */
.footer-links a         { color: rgba(200,210,235,0.68) !important; }
.footer-links a i       { color: var(--red) !important; }
.footer-links a:hover   { color: #fff !important; }

/* Footer contact items */
.footer-contact-item,
.footer-contact-item a  { color: rgba(200,210,235,0.72) !important; }
.footer-contact-item a:hover { color: #fff !important; }
.footer-contact-item i  { color: var(--red) !important; }

/* Opening hours inline text overrides */
#siteFooter .footer-links li span:first-child { color: rgba(200,210,235,0.65) !important; }
#siteFooter .footer-links li span:last-child  { color: #fff !important; }
#siteFooter .footer-links li                  { border-bottom-color: rgba(255,255,255,0.07) !important; }

/* Footer credit bar */
.footer-credit,
.footer-bottom {
    background: #080808 !important;
    border-top-color: rgba(255,255,255,0.06) !important;
    color: rgba(200,210,235,0.45) !important;
}
.footer-credit a   { color: rgba(200,210,235,0.6) !important; }
.footer-credit a:hover { color: #fff !important; }

/* ── Dividers & borders ───────────────────────── */
hr,
.divider   { border-color: rgba(255,255,255,0.08) !important; }
.border,
.border-bottom { border-color: rgba(255,255,255,0.08) !important; }

/* ── Icon boxes ───────────────────────────────── */
.why-icon-wrap,
.step-number,
.service-icon,
.info-icon {
    background: rgba(192,192,192,0.18) !important;
    border: 1px solid rgba(192,192,192,0.3) !important;
}

/* ── Service tiles ────────────────────────────── */
.svc-tile {
    background: #242424 !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
}
.svc-tile:hover { border-color: rgba(192,192,192,0.4) !important; }
.svc-tile-title, .svc-tile h3, .svc-tile h4 { color: #fff !important; }
.svc-tile p { color: rgba(200,210,235,0.72) !important; }

/* ── Reviews / testimonials ───────────────────── */
.review-card, .testimonial-card {
    background: #242424 !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
}
.review-name, .reviewer-name { color: #fff !important; }
.review-text, .testimonial-text { color: rgba(200,210,235,0.75) !important; }
.review-stars i, .star-filled { color: #f59e0b !important; }

/* rv-card (index homepage reviews grid) */
.rv-card {
    background: #242424 !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25) !important;
}
.rv-card:hover {
    background: #333333 !important;
    border-color: rgba(192,192,192,0.4) !important;
    box-shadow: 0 8px 36px rgba(0,0,0,0.35) !important;
}
.rv-card-text  { color: rgba(200,210,235,0.82) !important; }
.rv-card-name  { color: #fff !important; }
.rv-card-author { border-top-color: rgba(255,255,255,0.08) !important; }
.rv-card-footer { border-top-color: rgba(255,255,255,0.08) !important; }
.rv-card-date  { color: rgba(200,210,235,0.5) !important; }
.reviews-head-sub { color: rgba(200,210,235,0.75) !important; }

/* Welcome section */
.welcome-card {
    background: #242424 !important;
    border-left-color: var(--red) !important;
    box-shadow: 0 4px 32px rgba(0,0,0,0.3) !important;
}
.welcome-title      { color: #fff !important; }
.welcome-title span { color: #c8c8c8 !important; }
.welcome-body p     { color: rgba(200,210,235,0.82) !important; }
.welcome-body strong { color: #fff !important; }
.welcome-body a     { color: #c8c8c8 !important; }

/* Service link boxes (stats grid beside welcome card) */
.svc-link-box {
    background: #242424 !important;
    border-bottom-color: transparent !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25) !important;
}
.svc-link-box:hover {
    background: #333333 !important;
    border-bottom-color: var(--red) !important;
}
.svc-link-label { font-weight: 700; font-size: 0.9rem; color: #fff !important; }
.svc-link-sub   { font-size: 0.75rem; color: rgba(200,210,235,0.65) !important; margin-top: 4px; }

/* ── Stats / numbers ──────────────────────────── */
.stat-number, .count-number { color: #fff !important; }
.stat-label  { color: rgba(200,210,235,0.65) !important; }

/* ── Tabs ─────────────────────────────────────── */
.nav-tabs { border-bottom-color: rgba(255,255,255,0.1) !important; }
.nav-tabs .nav-link { color: rgba(255,255,255,0.6) !important; border-color: transparent !important; }
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover { color: #fff !important; border-bottom-color: var(--red) !important; background: transparent !important; }
.nav-pills .nav-link { color: rgba(255,255,255,0.65) !important; }
.nav-pills .nav-link.active { background: var(--red) !important; color: #fff !important; }

/* ── Alerts ───────────────────────────────────── */
.alert-success { background: rgba(22,163,74,0.18)  !important; border-color: rgba(22,163,74,0.3)  !important; color: #bbf7d0 !important; }
.alert-danger  { background: rgba(220,38,38,0.18)  !important; border-color: rgba(220,38,38,0.3)  !important; color: #fecaca !important; }
.alert-info    { background: rgba(192,192,192,0.18)  !important; border-color: rgba(192,192,192,0.3)  !important; color: #bfdbfe !important; }
.alert-warning { background: rgba(217,119,6,0.18)  !important; border-color: rgba(217,119,6,0.3)  !important; color: #fde68a !important; }

/* ── Accordions / FAQ ─────────────────────────── */
.accordion-item {
    background: #242424 !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    margin-bottom: 4px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}
.accordion-button {
    background: #242424 !important;
    color: #fff !important;
    font-weight: 600 !important;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    background: #333333 !important;
    color: #fff !important;
    box-shadow: none !important;
}
.accordion-button::after { filter: brightness(0) invert(1); }
.accordion-body { background: #1a1a1a !important; color: rgba(200,210,235,0.82) !important; }

.wtc-item    { background: #1a1a1a !important; }
.wtc-trigger { background: #242424 !important; color: #fff !important; }
.wtc-trigger:hover { background: #333333 !important; }
.wtc-body { background: #1a1a1a !important; color: rgba(200,210,235,0.82) !important; }
.wtc-icon-green  { background: rgba(22,163,74,0.15) !important; }
.wtc-icon-orange { background: rgba(234,88,12,0.15) !important; }
.wtc-icon-red    { background: rgba(220,38,38,0.15) !important; }

/* ── Tables ───────────────────────────────────── */
.table { color: #e8eaf2 !important; }
.table > :not(caption) > * > * { border-color: rgba(255,255,255,0.07) !important; background-color: transparent !important; }
.table-striped > tbody > tr:nth-of-type(odd) > * { background-color: rgba(255,255,255,0.03) !important; color: #e8eaf2 !important; }
.table-hover > tbody > tr:hover > * { background-color: rgba(192,192,192,0.12) !important; color: #fff !important; }
.table thead th { border-bottom: 2px solid rgba(192,192,192,0.4) !important; color: rgba(200,210,235,0.7) !important; font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; }

/* ── Badges ───────────────────────────────────── */
.badge.bg-light     { background: rgba(255,255,255,0.1) !important; color: #fff !important; }
.badge.bg-secondary { background: rgba(255,255,255,0.1) !important; color: rgba(200,210,235,0.75) !important; }
.badge.bg-success   { background: rgba(22,163,74,0.25)  !important; color: #bbf7d0 !important; }
.badge.bg-danger    { background: rgba(220,38,38,0.25)  !important; color: #fecaca !important; }

/* ── Misc ─────────────────────────────────────── */
.text-dark, .text-black { color: #e8eaf2 !important; }
.bg-white               { background: #242424 !important; }
.shadow, .shadow-sm, .shadow-md { box-shadow: 0 4px 24px rgba(0,0,0,0.35) !important; }
a.text-dark, a.text-black       { color: rgba(200,210,235,0.82) !important; }
a.text-dark:hover, a.text-black:hover { color: #fff !important; }

/* Scrollbar */
::-webkit-scrollbar-track { background: #1a1a1a !important; }
::-webkit-scrollbar-thumb { background: rgba(192,192,192,0.55) !important; }
::-webkit-scrollbar-thumb:hover { background: var(--red) !important; }

/* Float buttons */
.float-btn { box-shadow: 0 4px 16px rgba(0,0,0,0.4) !important; }

/* ── Trust / Accreditation cards ──────────────── */
.trust-card {
    background: #242424 !important;
    border-color: rgba(255,255,255,0.08) !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3) !important;
}
.trust-eyebrow { color: rgba(200,210,235,0.5) !important; }
.trust-card-brand { color: rgba(200,210,235,0.8) !important; }
.trust-card-brand strong { color: #fff !important; }
.trust-card-title { color: #fff !important; }
.trust-card-title span { color: #c8c8c8 !important; }
.trust-card-tmo .trust-card-title span { color: #c0c0c0 !important; }
.trust-card-year-pill-tmo { background: rgba(192,192,192,0.12) !important; border-color: rgba(192,192,192,0.3) !important; color: #c0c0c0 !important; }
.trust-card-glow-at  { opacity: 0.18 !important; }
.trust-card-glow-tmo { opacity: 0.18 !important; }

/* ═══════════════════════════════════════════════════════
   ALL-PAGES DARK THEME — COMPONENTS v2
   ═══════════════════════════════════════════════════════ */

/* ── Section backgrounds (override inline styles too) ── */
.bg-light-custom                     { background: #1a1a1a !important; }
.section-pad                         { background: #1a1a1a !important; }
.wpage-plans-section                 { background: #141414 !important; }
.section-label                       { background: rgba(192,192,192,0.18) !important; color: #e2e2e2 !important; }
.section-subtitle                    { color: rgba(200,210,235,0.72) !important; }
.form-card-title                     { color: #fff !important; border-bottom-color: rgba(255,255,255,0.1) !important; }
.form-card-title i                   { color: var(--red) !important; }

/* ── Used Cars page ──────────────────────────────────── */
.uc-body                             { background: #141414 !important; }
.uc-filter-card                      { background: #242424 !important; border: 1px solid rgba(255,255,255,0.07) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.25) !important; }
.uc-filter-group                     { border-bottom-color: rgba(255,255,255,0.06) !important; }
.uc-filter-label                     { color: rgba(200,210,235,0.6) !important; }
.uc-filter-select,
.uc-filter-input                     { background: rgba(255,255,255,0.07) !important; border-color: rgba(255,255,255,0.12) !important; color: #fff !important; }
.uc-filter-select option,
.uc-filter-input option              { background: #1a1a1a; color: #fff; }
#cf-price-hint                       { color: rgba(200,210,235,0.5) !important; }
.uc-sort-bar                         { background: #242424 !important; border: 1px solid rgba(255,255,255,0.07) !important; box-shadow: none !important; }
.uc-sort-count                       { color: rgba(200,210,235,0.75) !important; }
.uc-sort-count strong                { color: #fff !important; }
.uc-sort-label                       { color: rgba(200,210,235,0.65) !important; }
.uc-sort-select                      { background: rgba(255,255,255,0.07) !important; border-color: rgba(255,255,255,0.12) !important; color: #fff !important; }
.uc-sort-select option               { background: #1a1a1a; color: #fff; }
.uc-card                             { background: #242424 !important; border-color: rgba(255,255,255,0.07) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.2) !important; }
.uc-card:hover                       { background: #333333 !important; border-color: rgba(192,192,192,0.35) !important; }
.uc-card-body                        { background: transparent !important; }
.uc-card-title                       { color: #fff !important; }
.uc-card-title a                     { color: #fff !important; }
.uc-card-title a:hover               { color: #c8c8c8 !important; }
.uc-card-desc                        { color: rgba(200,210,235,0.65) !important; }
.uc-card-price-sub                   { color: rgba(200,210,235,0.5) !important; }
.uc-chip                             { background: rgba(192,192,192,0.18) !important; border: 1px solid rgba(192,192,192,0.25) !important; color: #e2e2e2 !important; }
.uc-filter-tag                       { background: rgba(185,28,28,0.2) !important; border-color: rgba(185,28,28,0.35) !important; color: #fca5a5 !important; }
.uc-filter-tag a                     { color: #fca5a5 !important; }

/* ── Finance page ───────────────────────────────────── */
.finance-option-card                 { background: #242424 !important; border-color: rgba(255,255,255,0.07) !important; box-shadow: 0 4px 18px rgba(0,0,0,0.25) !important; }
.finance-option-card h5              { color: #fff !important; }
.finance-option-card p               { color: rgba(200,210,235,0.72) !important; }
.feature-box                         { position: relative !important; overflow: hidden !important; height: 220px !important; display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; background: #1a1a2a !important; border: 1.5px solid rgba(255,255,255,0.28) !important; border-radius: 14px !important; padding: 36px 18px 28px !important; text-align: center !important; transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important; }
.feature-box:hover                   { transform: translateY(-6px) !important; border-color: rgba(var(--ic-r,192),var(--ic-g,192),var(--ic-b,192),0.7) !important; box-shadow: 0 16px 40px rgba(var(--ic-r,192),var(--ic-g,192),var(--ic-b,192),0.28) !important; }
.feature-box .feature-bg-icon        { position: absolute !important; top: 50% !important; left: 50% !important; transform: translate(-50%, -50%) !important; font-size: 7.5rem !important; color: rgba(var(--ic-r,192),var(--ic-g,192),var(--ic-b,192),0.14) !important; pointer-events: none !important; z-index: 0 !important; line-height: 1 !important; transition: opacity 0.25s ease !important; }
.feature-box:hover .feature-bg-icon  { opacity: 0.28 !important; }
.feature-box h5                      { color: #fff !important; font-size: 0.92rem !important; font-weight: 700 !important; margin-bottom: 8px !important; position: relative !important; z-index: 1 !important; }
.feature-box p                       { color: rgba(200,210,235,0.78) !important; font-size: 0.78rem !important; line-height: 1.6 !important; margin: 0 !important; position: relative !important; z-index: 1 !important; }
.reasons-grid                        { display: grid !important; grid-template-columns: repeat(2,1fr) !important; grid-auto-rows: 220px !important; gap: 1.5rem !important; }
@media (min-width:576px)             { .reasons-grid { grid-template-columns: repeat(3,1fr) !important; } }
@media (min-width:768px)             { .reasons-grid { grid-template-columns: repeat(6,1fr) !important; } }
.reasons-grid > .feature-box         { height: 100% !important; }
/* ── Part-exchange reason cards ─────────────────────── */
.px-reasons                          { display: grid !important; grid-template-columns: repeat(2,1fr) !important; gap: 1.25rem !important; }
@media (min-width:576px)             { .px-reasons { grid-template-columns: repeat(3,1fr) !important; } }
@media (min-width:992px)             { .px-reasons { grid-template-columns: repeat(6,1fr) !important; } }
.px-card                             { height: 200px !important; background: #1a1a2a !important; border: 1px solid rgba(255,255,255,0.1) !important; border-radius: 12px !important; padding: 22px 14px 18px !important; display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; text-align: center !important; overflow: hidden !important; transition: transform .25s ease, box-shadow .25s ease !important; }
.px-card:hover                       { transform: translateY(-5px) !important; box-shadow: 0 12px 28px rgba(0,0,0,0.4) !important; }
.px-card .px-icon                    { font-size: 2.4rem !important; line-height: 1 !important; margin-bottom: 12px !important; }
.px-card strong                      { display: block !important; color: #fff !important; font-size: 0.86rem !important; font-weight: 700 !important; margin-bottom: 6px !important; line-height: 1.3 !important; }
.px-card span                        { color: rgba(200,210,235,0.68) !important; font-size: 0.74rem !important; line-height: 1.55 !important; }

/* ── Form cards (all pages) ─────────────────────────── */
.form-card                           { background: #242424 !important; border: 1px solid rgba(255,255,255,0.07) !important; box-shadow: 0 4px 24px rgba(0,0,0,0.25) !important; }
.form-card label,
.form-card .form-label               { color: rgba(255,255,255,0.88) !important; }
.form-card .form-control,
.form-card .form-select              { background: rgba(255,255,255,0.07) !important; border-color: rgba(255,255,255,0.14) !important; color: #fff !important; }
h6.text-muted                        { color: rgba(200,210,235,0.65) !important; }

/* ── Contact page ───────────────────────────────────── */
.contact-info-card                   { background: #242424 !important; border: 1px solid rgba(255,255,255,0.07) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.25) !important; }
.contact-info-item                   { border-bottom-color: rgba(255,255,255,0.07) !important; }
.contact-info-item strong            { color: #fff !important; }
.contact-info-item p,
.contact-info-item a                 { color: rgba(200,210,235,0.72) !important; }
.contact-info-item a:hover           { color: #fff !important; }
.contact-info-icon                   { background: rgba(192,192,192,0.18) !important; border-color: rgba(192,192,192,0.25) !important; color: var(--red) !important; }
/* Opening hours rows — override PHP-generated inline styles */
.contact-info-card .d-flex.justify-content-between span { color: rgba(200,210,235,0.72) !important; }
/* Today highlight keeps red via PHP var(--red) — already fine */
/* "We're open today" green box */
.contact-info-card .mt-3.rounded     { background: rgba(22,163,74,0.15) !important; color: #bbf7d0 !important; }
/* Contact page h5 headings */
.contact-info-card h5                { color: #fff !important; }

/* ── Workshop page ──────────────────────────────────── */
.info-card                           { background: #242424 !important; border: 1px solid rgba(255,255,255,0.07) !important; }
.info-card-title                     { color: #fff !important; }
.info-card-sub                       { color: rgba(200,210,235,0.65) !important; }
.info-card-icon                      { background: rgba(192,192,192,0.18) !important; color: #c8c8c8 !important; }

/* ── Warranty page ──────────────────────────────────── */
.wpage-trust-bar                     { background: #242424 !important; border-bottom-color: rgba(255,255,255,0.07) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.25) !important; }
.wtb-item                            { color: rgba(200,210,235,0.82) !important; }
.wtb-sep                             { background: rgba(255,255,255,0.1) !important; }
.wcover-card                         { background: #242424 !important; border: 1px solid rgba(255,255,255,0.07) !important; }
.wcover-card:hover                   { border-color: var(--red) !important; }
.wcover-title                        { color: #fff !important; }
.wcover-desc                         { color: rgba(200,210,235,0.72) !important; }
.wpage-notice-box                    { background: rgba(217,119,6,0.15) !important; border-color: rgba(217,119,6,0.5) !important; color: #fde68a !important; }
.wpage-notice-box i                  { color: #fbbf24 !important; }
.wpage-notice-box strong             { color: #fff !important; }
.wplan-free-banner                   { background: rgba(22,163,74,0.2) !important; border: 1px solid rgba(22,163,74,0.35) !important; }
.wplan-card                          { background: #242424 !important; border-color: rgba(255,255,255,0.08) !important; box-shadow: 0 4px 24px rgba(0,0,0,0.25) !important; }
.wplan-card-popular                  { background: #333333 !important; border-color: rgba(192,192,192,0.5) !important; }
.wplan-body                          { background: transparent !important; }
.wplan-list li                       { color: rgba(200,210,235,0.82) !important; border-bottom-color: rgba(255,255,255,0.06) !important; }
.wpl-yes                             { color: #fff !important; }
.wpl-no                              { color: rgba(200,210,235,0.35) !important; }
.wpl-yes i                           { color: #4ade80 !important; }
.wpl-no  i                           { color: rgba(200,210,235,0.25) !important; }
.btn-outline-secondary               { border-color: rgba(255,255,255,0.3) !important; color: rgba(200,210,235,0.82) !important; }
.btn-outline-secondary:hover         { background: rgba(255,255,255,0.1) !important; border-color: rgba(255,255,255,0.6) !important; color: #fff !important; }
.about-check-list li                 { color: rgba(200,210,235,0.82) !important; border-bottom-color: rgba(255,255,255,0.07) !important; }
/* Warranty T&C components */
.wt-intro                            { color: rgba(200,210,235,0.78) !important; }
.wt-component                        { background: rgba(255,255,255,0.04) !important; border-left-color: var(--red) !important; }
.wt-comp-title                       { color: #fff !important; }
.wt-component p                      { color: rgba(200,210,235,0.72) !important; }
.wt-excl-list li                     { background: rgba(220,38,38,0.1) !important; color: rgba(200,210,235,0.82) !important; }
.wt-consumable                       { background: rgba(234,88,12,0.1) !important; color: rgba(200,210,235,0.82) !important; }
.wt-note-grey                        { background: rgba(255,255,255,0.05) !important; color: rgba(200,210,235,0.75) !important; border-color: rgba(255,255,255,0.1) !important; }
.wt-note-red                         { background: rgba(220,38,38,0.1) !important; color: rgba(200,210,235,0.78) !important; border-color: rgba(220,38,38,0.3) !important; }
.wt-note-grey i                      { color: rgba(200,210,235,0.5) !important; }
/* Warranty cover cards (older style) */
.warranty-cover-card                 { background: #242424 !important; }
.wc-title                            { color: #fff !important; }
.wc-desc                             { color: rgba(200,210,235,0.72) !important; }

/* ── Part Exchange page ─────────────────────────────── */
.px-step                             { background: #242424 !important; border-left-color: var(--red) !important; box-shadow: none !important; }
.px-step strong                      { color: #fff !important; }
.px-step p                           { color: rgba(200,210,235,0.65) !important; }

/* ── AutoTrader award cards (homepage trust section) ─── */
.at-awards-section                   { background: #1a1a1a !important; }
.at-award-card                       { background: #242424 !important; border-color: rgba(255,255,255,0.07) !important; }
.at-award-card-year                  { color: rgba(200,210,235,0.5) !important; }
.tmo-cred-list li                    { color: rgba(200,210,235,0.75) !important; }

/* ── Car detail page ────────────────────────────────── */
.car-detail-specs li,
.car-detail-spec-label               { color: rgba(200,210,235,0.65) !important; }
.car-detail-spec-value               { color: #fff !important; }
.car-spec-table td                   { color: rgba(200,210,235,0.82) !important; border-color: rgba(255,255,255,0.06) !important; }
.car-spec-table th                   { color: rgba(200,210,235,0.5) !important; }
.car-enquiry-card                    { background: #242424 !important; border: 1px solid rgba(255,255,255,0.07) !important; }

/* ── Hero "Get Finance" outline button ─────────────── */
.btn-outline-dark-custom             { border-color: rgba(255,255,255,0.55) !important; color: rgba(255,255,255,0.9) !important; }
.btn-outline-dark-custom:hover       { background: rgba(255,255,255,0.12) !important; border-color: #fff !important; color: #fff !important; }

/* ── Latest Vehicles slider (dark theme) ───────────── */
.lv-card                             { background: #242424 !important; border-color: rgba(255,255,255,0.08) !important; box-shadow: 0 4px 16px rgba(0,0,0,0.3) !important; }
.lv-card:hover                       { background: #2e2e2e !important; border-color: rgba(192,192,192,0.35) !important; }
.lv-card-img                         { background: #1a1a1a !important; }
.lv-card-model                       { color: #fff !important; }
.lv-spec                             { background: rgba(255,255,255,0.07) !important; border-color: rgba(255,255,255,0.1) !important; color: rgba(200,210,235,0.82) !important; }
.lv-spec i                           { color: var(--red) !important; }
.lv-card-cta                         { border-top-color: rgba(255,255,255,0.08) !important; }
.lv-arrow                            { background: #242424 !important; border-color: rgba(255,255,255,0.15) !important; color: #e0e0e0 !important; box-shadow: 0 2px 8px rgba(0,0,0,0.4) !important; }
.lv-arrow:hover                      { background: var(--red) !important; border-color: var(--red) !important; color: #fff !important; }
.lv-dot                              { background: rgba(255,255,255,0.2) !important; }
.lv-dot.active                       { background: var(--red) !important; }
