/* ============================================
   Nanda Suzuki Theme - Complete Stylesheet v2.0
   Based 1:1 on HTML reference design
   ============================================ */

:root {
  --primary: #1a365d;
  --primary-light: #2a4a7f;
  --primary-dark: #0f2341;
  --accent: #d69e2e;
  --accent-hover: #b7791f;
  --accent-light: #ecc94b;
  --text-dark: #1a202c;
  --text-body: #4a5568;
  --text-muted: #718096;
  --text-light: #a0aec0;
  --bg-white: #ffffff;
  --bg-light: #f7fafc;
  --bg-gray: #edf2f7;
  --border-color: #e2e8f0;
  --success: #38a169;
  --danger: #e53e3e;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --max-width: 1280px;
}

/* ─── RESET & BASE ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-body); line-height: 1.6; background: var(--bg-white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--text-dark); line-height: 1.3; font-weight: 700; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ─── TOP BAR ──────────────────────────────────────────────────────────── */
.top-bar { background: var(--primary-dark); color: #cbd5e0; font-size: 13px; padding: 8px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: #cbd5e0; }
.top-bar a:hover { color: var(--accent); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ─── HEADER / NAV ─────────────────────────────────────────────────────── */
.header { background: var(--bg-white); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; }
.header .container { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; padding-bottom: 12px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 44px; height: 44px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 18px; font-family: var(--font-heading); }
.logo-text h2 { font-size: 18px; color: var(--text-dark); margin: 0; line-height: 1.2; }
.logo-text span { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a { padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--text-dark); border-radius: var(--radius); font-family: var(--font-heading); white-space: nowrap; }
.nav-menu a:hover, .nav-menu a.active, .nav-menu li.current-menu-item > a, .nav-menu li.current_page_item > a { color: var(--primary); background: var(--bg-light); }

/* WP menu reset */
.nav-menu, .nav-menu ul, .nav-menu .sub-menu { list-style: none; margin: 0; padding: 0; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu li { position: relative; }

/* Sub-menus dropdown */
.nav-menu li ul, .nav-menu .sub-menu { 
    position: absolute; 
    top: 100%; 
    left: 0; 
    background: var(--bg-white); 
    box-shadow: var(--shadow-lg); 
    border-radius: var(--radius); 
    min-width: 230px; 
    padding: 8px 0; 
    z-index: 100; 
    opacity: 0; 
    visibility: hidden; 
    transform: translateY(10px); 
    transition: var(--transition); 
    display: block !important; 
    flex-direction: column;
}
.nav-menu li:hover > ul, .nav-menu li:hover > .sub-menu { 
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0); 
}
.nav-menu li ul li, .nav-menu .sub-menu li { width: 100%; }
.nav-menu li ul a, .nav-menu .sub-menu a { 
    display: block; 
    padding: 10px 20px; 
    font-size: 14px; 
    border-radius: 0; 
    background: transparent;
}
.nav-menu li ul a:hover, .nav-menu .sub-menu a:hover { 
    background: var(--bg-light); 
    color: var(--primary); 
    padding-left: 24px;
}

.btn-cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; background: var(--accent); color: #1a202c; font-weight: 600; font-size: 14px; border-radius: 50px; border: none; cursor: pointer; transition: var(--transition); font-family: var(--font-heading); white-space: nowrap; }
.btn-cta:hover { background: var(--accent-hover); color: white; transform: translateY(-1px); }
.btn-cta-nav { margin-left: 8px; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; width: 30px; height: 24px; flex-direction: column; justify-content: space-between; padding: 0; }
.mobile-toggle span { display: block; width: 100%; height: 3px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }

/* ─── BUTTONS ───────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border-radius: var(--radius); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; cursor: pointer; transition: all 0.3s; border: none; text-align: center; text-decoration: none; white-space: nowrap; }
.btn-primary { background-color: var(--primary) !important; color: #fff !important; }
.btn-primary:hover { background-color: var(--primary-light) !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(42,74,127,0.25); }
.btn-outline { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--primary); }
.btn-outline-dark { background: transparent; border: 2px solid var(--primary); color: var(--primary); padding: 10px 24px; }
.btn-outline-dark:hover { background: var(--primary); color: white; }
.btn-secondary { background-color: var(--accent) !important; color: #1a202c !important; border: 2px solid var(--accent) !important; }
.btn-secondary:hover { background-color: var(--accent-hover) !important; border-color: var(--accent-hover) !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(214,158,46,0.25); }
.btn-accent { background: var(--accent); color: var(--primary-dark); }
.btn-accent:hover { background: #d4920a; transform: translateY(-2px); }
button[type="submit"], input[type="submit"] { cursor: pointer; }

/* ─── PAGE BANNER ──────────────────────────────────────────────────────── */
.page-banner { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 60px 0 50px; color: white; }
.page-banner h1 { font-size: 42px; color: white; margin-bottom: 12px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.7); }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb svg { width: 14px; height: 14px; }

/* ─── HERO CAROUSEL ─────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; height: 85vh; min-height: 550px; max-height: 800px; }
.hero-slides { display: flex; transition: transform 0.6s ease; height: 100%; }
.hero-slide { min-width: 100%; height: 100%; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; }
.hero-slide::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,35,65,0.85) 0%, rgba(15,35,65,0.4) 60%, transparent 100%); }
.hero-content { position: relative; z-index: 2; color: white; padding: 0 5%; max-width: 650px; }
.hero-content h1 { font-size: 52px; color: white; margin-bottom: 16px; line-height: 1.15; }
.hero-content p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: white; z-index: 10; transition: var(--transition); }
.hero-nav:hover { background: rgba(255,255,255,0.3); }
.hero-nav.prev { left: 20px; }
.hero-nav.next { right: 20px; }
.hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.hero-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; border: none; transition: var(--transition); }
.hero-dot.active { background: var(--accent); width: 32px; border-radius: 6px; }

/* ─── QUICK LINKS ───────────────────────────────────────────────────────── */
.quick-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: -40px; position: relative; z-index: 10; box-shadow: var(--shadow-lg); border-radius: var(--radius-lg); overflow: hidden; }
.quick-link { background: var(--bg-white); padding: 24px; text-align: left; border: 1px solid var(--border-color); display: flex; align-items: flex-start; gap: 16px; transition: var(--transition); cursor: pointer; border-right: none; }
.quick-link:last-child { border-right: 1px solid var(--border-color); }
.quick-link:hover { background: var(--primary); color: white; z-index: 2; }
.quick-link:hover h4, .quick-link:hover p { color: white; }
.quick-link:hover .quick-link-icon { background: rgba(255,255,255,0.2); color: white; }
.quick-link-icon { width: 48px; height: 48px; flex-shrink: 0; background: rgba(26,54,93,0.08); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--primary); transition: var(--transition); }
.quick-link-icon svg { width: 24px; height: 24px; }
.quick-link h4 { font-size: 15px; margin-bottom: 4px; color: var(--text-dark); }
.quick-link p { font-size: 13px; color: var(--text-muted); }

