/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red: #c8102e;
  --red-dark: #9e0c22;
  --ink: #101418;
  --ink-soft: #3a4149;
  --grey-bg: #f4f5f7;
  --line: #e3e5e9;
  --white: #ffffff;
  --gold: #d4a53d;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(16,20,24,0.08);
  --shadow-lg: 0 20px 50px rgba(16,20,24,0.16);
  --maxw: 1180px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(200,16,46,0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head.center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-head p { color: var(--ink-soft); font-size: 16.5px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(200,16,46,0.3); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #000; transform: translateY(-2px); }

.btn-block { width: 100%; justify-content: center; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -0.3px; }
.logo .mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; font-weight: 900;
}
.logo .brand-sub { display: block; font-size: 11px; font-weight: 600; color: var(--ink-soft); letter-spacing: 1px; }

.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
  padding: 10px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  border-radius: 6px;
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--ink); background: var(--grey-bg); }
.nav-links a.active { color: var(--red); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-weight: 700; font-size: 14px; color: var(--ink); display: flex; align-items: center; gap: 6px; }

.menu-toggle { display: none; background: none; border: none; font-size: 24px; }

@media (max-width: 880px) {
  .nav-links { position: fixed; top: 71px; left: 0; right: 0; background: var(--white); flex-direction: column; align-items: stretch; padding: 12px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); display: none; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px; }
  .menu-toggle { display: block; }
  .nav-phone { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, rgba(16,20,24,0.88), rgba(16,20,24,0.55)), url('https://images.unsplash.com/photo-1617469767053-d3b523a0b982?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: #fff;
}

.hero-inner { max-width: 640px; padding: 90px 0; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px; border-radius: 30px;
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 22px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: #37d67a; }

.hero h1 { font-size: clamp(34px, 5.4vw, 56px); font-weight: 900; line-height: 1.08; letter-spacing: -1px; margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-size: 26px; font-weight: 900; }
.hero-stats div span { font-size: 13px; color: rgba(255,255,255,0.7); }

/* ===== Marquee / brand strip ===== */
.brand-strip {
  background: var(--ink);
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
}
.brand-strip .track {
  display: inline-flex;
  gap: 60px;
  animation: scroll-left 26s linear infinite;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Cards / Grid ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: all 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.feature-card .icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(200,16,46,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.feature-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.feature-card p { color: var(--ink-soft); font-size: 15px; }
.feature-card p a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.feature-card p a:hover { color: var(--red-dark); }

/* ===== Car Card ===== */
.car-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
}
.car-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }

.car-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--grey-bg); }
.car-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.car-card:hover .car-media img { transform: scale(1.06); }

.car-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: #fff;
  font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 20px;
}
.car-badge.grey { background: rgba(16,20,24,0.75); }
.car-fav {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

.car-body { padding: 20px; }
.car-title { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.car-sub { font-size: 13px; color: var(--ink-soft); margin-bottom: 14px; }

.car-specs { display: flex; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.car-specs span { font-size: 12.5px; color: var(--ink-soft); display: flex; align-items: center; gap: 5px; }

.car-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 14px; }
.car-price strong { font-size: 19px; font-weight: 900; color: var(--red); }
.car-price span { display: block; font-size: 11.5px; color: var(--ink-soft); }
.car-link { font-size: 13px; font-weight: 700; color: var(--ink); border: 1px solid var(--line); padding: 8px 14px; border-radius: 6px; }
.car-link:hover { background: var(--ink); color: #fff; }

/* ===== Filter Bar (Gallery) ===== */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  background: var(--grey-bg); border-radius: var(--radius);
  padding: 20px; margin-bottom: 36px;
}
.filter-group { display: flex; flex-direction: column; gap: 6px; }
.filter-group label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--ink-soft); }
.filter-group select, .filter-group input {
  padding: 10px 14px; border-radius: 6px; border: 1px solid var(--line);
  font-size: 14px; background: #fff; min-width: 150px;
}
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; }
.chip {
  padding: 9px 18px; border-radius: 30px; border: 1px solid var(--line);
  font-size: 14px; font-weight: 600; background: #fff; transition: all 0.15s;
}
.chip.active, .chip:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.results-count { color: var(--ink-soft); font-size: 14px; margin-bottom: 20px; }

