/* ─── EMKE AUTO TRADING LTD — Global Styles ─────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Tokens ─────────────────────────────────────────────────────────────────── */
:root {
  --ink:       #0D0D0D;
  --ink-2:     #1A1A1A;
  --ink-3:     #2A2A2A;
  --ink-4:     #3D3D3D;
  --gold:      #C9A84C;
  --gold-light:#E8C96A;
  --gold-dim:  #8C7232;
  --cream:     #F5F0E8;
  --cream-2:   #EDE8DF;
  --white:     #FFFFFF;
  --card-bg:   #171717;
  --border:    #2C2C2C;

  --tag-ke:    #1a5e30;
  --tag-jp:    #8B0000;
  --tag-ae:    #00543C;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;

  --shadow-card: 0 4px 24px rgba(0,0,0,.45), 0 1px 3px rgba(0,0,0,.3);
  --shadow-hover: 0 12px 40px rgba(0,0,0,.6);
  --glow-gold: 0 0 20px rgba(201,168,76,.25);
}

/* ─── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--ink);
  color: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }

/* ─── Scrollbar ──────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ink-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ─── NAV ─────────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(13,13,13,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.nav-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 400;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 8px; list-style: none; align-items: center;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 14px; font-weight: 500;
  color: #aaa;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: var(--ink-3);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--ink) !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px;
  background: transparent;
  cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: .3s;
}
.mobile-nav {
  display: none;
  position: fixed; top: 70px; left: 0; right: 0; z-index: 99;
  background: var(--ink-2);
  border-bottom: 1px solid var(--border);
  padding: 16px 5%;
  flex-direction: column; gap: 4px;
}
.mobile-nav a {
  display: block; padding: 12px 16px;
  font-size: 15px; font-weight: 500;
  color: var(--cream);
  border-radius: var(--r-sm);
  transition: background .2s;
}
.mobile-nav a:hover { background: var(--ink-3); }
.mobile-nav a.active {
  background: rgba(201,168,76,.12);
  color: var(--gold);
  font-weight: 700;
  border-left: 3px solid var(--gold);
}
.mobile-nav.open { display: flex; }

/* ─── HERO ─────────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 5% 60px;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,13,13,0) 0%, rgba(13,13,13,.7) 60%, var(--ink) 100%),
    url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1600&q=80') center/cover no-repeat;
}
.hero-scan {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(201,168,76,.04) 50%,
    transparent 100%
  );
  animation: scan 4s ease-in-out infinite;
}
@keyframes scan {
  0%, 100% { transform: translateY(-100%); }
  50% { transform: translateY(100%); }
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
  display: block;
}
.hero-sub {
  font-size: 16px; font-weight: 400;
  color: #aaa;
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ─── Hero Country Flags ─────────────────────────────────────────────────────── */
.hero-flags {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 48px; flex-wrap: wrap;
}
.flag-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--ink-3);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
  color: var(--cream);
  cursor: pointer;
  transition: all .25s;
}
.flag-pill:hover, .flag-pill.active {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
  transform: translateY(-2px);
}
.flag-pill .flag-count {
  background: rgba(255,255,255,.2);
  padding: 1px 7px; border-radius: 100px;
  font-size: 11px;
}

