/*
Theme Name: E-Vahini
Theme URI: http://localhost/E-Vahini
Author: E-Motion Automotive Industry LLP
Author URI: http://localhost/E-Vahini
Description: Official theme for E-Motion Automotive Industry LLP / E-Vahini – Electric Vehicles Manufacturer
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: evahini
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    --primary-green: #1a7a3c;
    --dark-green: #0f5228;
    --light-green: #2ecc71;
    --accent-green: #27ae60;
    --primary-red: #c0392b;
    --dark-red: #922b21;
    --light-red: #e74c3c;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #ecf0f1;
    --gray: #95a5a6;
    --dark-gray: #2c3e50;
    --black: #1a1a1a;
    --shadow: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.18);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    background: var(--white);
    overflow-x: hidden;
}
a { color: var(--primary-green); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--dark-green); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}
.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}
.btn-primary:hover {
    background: var(--dark-red);
    border-color: var(--dark-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192,57,43,0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
}
.btn-green {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}
.btn-green:hover {
    background: var(--dark-green);
    border-color: var(--dark-green);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-red {
    background: transparent;
    color: var(--primary-red);
    border-color: var(--primary-red);
}
.btn-outline-red:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* =============================================
   SECTION HELPERS
   ============================================= */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--dark-gray); color: var(--white); }
.section-green { background: var(--primary-green); color: var(--white); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { color: var(--dark-gray); }
.section-dark .section-header h2,
.section-green .section-header h2 { color: var(--white); }
.section-header .subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}
.section-dark .subtitle,
.section-green .subtitle { color: rgba(255,255,255,0.8); }
.divider {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-red));
    border-radius: 2px;
    margin: 16px auto 24px;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
    background: var(--primary-red);
    color: rgba(255,255,255,0.92);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(0,0,0,0.12);
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-bar-contact { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.top-bar-right   { display: flex; align-items: center; gap: 0; }
.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.92);
    transition: color 0.2s;
    white-space: nowrap;
    padding: 0 16px;
}
.top-bar-item:hover { color: var(--white); }
.top-bar-item svg { flex-shrink: 0; opacity: 0.85; }
.top-bar-sep {
    display: inline-block;
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.3);
    vertical-align: middle;
}
.icat-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--white);
    color: var(--dark-gray);
    padding: 2px 10px 2px 4px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.35);
    margin: 0 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.icat-logo {
    height: 28px;
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 2px;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 24px rgba(0,0,0,0.07);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-green), var(--primary-red)) 1;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    max-width: 1380px;
    margin: 0 auto;
    height: 82px;
}

/* Logo */
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo-img {
    height: 52px;
    width: auto;
    display: block;
}

/* Nav */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    height: 100%;
}
.nav-menu > li {
    position: relative;
    height: 82px;
    display: flex;
    align-items: center;
}
.nav-menu > li > a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 15px;
    color: #2d2d2d;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    transition: color 0.22s;
}
.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px 2px 0 0;
    transition: width 0.25s ease;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
    color: var(--primary-green);
}
.nav-menu > li > a:hover::after,
.nav-menu > li.current-menu-item > a::after {
    width: calc(100% - 20px);
}

/* "Become a Dealer" pill CTA */
.nav-menu > li > a.nav-dealer {
    color: var(--white);
    background: var(--primary-red);
    border-radius: 6px;
    padding: 10px 18px;
    height: auto;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin: 0 6px;
    box-shadow: 0 3px 10px rgba(192,57,43,0.3);
    transition: background 0.22s, box-shadow 0.22s, transform 0.15s;
}
.nav-menu > li > a.nav-dealer::after { display: none; }
.nav-menu > li > a.nav-dealer:hover {
    background: var(--dark-red);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(192,57,43,0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark-gray);
    border-radius: 2px;
    transition: var(--transition);
}

/* =============================================
   HERO SLIDER
   ============================================= */
.ev-hero-slider { position: relative; width: 100%; }
.hero-swiper { width: 100%; }
.ev-slide { width: 100%; }

/* Banner image slide — full width, natural height, no crop */
.ev-slide-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.ev-slide { position: relative; overflow: hidden; }

.ev-slide-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 60%, #1e8449 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 6s ease;
}
.swiper-slide-active .ev-slide-bg { transform: scale(1); }

.ev-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.18) 50%,
        rgba(0,0,0,0.0) 100%
    );
    z-index: 1;
}

/* Content */
.ev-slide-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 7vw;
    max-width: 780px;
}

