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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f2f2f8;
  color: #1b2130;
  line-height: 1.6;
  font-size: 19px;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  height: 44px;
  width: auto;
  border-radius: 8px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.8rem;
  opacity: 0.8;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: #1b2130;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

nav a {
  color: #1b2130;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}

nav a:hover {
  opacity: 1;
  color: #ffcc33;
}

.call-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #f9fafb;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.45);
  white-space: nowrap;
}


.call-pill span:last-child {
  font-weight: 600;
}

.call-pill small {
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}


/* Mobile nav behavior */
.site-header.nav-open nav ul { display: flex; }

@media (max-width: 900px) {
  .nav-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.18);
    color: #1b2130;
    font-weight: 700;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(15,23,42,0.08);
  }

  nav{
    position: relative;
  }

  nav ul{
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-start;
    padding: 0.75rem;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.12);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(15,23,42,0.18);
  }

  nav a{
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
  }

  .header-inner{
    gap: 0.85rem;
    flex-wrap: wrap;
  }

  .call-pill{
    width: 100%;
    justify-content: center;
    font-size: 1.05rem;
    padding: 0.75rem 1.1rem;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 3.5rem 0 3.75rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ffcc33;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 3.1vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero h1 span.highlight {
  color: #ffcc33;
}

.hero p.lead {
  font-size: 1.02rem;
  max-width: 34rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.btn-outline {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  padding: 0.5rem 1.1rem;
  background: transparent;
  color: #1b2130;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  opacity: 0.9;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
}

/* Hero image */
.hero-media {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 45px rgba(0,0,0,0.7);
}

.hero-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(5,5,10,0.8);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 0.78rem;
}

/* Sections */
.section {
  padding: 2.75rem 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.section-heading {
  margin-bottom: 1.75rem;
}

.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ffcc33;
  margin-bottom: 0.5rem;
}

.section-heading h2 {
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
}

.section-heading p {
  max-width: 36rem;
  opacity: 0.85;
  font-size: 0.96rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 1.35rem 1.25rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.05);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.94rem;
  opacity: 0.9;
}

/* List with icons */
.icon-list {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  font-size: 0.93rem;
}

.icon-list li {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
}

.icon-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #ffcc33;
  margin-top: 0.35rem;
}

/* Two-column section */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.25rem;
  align-items: flex-start;
}

/* Pill list */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.pill {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
}

/* Contact */
.contact-panel {
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  gap: 1.25rem;
}

.contact-panel h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.contact-details {
  display: grid;
  gap: 0.35rem;
  font-size: 0.93rem;
}

.contact-details a {
  color: #ffcc33;
  text-decoration: none;
}

.small-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.75;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0 1.8rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Page hero variant */
.page-hero {
  padding: 2.5rem 0 2.3rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.page-hero h1 {
  font-size: clamp(1.9rem, 2.5vw, 2.3rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  max-width: 40rem;
  font-size: 0.98rem;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.5rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    align-items: center;
  }

  nav ul {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 2rem;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 2.1rem 0;
  }

  .card {
    padding: 1.1rem 1rem;
  }
}



/* Contact form layout */
.contact-panel {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.06);
}

@media (max-width: 768px) {
  .contact-panel {
    grid-template-columns: 1fr;
  }
}

.contact-form-card {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 10px 30px rgba(15,23,42,0.04);
}

.contact-form-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.contact-form-subtext {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (max-width: 640px) {
  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #6b7280;
  margin-bottom: 0.3rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid rgba(148,163,184,0.8);
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: #111827;
  background-color: #ffffff;
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-footnote {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.contact-form button[type="submit"] {
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  box-shadow: 0 10px 26px rgba(38,103,255,0.35);
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}

.contact-form button[type="submit"]:hover {
  opacity: 0.98;
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(38,103,255,0.45);
}


/* Thank you page */
.thankyou-page { background: #f2f2f8; }
.thankyou-hero { position: relative; padding: 4.5rem 0 3.5rem; overflow: hidden; }
.thankyou-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(30,64,175,0.92), rgba(37,99,235,0.78)),
    url("./vehicle-delivery_files/IMG_1761-1920w.jpg") center/cover no-repeat;
  filter: saturate(1.05);
}
.thankyou-card {
  position: relative;
  z-index: 1;
  max-width: 760px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 2.25rem 2.25rem;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}
.thankyou-badge{
  display:inline-flex;
  align-items:center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  text-transform: uppercase;
  background: rgba(37,99,235,0.12);
  color: #1e40af;
  margin-bottom: 0.85rem;
}
.thankyou-badge.is-error{
  background: rgba(220,38,38,0.12);
  color: #b91c1c;
}
.thankyou-title{ font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.05; margin: 0 0 0.9rem; color: #0f172a; }
.thankyou-lede{ font-size: 1.1rem; line-height: 1.6; color:#334155; margin-bottom: 1.4rem; }
.thankyou-actions{ display:flex; flex-wrap:wrap; gap: 0.8rem; align-items:center; margin-bottom: 1.25rem; }
.thankyou-call{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color:#fff;
  font-weight: 900;
  text-decoration:none;
  box-shadow: 0 14px 28px rgba(37,99,235,0.35);
}
.thankyou-call:hover{ filter: brightness(1.05); }
.thankyou-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(30,64,175,0.28);
  color:#1e40af;
  text-decoration:none;
  font-weight: 800;
  background: rgba(255,255,255,0.7);
}
.thankyou-outline:hover{ background:#fff; }
.thankyou-meta{
  display:grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.thankyou-meta__item .label{
  display:block;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(15,23,42,0.6);
  margin-bottom: 0.25rem;
}
.thankyou-meta__item .value{
  color:#0f172a;
  font-weight: 700;
}
.thankyou-next{ padding: 2.75rem 0 4rem; }
.thankyou-next__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.thankyou-next__item{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 1.5rem 1.5rem;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}
.thankyou-next__item h2{ margin:0 0 0.55rem; color:#0f172a; font-size: 1.35rem; }
.thankyou-next__item p{ margin:0 0 1rem; color:#334155; line-height:1.6; }
.thankyou-quicklist{ color:#0f172a; font-weight:700; line-height:1.7; margin-bottom: 1.1rem; }

.call-pill.call-pill--big{
  padding: 0.85rem 1.55rem;
  font-size: 1.1rem;
  box-shadow: 0 16px 30px rgba(37,99,235,0.30);
}

@media (max-width: 900px){
  .thankyou-next__grid{ grid-template-columns: 1fr; }
  .thankyou-card{ padding: 1.6rem; }
}
