:root {
  --bg: #0c0e13;
  --bg-soft: #121620;
  --card: #161b29;
  --line: #273049;
  --gold: #e8b453;
  --gold-2: #f5cd7a;
  --text: #eef1f6;
  --muted: #9aa3b5;
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: var(--gold-2); text-decoration: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12, 14, 19, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 68px;
}

.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-size: 1.5rem; font-weight: 800; letter-spacing: 0.35em;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold);
}
.brand-sub {
  font-size: 0.62rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--muted);
}

.nav { display: flex; gap: 4px; flex-wrap: wrap; }
.nav a {
  color: var(--text); font-size: 0.92rem; font-weight: 500;
  padding: 8px 12px; border-radius: 8px; transition: 0.2s;
}
.nav a:hover { color: var(--gold-2); background: rgba(232, 180, 83, 0.08); }
.nav a.active { color: var(--gold-2); background: rgba(232, 180, 83, 0.12); }

.nav-right { display: flex; align-items: center; gap: 10px; }
.lang {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  border: 1px solid var(--line); padding: 5px 10px; border-radius: 8px;
  color: var(--muted); transition: 0.2s;
}
.lang:hover { color: var(--gold-2); border-color: var(--gold); }

.burger {
  display: none; background: none; border: 1px solid var(--line);
  color: var(--text); font-size: 1.2rem; border-radius: 8px;
  width: 40px; height: 40px; cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 10px;
  background: linear-gradient(90deg, var(--gold), #d99b32);
  color: #14100a; font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; transition: 0.2s;
}
.btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-outline {
  display: inline-block; padding: 13px 26px; border-radius: 10px;
  background: transparent; color: var(--gold-2);
  border: 1px solid var(--gold); font-weight: 600; font-size: 0.95rem;
  transition: 0.2s;
}
.btn-outline:hover { background: rgba(232, 180, 83, 0.1); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 78vh;
  display: flex; align-items: center;
  background: url("../img/hero.jpg") center / cover no-repeat;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10, 12, 17, 0.92) 25%, rgba(10, 12, 17, 0.35) 70%, rgba(10, 12, 17, 0.55));
}
.hero-content { position: relative; padding: 90px 0; max-width: 620px; }
.hero-kicker {
  display: inline-block; font-size: 0.8rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-2); margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.15;
  font-weight: 800; margin-bottom: 18px;
}
.hero h1 em { color: var(--gold-2); font-style: normal; }
.hero p { color: #c6ccd8; font-size: 1.08rem; margin-bottom: 30px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-strip {
  border-top: 1px solid var(--line); background: var(--bg-soft);
  padding: 18px 0;
}
.hero-strip .container {
  display: flex; gap: 26px; flex-wrap: wrap; justify-content: center;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: 0.88rem;
}
.chip::before { content: "◆"; color: var(--gold); font-size: 0.7rem; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-soft); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.kicker {
  font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-2); display: block; margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); font-weight: 800; }
.section-head p { color: var(--muted); margin-top: 10px; }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px; transition: 0.25s;
}
.card:hover { border-color: rgba(232, 180, 83, 0.45); transform: translateY(-3px); }
.card .icon {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232, 180, 83, 0.12); font-size: 1.3rem;
}
.card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Vehicles ---------- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-btn {
  background: transparent; border: 1px solid var(--line); color: var(--muted);
  padding: 9px 18px; border-radius: 999px; cursor: pointer; font-size: 0.88rem;
  transition: 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--gold); color: var(--gold-2);
}