.ev-slide-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 700px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s 0.25s ease, transform 0.65s 0.25s ease;
}
.ev-slide-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 540px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s 0.4s ease, transform 0.65s 0.4s ease;
}
.ev-slide-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s 0.55s ease, transform 0.6s 0.55s ease;
}

/* Animate in — triggered by JS adding .slide-in */
.slide-in .ev-slide-title,
.slide-in .ev-slide-subtitle,
.slide-in .ev-slide-btns {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Buttons */
.ev-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-red);
    color: var(--white);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 14px 30px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(192,57,43,0.45);
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    letter-spacing: 0.3px;
}
.ev-btn-primary:hover {
    background: var(--dark-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(192,57,43,0.5);
}
.ev-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 13px 28px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.55);
    backdrop-filter: blur(4px);
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.ev-btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.9);
    color: var(--white);
    transform: translateY(-2px);
}

/* Bottom stat bar */
.ev-slide-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    padding: 28px 7vw 20px;
}
.ev-stat { display: flex; flex-direction: column; gap: 2px; padding: 0 28px 0 0; }
.ev-stat-num {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.ev-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ev-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.25);
    margin: 0 28px 0 0;
    flex-shrink: 0;
}

/* Swiper arrows */
.ev-swiper-prev,
.ev-swiper-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10;
    width: 52px !important;
    height: 52px !important;
    background: rgba(255,255,255,0.12) !important;
    border: 1.5px solid rgba(255,255,255,0.3) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.ev-swiper-prev::after,
.ev-swiper-next::after { display: none !important; }

.ev-swiper-prev svg,
.ev-swiper-next svg {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
}

.ev-swiper-prev:hover,
.ev-swiper-next:hover {
    background: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    transform: translateY(-50%) scale(1.08) !important;
}

.ev-swiper-prev { left: 28px !important; }
.ev-swiper-next { right: 28px !important; }

/* Pagination dots */
.ev-pagination { bottom: 80px !important; }
.ev-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.45);
    opacity: 1;
    transition: all 0.3s;
}
.ev-pagination .swiper-pagination-bullet-active {
    background: var(--white);
    width: 28px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .hero-swiper { height: 70vh; min-height: 440px; }
    .ev-slide-content { padding: 0 5vw; max-width: 100%; }
    .ev-slide-stats { flex-wrap: wrap; gap: 8px; padding: 16px 5vw 12px; }
    .ev-stat-sep { display: none; }
    .ev-stat { padding: 0 16px 0 0; }
    .ev-stat-num { font-size: 1rem; }
    .ev-swiper-prev, .ev-swiper-next { display: none !important; }
    .ev-pagination { bottom: 60px !important; }
}

/* =============================================
   PRODUCTS SLIDER SECTION
   ============================================= */
.ps-section {
    background: #3b0a0a;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.ps-header {
    text-align: center;
    margin-bottom: 56px;
    padding: 0 40px;
}
.ps-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f9a8a8;
    margin-bottom: 16px;
}
.ps-line {
    display: block;
    width: 40px;
    height: 2px;
    background: #f9a8a8;
    border-radius: 1px;
}
.ps-section-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin: 16px 0 16px;
    letter-spacing: -0.5px;
}
.ps-section-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

/* Category block */
.ps-category {
    margin-bottom: 56px;
    max-width: calc(100% - 80px);
    margin-left: auto;
    margin-right: auto;
}
.ps-cat-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 12px;
}
.ps-cat-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-red));
    border-radius: 2px;
}

/* Slider wrap — full bleed with side padding for arrows */
.ps-slider-wrap {
    position: relative;
    padding: 0 56px;
}
.ps-swiper { overflow: hidden; }

/* Cards */
.ps-card { cursor: pointer; }
.ps-card-img {
    position: relative;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background: linear-gradient(145deg, #f7f7f7 0%, #ececec 100%);
}
.ps-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}
.ps-card:hover .ps-card-img img {
    transform: scale(1.04);
}

/* Vehicle emoji — big centered */
.ps-vehicle-emoji {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5.5rem;
    line-height: 1;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
    pointer-events: none;
    z-index: 1;
}

/* Brand badge — top left corner */
.ps-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-green);
    color: white;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 10px 14px;
    line-height: 1.25;
    letter-spacing: 0.5px;
    z-index: 3;
    border-radius: 0 0 12px 0;
}
.ps-badge span { font-weight: 500; font-size: 0.7rem; display: block; }
.ps-badge-red  { background: var(--primary-red); }
.ps-badge-dark { background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); }