/* ─── Hero Search ─────────────────────────────────────────────────────────────── */
.hero-search {
  display: flex;
  max-width: 600px; margin: 0 auto;
  background: var(--ink-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.hero-search:focus-within {
  border-color: var(--gold-dim);
  box-shadow: var(--glow-gold);
}
.hero-search input {
  flex: 1; padding: 16px 20px;
  background: transparent; border: none;
  font-size: 15px; color: var(--white);
  outline: none;
}
.hero-search input::placeholder { color: #666; }
.hero-search button {
  padding: 12px 28px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600; font-size: 14px;
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  transition: background .2s;
  margin: 6px; border-radius: var(--r-md);
}
.hero-search button:hover { background: var(--gold-light); }

/* ─── Stats Bar ─────────────────────────────────────────────────────────────── */
.stats-bar {
  position: relative; z-index: 2;
  display: flex; gap: 40px; justify-content: center;
  margin-top: 60px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 32px; font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 12px; color: #777;
  letter-spacing: 1px; text-transform: uppercase;
  margin-top: 4px;
}

/* ─── Section Layout ─────────────────────────────────────────────────────────── */
.section { padding: 80px 5%; }
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; flex-wrap: wrap; gap: 16px;
}
.section-label {
  font-size: 11px; font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800; color: var(--white);
  line-height: 1.1;
}
.section-title span { color: var(--gold); }
.section-link {
  font-size: 14px; font-weight: 600;
  color: var(--gold);
  display: flex; align-items: center; gap: 6px;
  padding: 10px 20px;
  border: 1px solid var(--gold-dim);
  border-radius: 100px;
  transition: all .2s;
  white-space: nowrap;
}
.section-link:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ─── Car Grid ───────────────────────────────────────────────────────────────── */
.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ─── Car Card ───────────────────────────────────────────────────────────────── */
.car-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  box-shadow: var(--shadow-card);
}
.car-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-dim);
}
.card-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.car-card:hover .card-img-wrap img { transform: scale(1.05); }
.country-tag {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px; font-weight: 600;
  backdrop-filter: blur(8px);
}
.tag-kenya { background: rgba(26,94,48,.85); color: #7FD99A; border: 1px solid rgba(127,217,154,.3); }
.tag-japan { background: rgba(139,0,0,.85); color: #FFAAAA; border: 1px solid rgba(255,170,170,.3); }
.tag-uae   { background: rgba(0,84,60,.85);  color: #70D4B0; border: 1px solid rgba(112,212,176,.3); }

.featured-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold);
  color: var(--ink);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
}
.card-body { padding: 20px; }
.card-year {
  font-size: 11px; font-weight: 500;
  color: #666;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 6px;
}
.card-name {
  font-family: 'Syne', sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.card-specs {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.card-specs span {
  background: var(--ink-3);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px; color: #999;
  border: 1px solid var(--border);
}
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.card-price {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--gold);
}
.btn-view {
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  padding: 7px 14px;
  border-radius: var(--r-sm);
  font-size: 12px; font-weight: 600;
  transition: all .2s;
  white-space: nowrap;
}
.btn-view:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* ─── WHY EMKE Section ─────────────────────────────────────────────────────── */
.why-section {
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
}
.why-card {
  padding: 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color .2s;
}
.why-card:hover { border-color: var(--gold-dim); }
.why-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.why-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.why-card p { font-size: 13px; color: #777; line-height: 1.6; }

/* ─── CTA Banner ──────────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--ink-2) 0%, var(--ink-3) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 60px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
}
.cta-banner-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800; color: var(--white);
  margin-bottom: 8px;
}
.cta-banner-text p { font-size: 15px; color: #888; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-size: 14px; font-weight: 700;
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  padding: 14px 28px;
  border-radius: var(--r-md);
  border: 1px solid var(--gold-dim);
  font-size: 14px; font-weight: 600;
  transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: rgba(201,168,76,.1); }

/* ─── FOOTER ──────────────────────────────────────────────────────────────────── */
footer {
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  padding: 60px 5% 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 13px; color: #666;
  line-height: 1.7; margin-top: 16px;
  max-width: 280px;
}
.footer-col h5 {
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13px; color: #666; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: #666;
}
.footer-contact li span:first-child { color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: #555; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 34px; height: 34px;
  background: var(--ink-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: background .2s, border-color .2s;
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); }

/* ─── INVENTORY PAGE ─────────────────────────────────────────────────────────── */
.page-header {
  padding: 120px 5% 48px;
  background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; color: var(--white);
  margin-bottom: 8px;
}
.page-header p { font-size: 15px; color: #777; }

.filters-bar {
  background: var(--ink-2);
  border-bottom: 1px solid var(--border);
  padding: 20px 5%;
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  position: sticky; top: 70px; z-index: 90;
}
.filter-search {
  flex: 1; min-width: 200px;
  display: flex; align-items: center;
  background: var(--ink-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0 14px; gap: 8px;
  transition: border-color .2s;
}
.filter-search:focus-within { border-color: var(--gold-dim); }
.filter-search input {
  flex: 1; padding: 10px 0;
  background: transparent; border: none;
  font-size: 14px; color: var(--white); outline: none;
}
.filter-search input::placeholder { color: #555; }
.filter-search svg { color: #555; flex-shrink: 0; }

.filter-select {
  padding: 10px 14px;
  background: var(--ink-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--cream);
  font-size: 13px; font-family: inherit;
  cursor: pointer; outline: none;
  min-width: 130px;
  transition: border-color .2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.filter-select:focus { border-color: var(--gold-dim); }
.filter-select option { background: var(--ink-3); }

.country-filters {
  display: flex; gap: 8px;
}
.country-btn {
  padding: 8px 16px;
  background: var(--ink-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: #aaa; font-size: 13px; font-weight: 500;
  transition: all .2s;
  white-space: nowrap;
}
.country-btn.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.country-btn:hover:not(.active) { border-color: var(--gold-dim); color: var(--white); }

.results-bar {
  padding: 20px 5% 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.results-count { font-size: 13px; color: #666; }
.results-count strong { color: var(--gold); }

.inventory-grid { padding: 24px 5% 80px; }
.no-results {
  text-align: center; padding: 80px 20px;
  color: #555;
}
.no-results .no-results-icon { font-size: 48px; margin-bottom: 16px; }
.no-results h3 { font-family: 'Syne', sans-serif; font-size: 20px; color: var(--white); margin-bottom: 8px; }

/* ─── VEHICLE DETAIL PAGE ────────────────────────────────────────────────────── */
.vehicle-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.gallery { position: sticky; top: 90px; }
.gallery-main {
  aspect-ratio: 16/10;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; }
.gallery-thumb {
  width: 80px; aspect-ratio: 16/10;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
  flex-shrink: 0;
}
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.vehicle-info {}
.vehicle-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #666;
  margin-bottom: 20px;
}
.vehicle-breadcrumb a:hover { color: var(--gold); }
.vehicle-breadcrumb span { color: #444; }

.vehicle-header { margin-bottom: 24px; }
.vehicle-year { font-size: 12px; color: #666; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.vehicle-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800; color: var(--white);
  margin-bottom: 12px;
}
.vehicle-price {
  font-family: 'Syne', sans-serif;
  font-size: 28px; font-weight: 800;
  color: var(--gold);
  margin-bottom: 16px;
}
.vehicle-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }

.vehicle-desc {
  font-size: 14px; color: #888; line-height: 1.8;
  padding: 20px;
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 28px;
}

.specs-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 32px;
}
.spec-item {
  padding: 14px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.spec-label { font-size: 11px; color: #666; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.spec-val { font-size: 14px; font-weight: 600; color: var(--white); }

.inquiry-actions { display: flex; flex-direction: column; gap: 12px; }
.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 16px 24px;
  border-radius: var(--r-md);
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .2s, transform .15s;
  text-decoration: none;
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn-call {
  background: var(--ink-3);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--r-md);
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  border: 1px solid var(--border);
  transition: all .2s;
  text-decoration: none;
}
.btn-call:hover { border-color: var(--gold-dim); color: var(--gold); }
.btn-back {
  background: transparent;
  color: #777; font-size: 13px;
  display: flex; align-items: center; gap: 6px;
  padding: 10px 0;
  transition: color .2s;
  text-decoration: none;
}
.btn-back:hover { color: var(--gold); }

/* ─── MAP SECTION ─────────────────────────────────────────────────────────────── */
.map-section {
  max-width: 1100px; margin: 0 auto;
  padding: 0 5% 100px;
  text-align: center;
}
.map-section .section-label,
.map-section .section-title { text-align: left; }
.map-section .section-title { margin-bottom: 24px; }
.map-card {
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 10px;
  overflow: hidden;
  position: relative;
}
.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  border: 1px solid var(--gold-dim);
  pointer-events: none;
  opacity: .35;
}
.map-card iframe {
  display: block;
  border-radius: calc(var(--r-lg) - 6px);
  filter: grayscale(0.25) contrast(1.05);
}

/* ─── CONTACT PAGE ────────────────────────────────────────────────────────────── */
.contact-layout {
  max-width: 1100px; margin: 0 auto;
  padding: 120px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800; color: var(--white);
  margin-bottom: 16px; line-height: 1.1;
}
.contact-info-title span { color: var(--gold); }
.contact-info-sub { font-size: 15px; color: #777; margin-bottom: 40px; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color .2s;
}
.contact-item:hover { border-color: var(--gold-dim); }
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,168,76,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-item-body h4 { font-size: 13px; color: #666; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-item-body a, .contact-item-body p { font-size: 15px; color: var(--white); transition: color .2s; }
.contact-item-body a:hover { color: var(--gold); }

.contact-form-card {
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
}
.contact-form-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.contact-form-card p { font-size: 13px; color: #666; margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: #888; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  background: var(--ink-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--white);
  font-size: 14px; font-family: inherit;
  outline: none; transition: border-color .2s;
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold-dim); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #555; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  text-align: center; padding: 32px;
}
.form-success .success-icon { font-size: 48px; margin-bottom: 12px; }
.form-success h4 { font-family: 'Syne', sans-serif; font-size: 20px; color: var(--white); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: #777; }

/* ─── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vehicle-layout { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 80px 5% 40px; min-height: 100svh; }
  .hero-bg { background-attachment: scroll; }
  .hero h1 { font-size: 36px; margin-bottom: 14px; }
  .hero-sub { font-size: 14px; margin-bottom: 28px; }
  .hero-eyebrow { font-size: 11px; padding: 5px 12px; margin-bottom: 18px; }
  .hero-flags { gap: 8px; margin-bottom: 24px; }
  .flag-pill { padding: 8px 14px; font-size: 12px; }
  .stats-bar { gap: 20px; margin-top: 32px; }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 11px; }
  .hero-search input { padding: 13px 16px; font-size: 14px; }
  .hero-search button { padding: 10px 18px; font-size: 13px; }
  .section { padding: 60px 5%; }
  .filters-bar { gap: 8px; }
  .country-filters { flex-wrap: wrap; }
  .cta-banner { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .vehicle-layout { padding: 90px 5% 60px; }
}