.vehicle-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; display: flex;
  flex-direction: column;
}
.vehicle-card.hide { display: none; }
.vehicle-img { aspect-ratio: 4/3; overflow: hidden; }
.vehicle-img img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.vehicle-body h3 { font-size: 1.15rem; }
.vehicle-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-size: 0.75rem; color: var(--muted);
  border: 1px solid var(--line); padding: 4px 10px; border-radius: 999px;
}
.vehicle-foot {
  margin-top: auto; display: flex; align-items: center;
  justify-content: space-between; gap: 10px; padding-top: 8px;
  border-top: 1px solid var(--line);
}
.price { font-weight: 800; font-size: 1.2rem; color: var(--gold-2); }
.price span { font-size: 0.78rem; font-weight: 400; color: var(--muted); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 64px; margin-bottom: 28px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(232, 180, 83, 0.12); border: 1px solid var(--gold);
  color: var(--gold-2); font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { margin-bottom: 6px; font-size: 1.05rem; }
.step p { color: var(--muted); font-size: 0.93rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.stat h3 { font-size: 2.1rem; color: var(--gold-2); font-weight: 800; }
.stat p { color: var(--muted); font-size: 0.88rem; }

/* ---------- Quote / testimonial ---------- */
.quote {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.quote p { font-style: italic; color: #cdd4e0; margin-bottom: 14px; }
.quote .who { color: var(--gold-2); font-weight: 700; font-size: 0.9rem; }
.quote .who small { display: block; color: var(--muted); font-weight: 400; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px;
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 6px; }
input, select, textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  background: var(--bg); border: 1px solid var(--line);
  color: var(--text); font-size: 0.95rem; font-family: inherit;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--gold);
}
textarea { resize: vertical; min-height: 120px; }

.estimate {
  background: rgba(232, 180, 83, 0.08); border: 1px dashed var(--gold);
  border-radius: 10px; padding: 16px 20px; margin-top: 18px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.estimate strong { font-size: 1.35rem; color: var(--gold-2); }

.form-note { color: var(--muted); font-size: 0.82rem; margin-top: 14px; }

.form-msg { display: none; margin-top: 16px; padding: 14px 18px; border-radius: 10px;
  background: rgba(74, 222, 128, 0.1); border: 1px solid #4ade80; color: #86efac; }
.form-msg.show { display: block; }

/* ---------- FAQ ---------- */
details {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; padding: 18px 22px; margin-bottom: 12px;
}
summary { cursor: pointer; font-weight: 700; }
details p { color: var(--muted); margin-top: 10px; font-size: 0.94rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(90deg, rgba(232, 180, 83, 0.14), rgba(232, 180, 83, 0.05));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 56px 0; text-align: center;
}
.cta-band h2 { font-size: 1.8rem; margin-bottom: 10px; }
.cta-band p { color: var(--muted); margin-bottom: 26px; }

/* ---------- Banner image ---------- */
.banner {
  border-radius: var(--radius); overflow: hidden; position: relative;
  min-height: 320px; display: flex; align-items: flex-end;
}
.banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(12, 14, 19, 0.9));
}
.banner-caption { position: relative; z-index: 1; padding: 26px; color: var(--text); max-width: 560px; }
.banner-caption h3 { font-size: 1.4rem; margin-bottom: 6px; }
.banner-caption p { color: #c6ccd8; font-size: 0.95rem; }

/* ---------- Page head (inner pages) ---------- */
.page-head {
  background: var(--bg-soft); border-bottom: 1px solid var(--line);
  padding: 64px 0 44px;
}
.page-head h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 10px; }
.page-head p { color: var(--muted); max-width: 620px; }

/* ---------- Contact ---------- */
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item .icon {
  min-width: 42px; height: 42px; border-radius: 10px;
  background: rgba(232, 180, 83, 0.12);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-item h4 { font-size: 0.95rem; margin-bottom: 2px; }
.contact-item p, .contact-item a { color: var(--muted); font-size: 0.9rem; }

/* ---------- Footer ---------- */
.site-footer { background: #090b0f; border-top: 1px solid var(--line); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.site-footer h4 { font-size: 0.95rem; margin-bottom: 14px; color: var(--gold-2); }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: var(--muted); font-size: 0.9rem; }
.site-footer a:hover { color: var(--gold-2); }
.footer-about { color: var(--muted); font-size: 0.9rem; margin-top: 12px; max-width: 300px; }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 18px 0;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  color: var(--muted); font-size: 0.82rem;
}

/* ---------- Language chooser ---------- */
.lang-hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: url("../assets/img/hero.jpg") center / cover no-repeat;
  position: relative; text-align: center;
}
.lang-hero::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(10, 12, 17, 0.82);
}
.lang-hero .container { position: relative; z-index: 1; }
.lang-cards { display: flex; gap: 22px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.lang-card {
  width: 250px; padding: 34px 26px; border-radius: 16px;
  background: rgba(22, 27, 41, 0.85); border: 1px solid var(--line);
  transition: 0.25s;
}
.lang-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.lang-card .flag { font-size: 2.2rem; margin-bottom: 12px; }
.lang-card h3 { margin-bottom: 6px; }
.lang-card p { color: var(--muted); font-size: 0.88rem; margin-bottom: 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .grid-3 { grid-template-columns: 1fr; }
  .nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; background: var(--bg-soft);
    border-bottom: 1px solid var(--line); padding: 14px 20px 20px; gap: 2px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 11px 8px; }
  .burger { display: block; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { min-height: 66vh; }
}

@media (max-width: 520px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