/* Specs overlay — left side */
.ps-specs-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
    padding: 40px 14px 14px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ps-spec-row {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.9);
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.3;
}
.ps-spec-row svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    opacity: 0.8;
    stroke: white;
}

/* Card name footer */
.ps-card-name {
    background: var(--white);
    border-radius: 0 0 12px 12px;
    padding: 14px 16px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.ps-enquire {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-red);
    background: rgba(192,57,43,0.08);
    padding: 5px 12px;
    border-radius: 50px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}
.ps-enquire:hover {
    background: var(--primary-red);
    color: white;
}

/* Hover lift on card */
.ps-card { transition: transform 0.25s; box-shadow: 0 8px 32px rgba(0,0,0,0.45); border-radius: 12px; }
.ps-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.6); }

/* Arrows */
.ps-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--light-gray);
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.22s, border-color 0.22s, transform 0.2s;
}
.ps-arrow svg { width: 18px; height: 18px; stroke: var(--dark-gray); transition: stroke 0.22s; }
.ps-arrow:hover { background: var(--primary-green); border-color: var(--primary-green); transform: translateY(-60%) scale(1.08); }
.ps-arrow:hover svg { stroke: white; }
.ps-arrow-prev { left: 4px; }
.ps-arrow-next { right: 4px; }

/* Responsive */
@media (max-width: 768px) {
    .ps-header { padding: 0 20px; }
    .ps-section-title { font-size: 1.9rem; }
    .ps-bg-rickshaw { display: none; }
    .ps-slider-wrap { padding: 0 44px; }
    .ps-section { padding: 56px 0 40px; }
    .ps-cat-title { font-size: 1.5rem; }
    .ps-category { max-width: calc(100% - 40px); }
}
@media (max-width: 480px) {
    .ps-slider-wrap { padding: 0 12px; }
    .ps-category { max-width: calc(100% - 24px); }
    .ps-arrow { display: none; }
}

/* =============================================
   ACCESSORIES & KEY FEATURES
   ============================================= */
.akf-section {
    background: #ffffff;
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}

/* Decorative SVG layer */
.akf-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.akf-decor {
    position: absolute;
}
.akf-decor--rings-tr {
    top: -120px;
    right: -120px;
    width: 480px;
}
.akf-decor--rings-bl {
    bottom: -100px;
    left: -100px;
    width: 380px;
}
.akf-decor--dots-br {
    bottom: 40px;
    right: 40px;
    width: 200px;
    opacity: 0.85;
}
.akf-decor--dots-tl {
    top: 40px;
    left: 40px;
    width: 200px;
    opacity: 0.7;
}
.akf-decor--lines {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 200px;
    opacity: 0.6;
}


/* Header */
.akf-header {
    text-align: center;
    margin-bottom: 72px;
}
.akf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-green);
    margin-bottom: 20px;
}
.akf-line {
    display: block;
    width: 36px;
    height: 2px;
    background: var(--primary-green);
    border-radius: 1px;
}
.akf-title {
    font-size: 3rem;
    font-weight: 900;
    color: #111827;
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}
.akf-title span { color: var(--primary-green); }
.akf-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid */
.akf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Cards */
.akf-card {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    cursor: default;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.akf-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 12px 40px rgba(26,122,60,0.12);
    transform: translateY(-6px);
}
.akf-card--accent-green { border-color: rgba(26,122,60,0.3); }
.akf-card--accent-red   { border-color: rgba(192,57,43,0.3); }
.akf-card--accent-green:hover { border-color: var(--primary-green); box-shadow: 0 12px 40px rgba(26,122,60,0.12); }
.akf-card--accent-red:hover   { border-color: var(--primary-red);   box-shadow: 0 12px 40px rgba(192,57,43,0.12); }

/* Icon */
.akf-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(26,122,60,0.12);
    border: 1px solid rgba(26,122,60,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    transition: background 0.3s, border-color 0.3s;
}
.akf-icon-wrap svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-green);
}
.akf-card--accent-red .akf-icon-wrap {
    background: rgba(192,57,43,0.12);
    border-color: rgba(192,57,43,0.2);
}
.akf-card--accent-red .akf-icon-wrap svg { stroke: #e05a4a; }
.akf-card:hover .akf-icon-wrap {
    background: rgba(26,122,60,0.2);
    border-color: var(--primary-green);
}
.akf-card--accent-red:hover .akf-icon-wrap {
    background: rgba(192,57,43,0.2);
    border-color: var(--primary-red);
}

/* Spec badge */
.akf-card-spec {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-green);
    opacity: 0.85;
}
.akf-card--accent-red .akf-card-spec { color: #e05a4a; }

/* Title */
.akf-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.3;
}

