:root {
  --gold: #d4af37;
  --bronze: #b08d57;
  --charcoal: #121212;
  --charcoal-2: #1c1c1c;
  --text-light: #f5f4f1;
  --text-muted: #c6c1b8;
  --glass: rgba(18, 18, 18, 0.6);
  --border: rgba(212, 175, 55, 0.25);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-light);
  background: radial-gradient(circle at top, #1f1f1f, var(--charcoal));
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(12, 12, 12, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.brand-name {
  color: var(--text-light);
}

.nav-links {
  margin-left: auto;
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--gold);
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  color: #111;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text-light);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-banner {
  position: relative;
  padding: 40px 0 20px;
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/car1.jpg") center/cover no-repeat;
  z-index: 0;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.75), rgba(10, 10, 10, 0.35));
  z-index: 1;
}

.hero-banner > section {
  position: relative;
  z-index: 2;
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0 0 16px;
}

.hero-subtitle {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.stat-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.services,
.quote {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.showcase {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.showcase-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(0, 0, 0, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.showcase-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.6), rgba(18, 18, 18, 0.2));
}

.showcase-content {
  position: relative;
  z-index: 1;
  padding: 40px;
  max-width: 560px;
}

.showcase-content h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--gold);
}

.showcase-cta::after {
  content: "→";
  font-size: 1.1rem;
}

.legal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.legal-card {
  background: rgba(17, 17, 17, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
  line-height: 1.7;
}

.legal-card h3 {
  color: var(--gold);
  margin-top: 24px;
}

.legal-card p {
  color: var(--text-muted);
}

.legal-card ul {
  margin: 8px 0 16px;
  padding-left: 0;
  color: var(--text-muted);
  list-style: none;
}

.legal-card li {
  margin-bottom: 6px;
}

.section-heading h2 {
  margin: 0 0 24px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service-card {
  background: rgba(25, 25, 25, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  min-height: 180px;
  transition: transform 0.2s ease, border 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
}

.service-card p {
  color: var(--text-muted);
  margin-top: 12px;
}

.quote-form {
  background: rgba(17, 17, 17, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  box-shadow: var(--shadow);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-hint {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

input,
select,
textarea {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.phone-group {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 2fr;
  gap: 12px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(212, 175, 55, 0.6);
  border-color: transparent;
}

.range-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

output {
  color: var(--gold);
  font-weight: 600;
  min-width: 90px;
  text-align: right;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-status {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer {
  position: relative;
  padding: 80px 24px;
  margin-top: 40px;
  overflow: hidden;
}

.footer-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
  z-index: 0;
}

.video-cta {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: #111111;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.4);
}

.video-cta.hidden {
  display: none;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--gold);
}

.legal-card a[href^="mailto:"],
.footer-links a[href^="mailto:"] {
  color: var(--gold);
}

.legal-card a[href^="mailto:"]:hover,
.footer-links a[href^="mailto:"]:hover {
  color: var(--bronze);
}

.footer-note {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-banner::before {
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
  }

  .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .showcase-card {
    min-height: 280px;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
  }

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

  .hero-actions {
    width: 100%;
  }

  .range-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-banner {
    padding-top: 20px;
  }

  .hero {
    padding-top: 140px;
  }

  .showcase-card {
    min-height: 220px;
  }

  .showcase-content {
    padding: 28px;
  }
}