/* ─── SECTIONS ──────────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-light { background: var(--bg-light); }
.section-dark { background: var(--primary-dark); color: white; }
.section-label { font-size: 13px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; display: block; }
.section-title { font-size: 36px; margin-bottom: 16px; }
.section-subtitle { font-size: 16px; color: var(--text-muted); max-width: 600px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ─── ABOUT SECTION ─────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content p { margin-bottom: 16px; color: var(--text-body); }
.about-content .btn-primary { margin-top: 16px; }

/* ─── STATS ─────────────────────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.stat-card { text-align: center; padding: 30px 20px; background: var(--bg-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border-color); }
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-icon { width: 50px; height: 50px; margin: 0 auto 16px; background: rgba(26,54,93,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); }
.stat-number { font-size: 36px; font-weight: 800; color: var(--primary); font-family: var(--font-heading); }
.stat-label { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* ─── FILTER TABS ────────────────────────────────────────────────────────── */
.filter-tabs { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.filter-tab { padding: 8px 20px; border-radius: 50px; font-size: 14px; font-weight: 500; background: var(--bg-gray); color: var(--text-body); cursor: pointer; border: none; transition: var(--transition); font-family: var(--font-heading); }
.filter-tab.active, .filter-tab:hover { background: var(--primary); color: white; }

.filter-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
.filter-selects { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.filter-selects select { padding: 8px 16px; border: 1px solid var(--border-color); border-radius: var(--radius); font-size: 14px; background: var(--bg-white); color: var(--text-body); font-family: var(--font-body); cursor: pointer; }
.showing-count { font-size: 14px; color: var(--text-muted); }

/* ─── CAR CARDS ─────────────────────────────────────────────────────────── */
.cars-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.car-card { background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); border: none; }
.car-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.car-card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--bg-gray); }
.car-card-img { position: relative; width: 100%; height: 100%; overflow: hidden; }
.car-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.car-card:hover .car-card-img img { transform: scale(1.08); }
.car-card-badge { position: absolute; top: 12px; left: 12px; padding: 6px 14px; border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; box-shadow: var(--shadow-md); z-index: 5; }
.badge-arena { background: #0056b3; color: white; }
.badge-nexa { background: #000000; color: white; }
.badge-service { background: #28A745; color: white; }
.badge-true { background: #F58220; color: white; }
.badge-commercial, .badge-other { background: #ed1c24; color: white; }
.badge-preowned, .badge-true-value { background: var(--success); color: white; }
.car-card-body { padding: 20px; }
.car-type-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--secondary); margin-bottom: 4px; display: block; }
.car-card-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.car-card-body h3 a { color: inherit; }
.car-price { font-size: 18px; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.car-price-display { font-size: 42px; color: var(--primary); font-weight: 900; margin-bottom: 8px; line-height: 1.05; letter-spacing: -0.02em; }
.car-price-note { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; letter-spacing: 0.02em; }
.car-specs { display: flex; gap: 12px; font-size: 12px; color: var(--text-muted); margin-bottom: 16px; flex-wrap: wrap; }
.car-specs span { display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.car-specs svg { width: 14px; height: 14px; flex-shrink: 0; }
.car-actions { display: flex; gap: 8px; margin-top: 16px; }
.car-actions .btn { flex: 1; width: 100%; padding: 8px 12px; font-size: 12px; }
.car-card.hidden { display: none; }

/* ─── SERVICES ──────────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 36px 28px; border: 1px solid var(--border-color); transition: var(--transition); text-align: center; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary); }
.service-card a.service-link { display: inline-block; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--primary); }
.service-card a.service-link:hover { color: var(--accent); }
.service-icon { width: 64px; height: 64px; margin: 0 auto 20px; background: rgba(26,54,93,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 28px; }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-muted); }

/* ─── ENQUIRY ───────────────────────────────────────────────────────────── */
.enquiry-section { background: var(--bg-light); }
.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.enquiry-left .section-title { font-size: 32px; }
.enquiry-features { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.enquiry-feature { display: flex; align-items: flex-start; gap: 16px; }
.enquiry-feature-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(26,54,93,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); }
.enquiry-feature-icon svg { width: 20px; height: 20px; }
.enquiry-feature h4 { font-size: 16px; margin-bottom: 4px; }
.enquiry-feature p { font-size: 13px; color: var(--text-muted); }
.enquiry-form { background: var(--bg-white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-lg); }
.enquiry-form h3 { font-size: 22px; margin-bottom: 24px; }

/* ─── FORMS ─────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-control { width: 100%; padding: 12px 16px; border: 1px solid var(--border-color); border-radius: var(--radius); font-size: 14px; font-family: var(--font-body); transition: var(--transition); background: var(--bg-white); }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,54,93,0.1); }
select.form-control { cursor: pointer; appearance: auto; }
textarea.form-control { resize: vertical; min-height: 100px; }

/* CF7 overrides */
.wpcf7-form .wpcf7-text, .wpcf7-form .wpcf7-email, .wpcf7-form .wpcf7-tel,
.wpcf7-form .wpcf7-select, .wpcf7-form .wpcf7-textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border-color); border-radius: var(--radius); font-size: 14px; font-family: var(--font-body); transition: var(--transition); margin-bottom: 12px; min-height: 48px; }
.wpcf7-form .wpcf7-text:focus, .wpcf7-form .wpcf7-email:focus,
.wpcf7-form .wpcf7-tel:focus, .wpcf7-form .wpcf7-select:focus,
.wpcf7-form .wpcf7-textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,54,93,0.1); }
.wpcf7-form select, .wpcf7-form select.form-control, .wpcf7-form .wpcf7-select,
.cf7-container select, .modal-content select { width: 100%; padding: 12px 16px; border: 1px solid var(--border-color); border-radius: var(--radius); font-size: 14px; font-family: var(--font-body); background: #fff; appearance: none; -webkit-appearance: none; -moz-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='%236c7280' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 12px 8px; padding-right: 44px; }
.wpcf7-form select:focus, .wpcf7-form .wpcf7-select:focus,
.cf7-container select:focus, .modal-content select:focus { background-color: #fff; }
.wpcf7-submit,
.wpcf7-form input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 28px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: var(--transition);
    text-transform: none;
    letter-spacing: 0.2px;
}
.wpcf7-submit:hover,
.wpcf7-form input[type="submit"]:hover {
    background: var(--accent);
    color: var(--text-dark);
    box-shadow: 0 6px 20px rgba(42,74,127,0.12);
}
.wpcf7-submit:focus,
.wpcf7-form input[type="submit"]:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(26,54,93,0.08);
}

/* Stronger overrides for Quick Enquiry and modal CF7 submit buttons */
.enquiry-form .wpcf7-submit,
.enquiry-form button[type="submit"],
.enquiry-form input[type="submit"],
.modal-content .wpcf7-submit,
.cf7-container .wpcf7-submit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 12px 28px !important;
    background: var(--primary) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    font-family: var(--font-heading) !important;
    transition: var(--transition) !important;
    text-transform: none !important;
    letter-spacing: 0.2px !important;
}
.enquiry-form .wpcf7-submit:hover,
.enquiry-form button[type="submit"]:hover,
.enquiry-form input[type="submit"]:hover,
.modal-content .wpcf7-submit:hover {
    background: var(--accent) !important;
    color: var(--text-dark) !important;
    box-shadow: 0 6px 20px rgba(42,74,127,0.12) !important;
}
.wpcf7-form .form-control[type="date"], .wpcf7-form .wpcf7-date { background: #fff; color: #1f2937; border: 1px solid #cbd5e0; border-radius: 10px; padding: 12px 14px; font-size: 14px; min-height: 48px; height: 48px; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.wpcf7-form .form-control[type="date"]:focus, .wpcf7-form .wpcf7-date:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(214,158,46,0.12); outline: none; }
.wpcf7-form .form-control[type="date"]::-webkit-calendar-picker-indicator, .wpcf7-form .wpcf7-date::-webkit-calendar-picker-indicator { filter: invert(23%) sepia(16%) saturate(2921%) hue-rotate(182deg) brightness(96%) contrast(91%); }
.wpcf7-not-valid-tip { color: var(--danger); font-size: 12px; }
.wpcf7-response-output { border-radius: var(--radius); padding: 12px 16px !important; margin-top: 16px !important; font-size: 14px; }

/* ─── TESTIMONIALS ──────────────────────────────────────────────────────── */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card { min-width: 100%; padding: 50px 40px; background: var(--bg-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); text-align: center; }
.testimonial-card blockquote { font-size: 18px; font-style: italic; color: var(--text-body); max-width: 700px; margin: 0 auto 24px; line-height: 1.8; }
.testimonial-card blockquote::before { content: '\201C'; font-size: 60px; color: var(--accent); line-height: 0; vertical-align: -24px; margin-right: 4px; }
.testimonial-card .author { font-weight: 700; color: var(--text-dark); font-size: 16px; }
.testimonial-card .author-role { font-size: 14px; color: var(--text-muted); }
.testimonials-nav { display: flex; justify-content: center; gap: 12px; margin-top: 20px; }
.testimonials-nav button { width: 12px; height: 12px; border-radius: 50%; background: var(--border-color); border: none; cursor: pointer; transition: var(--transition); }
.testimonials-nav button.active { background: var(--accent); width: 32px; border-radius: 6px; }

/* ─── FOOTER ────────────────────────────────────────────────────────────── */
.footer { background: var(--primary-dark); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { color: white; font-size: 18px; margin-bottom: 20px; }
.footer p { font-size: 14px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 2px; }
.footer-links a { display: block; padding: 6px 0; font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: var(--accent); padding-left: 6px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--transition); }
.footer-social a:hover { background: var(--accent); color: var(--text-dark); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.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(--accent); }

/* ─── WHATSAPP FAB ──────────────────────────────────────────────────────── */
.whatsapp-fab { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: white; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); z-index: 999; transition: var(--transition); cursor: pointer; }
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: var(--shadow-xl); }
.whatsapp-fab svg { width: 28px; height: 28px; }