/* Description */
.akf-card-desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.65;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
    .akf-grid { grid-template-columns: repeat(2, 1fr); }
    .akf-title { font-size: 2.4rem; }
}
@media (max-width: 600px) {
    .akf-section { padding: 72px 0 60px; }
    .akf-grid { grid-template-columns: 1fr; gap: 14px; }
    .akf-title { font-size: 1.9rem; }
    .akf-header { margin-bottom: 48px; }
}

/* =============================================
   DEALER TESTIMONIALS — Infinite Marquee
   ============================================= */
.dt-section {
    background: #f8f9fb;
    padding: 100px 0 90px;
    overflow: hidden;
}

/* Header */
.dt-header { text-align: center; margin-bottom: 64px; }
.dt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-green);
    margin-bottom: 18px;
}
.dt-line {
    display: block;
    width: 36px;
    height: 2px;
    background: var(--primary-green);
    border-radius: 1px;
}
.dt-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #111827;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}
.dt-title span { color: var(--primary-green); }
.dt-subtitle {
    font-size: 1rem;
    color: #6b7280;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Track wrapper — fade edges */
.dt-track-wrap {
    position: relative;
    margin-bottom: 20px;
}
.dt-track-wrap::before,
.dt-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}
.dt-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fb, transparent);
}
.dt-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fb, transparent);
}

/* Scrolling track */
.dt-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: dt-scroll-left 40s linear infinite;
}
.dt-track--reverse {
    animation: dt-scroll-right 38s linear infinite;
}
.dt-track-wrap:hover .dt-track { animation-play-state: paused; }

@keyframes dt-scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes dt-scroll-right {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Cards */
.dt-card {
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 16px;
    padding: 24px 26px;
    width: 320px;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.25s, transform 0.25s;
}
.dt-card:hover {
    box-shadow: 0 10px 32px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}
.dt-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

/* Avatar */
.dt-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}
.dt-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}
.dt-city {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 2px;
}

/* Stars */
.dt-stars {
    display: flex;
    gap: 2px;
    margin-left: auto;
    flex-shrink: 0;
}
.dt-stars svg {
    width: 13px;
    height: 13px;
    color: #f59e0b;
}

/* Review text */
.dt-text {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .dt-title { font-size: 2rem; }
    .dt-card { width: 280px; padding: 20px; }
    .dt-track-wrap::before,
    .dt-track-wrap::after { width: 60px; }
}

/* =============================================
   FAQ
   ============================================= */
.faq-section {
    background: #ffffff;
    padding: 100px 0;
}
.faq-inner {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 80px;
    align-items: start;
}

/* Left */
.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-green);
    margin-bottom: 20px;
}
.faq-line {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary-green);
    border-radius: 1px;
}
.faq-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #111827;
    line-height: 1.15;
    letter-spacing: -0.4px;
    margin-bottom: 16px;
}
.faq-title span { color: var(--primary-green); }
.faq-desc {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 32px;
}
.faq-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-green);
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.faq-cta:hover { background: var(--dark-green); transform: translateY(-2px); }

/* Accordion */
.faq-list { padding-top: 4px; }
.faq-item { border-bottom: 1px solid #f0f0f0; }
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    transition: color 0.2s;
}
.faq-q:hover { color: var(--primary-green); }
.faq-q[aria-expanded="true"] { color: var(--primary-green); }
.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: currentColor;
    transition: transform 0.3s ease;
}
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a p {
    font-size: 0.925rem;
    color: #6b7280;
    line-height: 1.75;
    padding-bottom: 20px;
    margin: 0;
}

@media (max-width: 900px) {
    .faq-inner { grid-template-columns: 1fr; gap: 40px; }
    .faq-title { font-size: 2rem; }
}
@media (max-width: 600px) {
    .faq-section { padding: 72px 0; }
}

/* =============================================
   CONTACT US
   ============================================= */
.ct-section {
    background: #0d1117;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.ct-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(26,122,60,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 20%, rgba(192,57,43,0.08) 0%, transparent 45%);
    pointer-events: none;
}

