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

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

:root {
  --red:        #CC2526;
  --red-bright: #E02B2C;
  --red-dark:   #9E1A1B;
  --red-deep:   #6B1010;
  --black:      #0d0d0d;
  --black2:     #141414;
  --surface:    #1a1a1a;
  --surface2:   #202020;
  --surface3:   #282828;
  --white:      #f5f2ee;
  --white-muted:#b0aca6;
  --white-dim:  #6e6a65;
  --border:     #2c2c2c;
  --border-red: rgba(204,37,38,0.3);
  --radius:     4px;
  --radius-lg:  10px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* ── NAV ──────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,13,13,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white);
}
.nav-logo span { color: var(--red); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  font-size: 13px; font-weight: 600;
  color: var(--white-muted); letter-spacing: .4px;
  transition: color .15s;
}
.nav-phone:hover { color: var(--red); }
.nav-cta {
  background: var(--red); color: var(--white);
  padding: 8px 20px; border-radius: var(--radius);
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px;
  transition: background .15s;
}
.nav-cta:hover { background: var(--red-bright); }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  padding: 100px 24px 56px;
  background: var(--black2);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red);
}
.hero-inner { max-width: 1100px; margin: 0 auto; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(204,37,38,.12);
  border: 1px solid var(--border-red);
  border-radius: 2px; padding: 5px 12px; margin-bottom: 16px;
  font-size: 11px; font-weight: 600;
  color: var(--red); letter-spacing: 1.5px; text-transform: uppercase;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; line-height: .95;
  margin-bottom: 12px;
}
.hero h1 span { color: var(--red); }
.hero p {
  font-size: 15px; color: var(--white-muted);
  font-weight: 300; max-width: 460px;
}

/* ── FORM WRAP ────────────────────────────────────────────────── */
.form-wrap {
  max-width: 860px;
  margin: 40px auto 64px;
  padding: 0 20px;
}

/* ── FORM SECTION ─────────────────────────────────────────────── */
.form-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 16px;
  position: relative;
}
.form-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--white); margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.form-section h2::before {
  content: '';
  display: inline-block;
  width: 16px; height: 2px;
  background: var(--red);
}

/* ── SERVICE GRID ─────────────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 10px;
}
.service-option input { display: none; }
.service-box {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  cursor: pointer;
  transition: all .15s;
  text-align: center;
  position: relative; overflow: hidden;
}
.service-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .2s;
}
.service-option input:checked + .service-box,
.service-box:hover { border-color: var(--border-red); background: var(--surface3); }
.service-option input:checked + .service-box::before,
.service-box:hover::before { transform: scaleX(1); }
.service-option input:checked + .service-box .service-check { opacity: 1; transform: scale(1); }
.service-check {
  position: absolute; top: 8px; right: 8px;
  width: 20px; height: 20px;
  background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
  opacity: 0; transform: scale(.6);
  transition: all .15s;
}
.service-name {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--white); margin-bottom: 6px;
}
.service-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--red); letter-spacing: 1px;
}
.service-desc { font-size: 11px; color: var(--white-dim); margin-top: 4px; }

/* ── VEHICLE GRID ─────────────────────────────────────────────── */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 540px) { .vehicle-grid { grid-template-columns: repeat(2,1fr); } }
.vehicle-option input { display: none; }
.vehicle-box {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 10px;
  text-align: center; cursor: pointer;
  transition: all .15s;
}
.vehicle-option input:checked + .vehicle-box,
.vehicle-box:hover { border-color: var(--border-red); background: var(--surface3); }
.v-icon { font-size: 1.8rem; margin-bottom: 6px; }
.v-name {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--white-muted);
}

/* ── PRICE DISPLAY ────────────────────────────────────────────── */
.price-display {
  margin-top: 14px;
  background: rgba(204,37,38,.08);
  border: 1px solid var(--border-red);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: .85rem; color: var(--white-muted);
}
.price-display strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; color: var(--red); letter-spacing: 1px;
}

/* ── FIELDS ───────────────────────────────────────────────────── */
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .row-2 { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field:last-child { margin-bottom: 0; }
.field label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--white-muted);
}
.field input,
.field select,
.field textarea {
  padding: 11px 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: .9rem; font-family: 'DM Sans', sans-serif;
  transition: border-color .15s;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--white-dim); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--border-red);
  box-shadow: 0 0 0 3px rgba(204,37,38,.08);
}
.field input:disabled,
.field select:disabled {
  opacity: .5; cursor: not-allowed;
}
.field select option { background: var(--surface2); }
.hint {
  font-size: .75rem; color: var(--white-dim); margin-top: 8px;
}

/* ── PAYMENT NOTE ─────────────────────────────────────────────── */
.payment-note {
  background: rgba(204,37,38,.06);
  border-color: var(--border-red);
  color: var(--white-muted);
  font-size: .85rem;
}

/* ── SUBMIT ───────────────────────────────────────────────────── */
.btn-submit {
  width: 100%; padding: 15px;
  background: var(--red); color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px;
  border: none; border-radius: var(--radius);
  cursor: pointer; margin-top: 8px;
  transition: background .15s, transform .1s;
}
.btn-submit:hover { background: var(--red-bright); transform: translateY(-1px); }
.btn-submit:active { transform: scale(.99); }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ── ERROR ────────────────────────────────────────────────────── */
.form-error {
  background: rgba(204,37,38,.1);
  border: 1px solid var(--border-red);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: #ff6b6b;
  font-size: .85rem; margin-top: 12px;
}

/* ── SUCCESS ──────────────────────────────────────────────────── */
.success-card {
  max-width: 500px; margin: 80px auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 52px 32px;
}
.success-icon {
  width: 68px; height: 68px;
  background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff;
  margin: 0 auto 20px;
}
.success-card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px;
}
.success-card p { color: var(--white-muted); margin-bottom: 8px; font-size: .9rem; }
.success-sub { color: var(--white-dim); font-size: .82rem; }
.success-sub a { color: var(--red); }

/* ── FOOTER ───────────────────────────────────────────────────── */
footer {
  background: var(--black2);
  border-top: 1px solid var(--border);
  text-align: center; padding: 24px;
  color: var(--white-dim); font-size: .8rem;
}
footer a { color: var(--white-muted); transition: color .15s; }
footer a:hover { color: var(--red); }