/* ─── TIMELINE ──────────────────────────────────────────────────────────── */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--border-color); transform: translateX(-50%); }
.timeline-item { display: flex; margin-bottom: 40px; position: relative; }
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-dot { position: absolute; left: 50%; top: 20px; transform: translateX(-50%); width: 16px; height: 16px; border-radius: 50%; background: var(--primary); border: 3px solid var(--bg-white); box-shadow: var(--shadow-sm); z-index: 2; }
.timeline-content { width: calc(50% - 40px); background: var(--bg-white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); }
.timeline-year { font-size: 24px; font-weight: 800; color: var(--primary); margin-bottom: 8px; font-family: var(--font-heading); }
.timeline-content p { font-size: 14px; color: var(--text-muted); }

/* ─── TEAM ───────────────────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); text-align: center; transition: var(--transition); border: 1px solid var(--border-color); }
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-card-img { width: 100%; height: 260px; overflow: hidden; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; color: white; font-size: 60px; font-family: var(--font-heading); }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 20px; }
.team-card-body h3 { font-size: 18px; margin-bottom: 4px; }
.team-card-body .designation { font-size: 14px; color: var(--primary); font-weight: 600; }
.team-card-body .dept { font-size: 13px; color: var(--text-muted); }

/* ─── GALLERY ───────────────────────────────────────────────────────────── */
.gallery-tabs { display: flex; gap: 8px; margin-bottom: 30px; flex-wrap: wrap; }
.gallery-tab-btn { padding: 8px 20px; border-radius: 50px; font-size: 14px; font-weight: 500; background: var(--bg-gray); color: var(--text-body); cursor: pointer; border: none; transition: var(--transition); font-family: var(--font-heading); }
.gallery-tab-btn.active, .gallery-tab-btn:hover { background: var(--primary); color: white; }
.gallery-album { display: none; }
.gallery-album.active { display: block; animation: fadeIn 0.3s ease; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; position: relative; cursor: pointer; height: 260px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(26,54,93,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg { width: 40px; height: 40px; color: white; }

/* Gallery Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999; display: none; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 20px; right: 20px; color: white; font-size: 32px; cursor: pointer; background: none; border: none; line-height: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); color: white; cursor: pointer; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-white); border-radius: var(--radius-lg); margin-bottom: 12px; border: 1px solid var(--border-color); overflow: hidden; transition: var(--transition); }
.faq-item.active { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-question { width: 100%; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; background: none; border: none; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--text-dark); font-family: var(--font-heading); text-align: left; gap: 16px; }
.faq-question svg { width: 20px; height: 20px; transition: transform 0.3s ease; flex-shrink: 0; color: var(--primary); }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-item.active .faq-question { color: var(--primary); }
.faq-answer { padding: 0 24px; display: none; font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.faq-answer-inner { padding-bottom: 20px; }
.faq-item.active .faq-answer { display: block; animation: fadeIn 0.2s ease; }

/* ─── LOCATIONS ──────────────────────────────────────────────────────────── */
.locations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.location-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border-color); transition: var(--transition); cursor: pointer; }
.location-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.location-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.location-card h3 { font-size: 20px; }
.location-badge { padding: 5px 5px; border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; text-align: center;}
.location-badge.arena { background: #e53e3e; color: white; }
.location-badge.nexa { background: var(--primary); color: white; }
.location-badge.service { background: var(--success); color: white; }
.location-badge.true_value { background: var(--accent); color: var(--text-dark); }
.location-card-info { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.location-card-info span { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--text-muted); }
.location-card-info svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.location-card-actions { display: flex; gap: 8px; }

/* ─── SINGLE CAR ─────────────────────────────────────────────────────────── */
.car-hero { background: var(--bg-light); padding: 40px 0; }
.car-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.car-badge-row { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.car-badge { padding: 4px 14px; border-radius: 4px; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.car-hero-title { font-size: 36px; margin-bottom: 8px; }
.car-price-display { font-size: 28px; color: var(--primary); font-weight: 800; margin-bottom: 4px; }
.car-price-note { font-size: 13px; color: var(--text-muted); }
.car-quick-specs { display: flex; gap: 20px; margin: 20px 0; flex-wrap: wrap; }
.car-spec-pill { display: flex; align-items: center; gap: 6px; padding: 8px 14px; background: var(--bg-white); border-radius: var(--radius); font-size: 13px; font-weight: 500; color: var(--text-dark); border: 1px solid var(--border-color); }
.car-spec-pill svg { width: 14px; height: 14px; color: var(--primary); }
.car-cta-row { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.car-share-row { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.car-share-row span { font-size: 13px; color: var(--text-muted); }
.car-share-btn { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; transition: var(--transition); }
.car-share-btn:hover { transform: scale(1.1); }
.share-fb { background: #1877f2; }
.share-wa { background: #25d366; }
.share-tw { background: #1da1f2; }
.share-li { background: #0077b5; }

/* Gallery on detail page */
.car-gallery-wrap { border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-white); box-shadow: var(--shadow-md); }
.gallery-tab-nav { display: flex; border-bottom: 1px solid var(--border-color); }
.gallery-tab-nav button { flex: 1; padding: 14px; background: none; border: none; cursor: pointer; font-weight: 600; font-size: 14px; color: var(--text-muted); font-family: var(--font-heading); border-bottom: 3px solid transparent; margin-bottom: -1px; transition: var(--transition); }
.gallery-tab-nav button.active { color: var(--primary); border-bottom-color: var(--primary); }
.gallery-tab-content { display: none; padding: 20px; }
.gallery-tab-content.active { display: block; }
.gallery-main-img { height: 350px; border-radius: var(--radius); overflow: hidden; background: var(--bg-gray); margin-bottom: 12px; }
.gallery-main-img img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.gallery-thumb { width: 80px; height: 60px; border-radius: var(--radius); overflow: hidden; cursor: pointer; flex-shrink: 0; border: 2px solid transparent; transition: var(--transition); }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.viewer-360-wrap { position: relative; touch-action: none; border-radius: var(--radius); overflow: hidden; background: var(--bg-gray); }
.viewer-360-wrap img { width: 100%; pointer-events: none; user-select: none; }
.viewer-hint { text-align: center; padding: 8px; font-size: 13px; color: var(--text-muted); background: var(--bg-gray); }

/* Car Tabs (specs, features etc) */
.car-tabs { margin-top: 40px; }
.car-tab-nav { display: flex; border-bottom: 2px solid var(--border-color); overflow-x: auto; }
.car-tab-btn { padding: 16px 30px; background: none; border: none; cursor: pointer; font-weight: 700; font-size: 15px; color: var(--text-muted); font-family: var(--font-heading); border-bottom: 4px solid transparent; margin-bottom: -2px; white-space: nowrap; transition: var(--transition); text-transform: uppercase; letter-spacing: 1px; }
.car-tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); background: rgba(26,54,93,0.05); }
.car-tab-pane { display: none; padding: 40px 0; }
.car-tab-pane.active { display: block; animation: fadeIn 0.3s ease; }

.highlight-section-title { font-size: 28px; font-weight: 800; color: var(--primary); margin-bottom: 35px; display: flex; align-items: center; gap: 12px; border-left: 6px solid var(--primary); padding-left: 20px; text-transform: uppercase; letter-spacing: 1px; }
.card-sidebar { position: sticky; top: 120px; background: var(--bg-white); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg); border: 1px solid var(--border-color); z-index: 10; }
.card-sidebar .h-price { font-size: 28px; color: var(--primary); font-weight: 800; margin: 10px 0; }
.action-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

@media (max-width: 600px) {
    .action-grid { grid-template-columns: 1fr; }
    .highlight-section-title { font-size: 22px; padding-left: 15px; }
}

/* Variants */
.variant-selector { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.variant-btn { padding: 8px 18px; border: 2px solid var(--border-color); border-radius: 50px; cursor: pointer; font-size: 13px; font-weight: 600; color: var(--text-dark); background: white; transition: var(--transition); font-family: var(--font-heading); }
.variant-btn.active, .variant-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(26,54,93,0.05); }
.variant-btn.popular::after { content: '★ Popular'; font-size: 10px; margin-left: 4px; color: var(--accent); }
.variant-specs-display { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.spec-row { display: flex; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid var(--border-color); font-size: 14px; }
.spec-row:nth-child(even) { background: var(--bg-light); }
.spec-row .spec-label { color: var(--text-muted); }
.spec-row .spec-value { font-weight: 600; color: var(--text-dark); }

/* Colors */
.color-swatches { display: flex; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.color-swatch { width: 36px; height: 36px; border-radius: 50%; cursor: pointer; border: 3px solid transparent; transition: var(--transition); box-shadow: var(--shadow-sm); }
.color-swatch.active, .color-swatch:hover { border-color: var(--primary); }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-item { display: flex; align-items: center; gap: 12px; padding: 16px; background: var(--bg-light); border-radius: var(--radius); }
.feature-item i { font-size: 20px; color: var(--primary); width: 24px; text-align: center; }
.feature-item .feat-info h4 { font-size: 14px; margin-bottom: 2px; }
.feature-item .feat-info p { font-size: 12px; color: var(--text-muted); }

/* ─── VALUES / MISSION ────────────────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 36px 28px; border: 1px solid var(--border-color); text-align: center; transition: var(--transition); }
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-card-icon { width: 64px; height: 64px; margin: 0 auto 20px; background: rgba(26,54,93,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); }
.value-card h3 { font-size: 22px; margin-bottom: 12px; }
.value-card p { font-size: 14px; color: var(--text-muted); }

/* ─── FINANCE ────────────────────────────────────────────────────────────── */
.finance-options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.finance-option-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 32px 24px; border: 1px solid var(--border-color); text-align: center; transition: var(--transition); }
.finance-option-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.finance-option-icon { width: 60px; height: 60px; margin: 0 auto 16px; background: rgba(26,54,93,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 26px; }
.emi-calculator { background: var(--bg-white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); max-width: 600px; margin: 40px auto 0; }
.emi-calculator h3 { font-size: 24px; margin-bottom: 24px; text-align: center; }
.emi-result { text-align: center; margin-top: 24px; padding: 24px; background: var(--bg-light); border-radius: var(--radius); }
.emi-result .emi-amount { font-size: 36px; font-weight: 800; color: var(--primary); font-family: var(--font-heading); }

/* ─── DRIVING SCHOOL ─────────────────────────────────────────────────────── */
.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.course-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; border: 2px solid var(--border-color); transition: var(--transition); }
.course-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.course-card.featured { border-color: var(--accent); position: relative; }
.course-card.featured::before { content: 'Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--text-dark); padding: 4px 16px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.course-card h3 { font-size: 22px; margin-bottom: 8px; }
.course-duration { font-size: 14px; color: var(--text-muted); margin-bottom: 4px; }
.course-price { font-size: 34px; font-weight: 800; color: var(--primary); margin: 16px 0; font-family: var(--font-heading); }
.course-price span { font-size: 14px; font-weight: 400; color: var(--text-muted); }

/* ─── BOOK SERVICE ───────────────────────────────────────────────────────── */
.service-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-type-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--border-color); transition: var(--transition); }
.service-type-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.service-type-card h4 { font-size: 17px; margin-bottom: 8px; }
.service-type-card p { font-size: 13px; color: var(--text-muted); }
.service-price { font-size: 15px; font-weight: 700; color: var(--primary); margin-top: 8px; }

/* ─── CAREER ─────────────────────────────────────────────────────────────── */
.career-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.career-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border-color); transition: var(--transition); }
.career-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.career-card h3 { font-size: 20px; margin-bottom: 8px; }
.career-meta { display: flex; gap: 16px; margin-bottom: 12px; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; }
.career-meta span { display: flex; align-items: center; gap: 4px; }
.career-meta svg { width: 14px; height: 14px; }
.career-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }

/* ─── COMPARE ────────────────────────────────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--border-color); font-size: 14px; }
.compare-table th { background: var(--primary); color: white; font-weight: 600; font-family: var(--font-heading); }
.compare-table tr:nth-child(even) { background: var(--bg-light); }
.compare-table tr:hover { background: rgba(26,54,93,0.04); }

/* ─── CONTENT PAGES ──────────────────────────────────────────────────────── */
.content-page { padding: 60px 0; }
.content-page .content-container { max-width: 900px; margin: 0 auto; }
.content-page h2 { font-size: 28px; margin: 30px 0 16px; }
.content-page h3 { font-size: 22px; margin: 24px 0 12px; }
.content-page p { margin-bottom: 16px; line-height: 1.8; }
.content-page ul { margin: 16px 0; padding-left: 24px; }
.content-page ul li { margin-bottom: 8px; list-style: disc; }

/* ─── MAP ────────────────────────────────────────────────────────────────── */
#multi-marker-map { width: 100%; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-gray); }

/* ─── ANIMATIONS ─────────────────────────────────────────────────────────── */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cars-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .car-hero-grid { grid-template-columns: 1fr; }
  .variant-specs-display { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .finance-options-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .nav-menu, .nav-menu ul { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-white); flex-direction: column; padding: 16px; box-shadow: var(--shadow-lg); gap: 0; z-index: 999; }
  .nav-menu.active { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-menu a { padding: 12px 16px; width: 100%; display: block; }
  .btn-cta-nav { display: none; }
  .hero-content h1 { font-size: 32px; }
  .hero-content p { font-size: 15px; }
  .quick-links { grid-template-columns: repeat(2, 1fr); margin-top: -20px; }
  .quick-link:first-child { border-radius: var(--radius-lg) 0 0 0; }
  .quick-link:nth-child(2) { border-radius: 0 var(--radius-lg) 0 0; }
  .quick-link:nth-child(3) { border-radius: 0 0 0 var(--radius-lg); }
  .quick-link:last-child { border-radius: 0 0 var(--radius-lg) 0; }
  .about-grid, .enquiry-grid { grid-template-columns: 1fr; gap: 30px; }
  .cars-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: 1fr; }
  .career-grid { grid-template-columns: 1fr; }
  .course-grid { grid-template-columns: 1fr; }
  .finance-options-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .service-types-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 50px 0; }
  .section-title { font-size: 28px; }
  .page-banner h1 { font-size: 32px; }
  .page-banner { padding: 40px 0 30px; }
  .top-bar-right { display: none; }
  .compare-table { display: block; overflow-x: auto; }
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(odd) { flex-direction: row; padding-left: 50px; }
  .timeline-dot { left: 20px; }
  .timeline-content { width: 100%; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .car-tab-nav { overflow-x: auto; }
}
@media (max-width: 480px) {
  .quick-links { grid-template-columns: 1fr; }
  .quick-link, .quick-link:first-child, .quick-link:last-child,
  .quick-link:nth-child(2), .quick-link:nth-child(3) { border-radius: 0; }
  .quick-link:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .quick-link:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .cars-grid { grid-template-columns: 1fr; gap: 16px; }
  .cars-grid, .services-grid, .service-types-grid { grid-template-columns: 1fr; }
  .filter-tabs { justify-content: center; }
  .hero { min-height: 450px; }
  .hero-content h1 { font-size: 28px; }
  .testimonial-card { padding: 30px 20px; }
  .testimonial-card blockquote { font-size: 15px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── BROCHURE TABLE ─────────────────────────────────────────────────────── */
.brochure-table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
}
.brochure-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 14px;
}
.brochure-table th, .brochure-table td {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    white-space: nowrap;
}
.brochure-table th {
    background: #f8f9fa;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 700;
}
.brochure-table td {
    color: var(--text-body);
}
.brochure-table .sticky-col {
    position: sticky;
    left: 0;
    background: #f8f9fa;
    z-index: 1;
    text-align: left;
    box-shadow: 2px 0 5px rgba(0,0,0,0.02);
}
.brochure-table th.sticky-col {
    z-index: 2;
    background: #e9ecef;
}
.brochure-table tr:hover td {
    background: #fcfcfc;
}