/* Header */
.ct-header { text-align: center; margin-bottom: 64px; position: relative; z-index: 1; }
.ct-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-green);
    margin-bottom: 18px;
}
.ct-line { display: block; width: 36px; height: 2px; background: var(--primary-green); border-radius: 1px; }
.ct-title { font-size: 2.8rem; font-weight: 900; color: #fff; letter-spacing: -0.5px; margin-bottom: 12px; }
.ct-title span { color: var(--primary-green); }
.ct-subtitle { font-size: 1rem; color: rgba(255,255,255,0.45); max-width: 440px; margin: 0 auto; line-height: 1.7; }

/* Layout */
.ct-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Info cards */
.ct-info { display: flex; flex-direction: column; gap: 14px; }
.ct-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 18px 20px;
    transition: border-color 0.25s, background 0.25s;
}
.ct-info-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(26,122,60,0.4);
}
.ct-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(26,122,60,0.15);
    border: 1px solid rgba(26,122,60,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ct-info-icon svg { width: 18px; height: 18px; stroke: var(--primary-green); }
.ct-info-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.ct-info-val { font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.85); line-height: 1.5; }

/* Form */
.ct-form-wrap {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px;
}
.ct-form { display: flex; flex-direction: column; gap: 20px; }
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ct-field { display: flex; flex-direction: column; gap: 8px; }
.ct-field label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.6); }
.ct-field label span { color: var(--primary-red); }
.ct-field input,
.ct-field select,
.ct-field textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 0.9rem;
    color: #ffffff;
    outline: none;
    transition: border-color 0.25s, background 0.25s;
    font-family: inherit;
    resize: vertical;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.ct-field select { color: rgba(255,255,255,0.7); cursor: pointer; }
.ct-field select option { background: #1a1f2e; color: #fff; }
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
    border-color: var(--primary-green);
    background: rgba(26,122,60,0.08);
}
.ct-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-green);
    color: #fff;
    border: none;
    padding: 15px 32px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    align-self: flex-start;
    font-family: inherit;
}
.ct-submit svg { width: 18px; height: 18px; }
.ct-submit:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,122,60,0.4);
}
.ct-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.ct-form-msg {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
}

@media (max-width: 900px) {
    .ct-inner { grid-template-columns: 1fr; }
    .ct-title { font-size: 2.2rem; }
}
@media (max-width: 600px) {
    .ct-section { padding: 72px 0; }
    .ct-form-wrap { padding: 24px 20px; }
    .ct-form-row { grid-template-columns: 1fr; }
}

/* =============================================
   VEHICLE SHOWCASE
   ============================================= */
.ev-showcase {
    background: linear-gradient(135deg, #0f1a12 0%, #1a3020 50%, #0f1a12 100%);
    overflow: hidden;
    position: relative;
}
.ev-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(26,122,60,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 50%, rgba(192,57,43,0.10) 0%, transparent 45%);
    pointer-events: none;
}
.ev-showcase-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    min-height: 480px;
    gap: 0;
    position: relative;
    z-index: 1;
}

/* Text side */
.ev-showcase-text {
    flex: 0 0 46%;
    padding: 80px 0;
}
.ev-showcase-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-green);
    background: rgba(26,122,60,0.15);
    border: 1px solid rgba(26,122,60,0.3);
    border-radius: 50px;
    padding: 5px 16px;
    margin-bottom: 24px;
}
.ev-showcase-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}
.ev-showcase-title span { color: var(--primary-green); }
.ev-showcase-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    max-width: 400px;
    margin-bottom: 36px;
}
.ev-showcase-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.ev-showcase-btn {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
}
.ev-showcase-btn--primary {
    background: var(--primary-green);
    color: #fff;
}
.ev-showcase-btn--primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,122,60,0.4);
}
.ev-showcase-btn--outline {
    border: 1.5px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.85);
}
.ev-showcase-btn--outline:hover {
    border-color: white;
    color: white;
    background: rgba(255,255,255,0.06);
}

/* Image side */
.ev-showcase-img-wrap {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: stretch;
    position: relative;
}
.ev-showcase-img {
    width: 110%;
    max-width: 720px;
    display: block;
    filter: drop-shadow(0 32px 64px rgba(0,0,0,0.6));
    mix-blend-mode: luminosity;
    opacity: 0.92;
}

/* Responsive */
@media (max-width: 900px) {
    .ev-showcase-inner { flex-direction: column; padding: 60px 24px 0; min-height: auto; }
    .ev-showcase-text { flex: none; padding: 0; text-align: center; }
    .ev-showcase-desc { max-width: 100%; }
    .ev-showcase-actions { justify-content: center; }
    .ev-showcase-title { font-size: 2.2rem; }
    .ev-showcase-img-wrap { width: 100%; padding-top: 32px; }
    .ev-showcase-img { width: 90%; }
}