/* ===== Steps / Process ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 28px 22px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-size: 34px; font-weight: 900; color: rgba(200,16,46,0.14); display: block; margin-bottom: 8px;
}
.step h4 { font-size: 16.5px; font-weight: 800; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--ink-soft); }

/* ===== Testimonials ===== */
.testimonial-card {
  background: var(--grey-bg); border-radius: var(--radius); padding: 28px;
}
.testimonial-card .stars { color: var(--gold); font-size: 15px; margin-bottom: 14px; }
.testimonial-card p { font-size: 15px; color: var(--ink-soft); margin-bottom: 20px; }
.testimonial-user { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--red),var(--gold)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; }
.testimonial-user strong { display: block; font-size: 14.5px; }
.testimonial-user span { font-size: 12.5px; color: var(--ink-soft); }

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(120deg, var(--ink), #22282f);
  color: #fff; border-radius: 16px; padding: 56px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 20% 20%, rgba(200,16,46,0.25), transparent 55%); }
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(24px, 3.6vw, 34px); font-weight: 900; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== About page bits ===== */
.stat-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
@media (max-width: 700px) { .stat-strip { grid-template-columns: repeat(2,1fr); } }
.stat-strip .stat strong { display: block; font-size: 34px; font-weight: 900; color: var(--red); }
.stat-strip .stat span { font-size: 13.5px; color: var(--ink-soft); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 30px; } }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }

.value-list { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.value-list li { display: flex; gap: 14px; align-items: flex-start; }
.value-list .num { width: 30px; height: 30px; border-radius: 50%; background: var(--red); color: #fff; font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-list strong { display: block; margin-bottom: 3px; }
.value-list span { color: var(--ink-soft); font-size: 14.5px; }

.team-card { text-align: center; }
.team-photo { width: 100%; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 16px; font-weight: 800; }
.team-card span { font-size: 13.5px; color: var(--red); font-weight: 600; }

/* ===== Contact page ===== */
.contact-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; }
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }

.contact-card { display: flex; gap: 16px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 16px; }
.contact-card .icon { width: 46px; height: 46px; border-radius: 10px; background: rgba(200,16,46,0.08); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-card h4 { font-size: 15.5px; font-weight: 800; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 14.5px; color: var(--ink-soft); display: block; }

.form-box { background: var(--grey-bg); border-radius: var(--radius); padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--ink); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px; font-size: 14.5px; background: #fff; font-family: inherit;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 12px; }
.form-success { display: none; background: #e7f8ee; border: 1px solid #37d67a; color: #146c3d; padding: 14px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.form-success.show { display: block; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 20px; }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }

.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq-q { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 15.5px; cursor: pointer; }
.faq-q .plus { transition: transform 0.2s; font-size: 20px; color: var(--red); }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; font-size: 14.5px; color: var(--ink-soft); }
.faq-item.open .faq-a { max-height: 200px; padding-top: 12px; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.75); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; margin-bottom: 46px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
.footer-grid h5 { color: #fff; font-size: 14.5px; font-weight: 800; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-grid li { margin-bottom: 10px; font-size: 14.5px; }
.footer-grid a:hover { color: #fff; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-about p { font-size: 14px; margin-bottom: 20px; color: rgba(255,255,255,0.6); }
.social-row { display: flex; gap: 10px; }
.social-row a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.social-row a:hover { background: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; color: rgba(255,255,255,0.5); }

/* ===== Page Header (non-home pages) ===== */
.page-header {
  background: linear-gradient(120deg, rgba(16,20,24,0.9), rgba(16,20,24,0.72)), url('https://images.unsplash.com/photo-1493238792000-8113da705763?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: #fff; padding: 90px 0 60px; text-align: center;
}
.page-header .section-tag { background: rgba(255,255,255,0.15); color: #fff; }
.page-header h1 { font-size: clamp(30px, 4.6vw, 46px); font-weight: 900; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; }
.breadcrumb { font-size: 13.5px; color: rgba(255,255,255,0.6); margin-top: 14px; }
.breadcrumb a { color: #fff; font-weight: 600; }

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.bg-grey { background: var(--grey-bg); }