/* =============================================
   TRUSTED SUPPLIERS
   ============================================= */
.ts-section {
    background: #ffffff;
    padding: 80px 0 72px;
    overflow: hidden;
    position: relative;
}
.ts-header {
    text-align: center;
    margin-bottom: 56px;
}
.ts-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-green);
    margin-bottom: 16px;
}
.ts-eyebrow-line {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--primary-green);
    border-radius: 1px;
}
.ts-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--dark-gray);
    margin: 0 0 16px;
    letter-spacing: -0.4px;
}
.ts-title span { color: var(--primary-red); }
.ts-underline {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-red));
    border-radius: 2px;
    margin: 0 auto;
}
.ts-marquee-wrap {
    overflow: hidden;
    position: relative;
    padding: 8px 0 16px;
}
.ts-marquee {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: ts-scroll 32s linear infinite;
}
.ts-marquee:hover { animation-play-state: paused; }
@keyframes ts-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.ts-card {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 180px;
    border-radius: 16px;
    background: var(--white);
    border: 1.5px solid rgba(0,0,0,0.07);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 24px 28px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    cursor: default;
    overflow: hidden;
}
.ts-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26,122,60,0.14);
    border-color: var(--primary-green);
}
.ts-card span {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-align: center;
}
.ts-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
@media (max-width: 768px) {
    .ts-card { width: 170px; height: 140px; padding: 18px 20px; }
}
@media (max-width: 480px) {
    .ts-section { padding: 56px 0 48px; }
    .ts-card { width: 140px; height: 120px; padding: 14px 16px; }
    .ts-card span { font-size: 0.88rem; }
}

/* =============================================
   ABOUT COMPANY
   ============================================= */

/* Scrolling tagline strip */
.ac-tagline-strip {
    background: var(--dark-gray);
    overflow: hidden;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ac-tagline-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    animation: ac-marquee 28s linear infinite;
    width: max-content;
}
.ac-tagline-inner span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}
.ac-dot {
    width: 4px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
@keyframes ac-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Section wrapper */
.about-company {
    padding: 0 0 80px;
    background: var(--white);
}
.about-company .container {
    padding-top: 80px;
}

/* Main 2-col grid */
.ac-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* ── Visual (left) ── */
.ac-visual { display: flex; flex-direction: column; gap: 20px; }

.ac-img-frame { position: relative; }
.ac-img-placeholder {
    border-radius: 20px;
    aspect-ratio: 1535 / 1024;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 64px rgba(26,122,60,0.20);
}
.ac-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.ac-factory-svg {
    width: 180px;
    opacity: 0.7;
}
.ac-img-placeholder p {
    color: rgba(255,255,255,0.9);
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0;
    letter-spacing: 0.3px;
}
.ac-img-placeholder span {
    color: rgba(255,255,255,0.55);
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}

/* Floating ICAT badge */
.ac-cert-badge {
    position: absolute;
    bottom: -18px;
    right: 24px;
    background: var(--white);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
    border: 1px solid var(--light-gray);
}
.ac-cert-badge img {
    height: 32px;
    width: auto;
}
.ac-cert-badge strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.2;
}
.ac-cert-badge span {
    font-size: 0.7rem;
    color: var(--gray);
}

/* Stat cards */
.ac-stat-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
}
.ac-stat-card {
    background: var(--off-white);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: transform 0.25s, box-shadow 0.25s;
}
.ac-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.09);
}
.ac-stat-card--red { background: var(--primary-red); border-color: var(--primary-red); }
.ac-stat-card--red .ac-stat-num,
.ac-stat-card--red .ac-stat-label { color: var(--white); }
.ac-stat-num {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 4px;
}
.ac-stat-num span { font-size: 1.1rem; }
.ac-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* ── Text (right) ── */
.ac-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ac-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary-red);
    border-radius: 1px;
}
.ac-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--dark-gray);
    margin-bottom: 0;
}
.ac-text h2 span { color: var(--primary-green); }
.ac-accent-line {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-red));
    border-radius: 2px;
    margin: 20px 0;
}
.ac-lead {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Pillars */
.ac-pillars { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.ac-pillar {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid var(--light-gray);
    background: var(--white);
    transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}
.ac-pillar:hover {
    border-color: var(--primary-green);
    box-shadow: 0 6px 24px rgba(26,122,60,0.1);
    transform: translateX(4px);
}
.ac-pillar-icon {
    width: 42px;
    height: 42px;
    background: rgba(26,122,60,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-green);
}
.ac-pillar-icon svg { width: 20px; height: 20px; }
.ac-pillar-icon--red {
    background: rgba(192,57,43,0.1);
    color: var(--primary-red);
}
.ac-pillar > div strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 3px;
}
.ac-pillar > div p {
    font-size: 0.84rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

/* Actions */
.ac-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.ac-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-green);
    transition: gap 0.2s, color 0.2s;
}
.ac-link:hover { gap: 12px; color: var(--dark-green); }

/* Responsive */
@media (max-width: 1024px) {
    .ac-grid { grid-template-columns: 1fr; gap: 40px; }
    .ac-img-placeholder { aspect-ratio: 1535 / 1024; height: auto; }
    .about-company .container { padding-top: 56px; }
}
@media (max-width: 640px) {
    .about-company { padding: 0 0 48px; }
    .about-company .container { padding-top: 40px; }
    .ac-stat-cards { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .ac-stat-num { font-size: 1.3rem; }
    .ac-pillar { padding: 14px 16px; }
    /* Keep marquee visible on mobile — smaller font */
    .ac-tagline-strip { display: block; }
    .ac-tagline-inner span { font-size: 0.65rem; letter-spacing: 1px; }
    .ac-tagline-inner { gap: 16px; }
    /* Actions stack full-width on mobile */
    .ac-actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    .ac-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .ac-link {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 14px 20px;
        border: 2px solid var(--primary-green);
        border-radius: 50px;
        font-size: 0.92rem;
        font-weight: 700;
        color: var(--primary-green);
        gap: 8px;
    }
    .ac-link:hover { gap: 8px; }
}

/* =============================================
   HERO SECTION (old — kept for reference classes)
   ============================================= */
.hero {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 50%, #1e8449 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::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='%23ffffff' fill-opacity='0.04'%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");
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-text .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
}
.hero-text h1 { color: var(--white); margin-bottom: 20px; }
.hero-text h1 span { color: var(--light-red); }
.hero-text p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.hero-stat .label { font-size: 0.78rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-vehicle-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.vehicle-icon-large {
    font-size: 5rem;
    margin-bottom: 16px;
    display: block;
}
.hero-vehicle-card h3 { color: white; font-size: 1.4rem; }
.hero-vehicle-card p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 20px; }
.vehicle-specs-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}
.spec-mini {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 10px;
}
.spec-mini .val { font-weight: 700; font-size: 1rem; color: var(--light-green); }
.spec-mini .key { font-size: 0.72rem; color: rgba(255,255,255,0.7); }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid transparent;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--primary-green);
}
.feature-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, rgba(26,122,60,0.12), rgba(26,122,60,0.06));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.15rem; color: var(--dark-gray); margin-bottom: 10px; }
.feature-card p { color: var(--gray); font-size: 0.92rem; margin: 0; }

/* =============================================
   PRODUCTS
   ============================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.product-image {
    height: 220px;
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}
.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0,0,0,0.2));
}
.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-red);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}
.product-body { padding: 24px; }
.product-body h3 { font-size: 1.25rem; color: var(--dark-gray); margin-bottom: 8px; }
.product-body p { color: var(--gray); font-size: 0.9rem; margin-bottom: 20px; }
.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}
.spec-item {
    background: var(--off-white);
    border-radius: 8px;
    padding: 10px 12px;
}
.spec-item .spec-label { font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; }
.spec-item .spec-value { font-size: 0.9rem; font-weight: 700; color: var(--dark-gray); }
.product-footer {
    padding: 0 24px 24px;
    display: flex;
    gap: 10px;
}
.product-footer .btn { flex: 1; font-size: 0.85rem; padding: 11px 16px; }

/* =============================================
   SPECIFICATIONS TABLE
   ============================================= */
.specs-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    background: var(--off-white);
    padding: 6px;
    border-radius: 12px;
    width: fit-content;
}
.spec-tab {
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray);
    border: none;
    background: transparent;
    transition: var(--transition);
}
.spec-tab.active {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(26,122,60,0.3);
}
.spec-tab-content { display: none; }
.spec-tab-content.active { display: block; }
.specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.specs-table th {
    background: var(--primary-green);
    color: white;
    padding: 14px 20px;
    text-align: left;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.specs-table td {
    padding: 13px 20px;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.9rem;
}
.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:nth-child(even) td { background: var(--off-white); }
.specs-table tr:hover td { background: rgba(26,122,60,0.05); }
.specs-table td:first-child { font-weight: 600; color: var(--dark-gray); }
.specs-table td:last-child { color: var(--primary-green); font-weight: 600; }

/* =============================================
   MANUFACTURING ZONES
   ============================================= */
.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.zone-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}
.zone-card:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-4px);
}
.zone-icon { font-size: 2.8rem; margin-bottom: 14px; display: block; }
.zone-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.zone-card p { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin: 0; }

/* =============================================
   SUPPLIERS / PARTNERS
   ============================================= */
.suppliers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.supplier-chip {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark-gray);
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.supplier-chip:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* =============================================
   ABOUT / STATS
   ============================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image-block {
    position: relative;
}
.about-image-placeholder {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: var(--border-radius-lg);
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(255,255,255,0.8);
    box-shadow: var(--shadow-hover);
}
.about-stats-overlay {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--primary-red);
    color: white;
    border-radius: var(--border-radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-hover);
}
.about-stats-overlay .big-number { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.about-stats-overlay .big-label { font-size: 0.8rem; opacity: 0.9; margin-top: 4px; }
.about-text h2 { color: var(--dark-gray); }
.about-list { margin: 20px 0 32px; }
.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
}
.about-list li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.company-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.company-stat {
    text-align: center;
    padding: 28px 16px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border-bottom: 4px solid var(--primary-green);
    transition: var(--transition);
}
.company-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.company-stat .stat-number { font-size: 2.2rem; font-weight: 900; color: var(--primary-green); line-height: 1; }
.company-stat .stat-label { font-size: 0.82rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 6px; }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.contact-info h3 { color: var(--dark-gray); margin-bottom: 24px; }
.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}
.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}
.contact-detail .label { font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.contact-detail .value { font-weight: 600; color: var(--dark-gray); font-size: 0.95rem; }
.contact-form { background: var(--white); border-radius: var(--border-radius-lg); padding: 36px; box-shadow: var(--shadow); }
.contact-form h3 { margin-bottom: 24px; color: var(--dark-gray); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark-gray); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 0.92rem;
    color: var(--dark-gray);
    transition: var(--transition);
    font-family: inherit;
    background: var(--off-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(26,122,60,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand .logo-text .brand-name { color: var(--light-green); }
.footer-brand .logo-text .brand-name span { color: var(--light-red); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-top: 16px; max-width: 260px; }
.footer-heading {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-green);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--light-green); padding-left: 4px; }
.footer-contact-info li { font-size: 0.85rem; margin-bottom: 10px; color: rgba(255,255,255,0.6); }
.footer-contact-info li strong { color: rgba(255,255,255,0.9); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--light-green); }
.eco-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26,122,60,0.3);
    border: 1px solid var(--primary-green);
    color: var(--light-green);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-image-block { display: none; }
    .company-stats-row { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    /* Right-side drawer */
    .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 300px;
        background: var(--white);
        z-index: 1001;
        padding: 100px 28px 40px;
        gap: 0;
        overflow-y: auto;
        box-shadow: -8px 0 40px rgba(0,0,0,0.15);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 3px solid transparent;
        border-image: linear-gradient(180deg, var(--primary-green), var(--primary-red)) 1;
    }
    .nav-menu.open {
        transform: translateX(0);
    }
    /* Backdrop */
    .nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.45);
        backdrop-filter: blur(3px);
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .nav-backdrop.active {
        display: block;
        opacity: 1;
    }
    .nav-menu > li {
        width: 100%;
        height: auto;
        border-bottom: 1px solid var(--light-gray);
    }
    .nav-menu > li > a {
        font-size: 0.92rem;
        padding: 15px 4px;
        height: auto;
        width: 100%;
        letter-spacing: 0.5px;
    }
    .nav-menu > li > a::after { display: none; }
    .nav-menu > li > a.nav-dealer {
        margin: 20px 0 0;
        width: 100%;
        justify-content: center;
        border-radius: 8px;
        padding: 14px;
        height: auto;
    }
    .hamburger { display: flex; z-index: 1002; position: relative; }
    .top-bar-contact { display: none; }
    .top-bar-sep { display: none; }
    .company-stats-row { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    .about-stats-overlay { display: none; }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .company-stats-row { grid-template-columns: 1fr 1fr; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .specs-tabs { width: 100%; }
    .spec-tab { flex: 1; text-align: center; }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
