/* GOT STUFF — Brand-aligned styles
   Navy #0D1B3E | Orange #FF5722 | White #FFFFFF
*/

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

:root {
  --navy: #0D1B3E;
  --navy-dark: #08122B;
  --orange: #FF5722;
  --orange-dark: #E64A19;
  --white: #FFFFFF;
  --gray-50: #F8F9FB;
  --gray-100: #EEF1F5;
  --gray-200: #DCE1E8;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --shadow-sm: 0 2px 8px rgba(13,27,62,0.06);
  --shadow-md: 0 8px 24px rgba(13,27,62,0.10);
  --shadow-lg: 0 20px 60px rgba(13,27,62,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy-dark);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
  letter-spacing: 0.02em;
}
.topbar strong { color: var(--orange); }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--gray-100);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 900; font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900;
  line-height: 1;
  color: var(--white);
  flex-direction: column;
}
.logo-mark span:first-child { color: var(--orange); }
.logo-mark span:last-child {
  color: var(--white);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}
.logo-text-q { color: var(--orange); }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--navy); font-weight: 600; font-size: 15px;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 2px; background: var(--orange);
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 12px rgba(255,87,34,0.3);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(255,87,34,0.4); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 17px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.08;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,87,34,0.15);
  color: var(--orange);
  padding: 6px 14px; border-radius: 4px;
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero h1 .orange { color: var(--orange); }
.hero p.lead {
  font-size: 19px; line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-card {
  background: var(--white);
  color: var(--navy);
  padding: 32px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 {
  font-size: 22px; margin-bottom: 8px; font-weight: 800;
}
.hero-card .sub { color: var(--gray-500); font-size: 14px; margin-bottom: 24px; }
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block; font-size: 13px; font-weight: 600;
  margin-bottom: 6px; color: var(--gray-700);
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px; font-size: 15px;
  font-family: inherit;
  transition: border-color 0.15s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--orange);
}
.form-row textarea { min-height: 100px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ===== SECTIONS ===== */
.section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--navy); color: var(--white); }

.eyebrow {
  display: block;
  color: var(--orange);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 12px;
}
.h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.lead-text {
  font-size: 18px; color: var(--gray-700);
  max-width: 720px; line-height: 1.6;
}
.section-dark .lead-text { color: rgba(255,255,255,0.8); }

.center { text-align: center; margin: 0 auto; }

/* ===== TRUST STRIP ===== */
.trust {
  background: var(--orange);
  color: var(--white);
  padding: 20px 24px;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-around;
  flex-wrap: wrap; gap: 20px;
  font-weight: 700; font-size: 15px;
}
.trust-item { display: flex; align-items: center; gap: 8px; }

/* ===== STEPS ===== */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 48px;
}
.step {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--orange);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: var(--navy); color: var(--orange);
  border-radius: 50%;
  font-weight: 900; font-size: 22px;
  margin-bottom: 20px;
}
.step h3 { font-size: 20px; margin-bottom: 12px; font-weight: 800; }
.step p { color: var(--gray-500); font-size: 15px; }

/* ===== CARDS ===== */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 48px;
}
.card {
  background: var(--white);
  padding: 32px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 52px; height: 52px;
  background: rgba(255,87,34,0.12); color: var(--orange);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 18px;
}
.card h3 { font-size: 20px; margin-bottom: 10px; font-weight: 800; }
.card p { color: var(--gray-500); font-size: 15px; }

/* ===== CITIES ===== */
.cities {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px; margin-top: 40px;
}
.city {
  background: var(--white); padding: 14px 18px;
  border-radius: 8px; text-align: center;
  border: 1px solid var(--gray-200);
  font-weight: 600; font-size: 14px;
  color: var(--navy);
  transition: all 0.15s ease;
}
.city:hover { border-color: var(--orange); color: var(--orange); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 60px 24px;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-banner p { font-size: 18px; opacity: 0.95; margin-bottom: 28px; }
.cta-banner .btn {
  background: var(--white); color: var(--navy);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.cta-banner .btn:hover { background: var(--navy); color: var(--white); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 30px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer h4 {
  color: var(--white); font-size: 14px;
  margin-bottom: 16px; text-transform: uppercase;
  letter-spacing: 0.1em; font-weight: 800;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; font-size: 14px; }
.footer a { color: rgba(255,255,255,0.7); }
.footer a:hover { color: var(--orange); }
.footer-brand p { font-size: 14px; line-height: 1.6; margin-top: 16px; max-width: 320px; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 24px; font-size: 13px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px; margin-top: 48px;
}
.review {
  background: var(--white);
  padding: 28px;
  border-radius: 14px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.review-stars { color: var(--orange); font-size: 18px; margin-bottom: 12px; }
.review-text { font-size: 15px; line-height: 1.65; color: var(--gray-700); margin-bottom: 18px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
}
.review-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.review-meta { font-size: 12px; color: var(--gray-500); }

/* ===== FRANCHISE ===== */
.fr-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 100px 24px 80px;
  text-align: center;
}
.fr-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.fr-hero .price {
  display: inline-block;
  background: var(--white); color: var(--navy);
  padding: 16px 32px; border-radius: 50px;
  font-size: 26px; font-weight: 900;
  margin: 24px 0;
  box-shadow: var(--shadow-lg);
}
.fr-includes {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-top: 48px;
}
.fr-item {
  background: var(--white);
  padding: 28px 24px;
  border-radius: 14px;
  text-align: center;
  border: 2px solid var(--gray-100);
  transition: border-color 0.2s ease;
}
.fr-item:hover { border-color: var(--orange); }
.fr-item-icon { font-size: 36px; margin-bottom: 12px; }
.fr-item h4 { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.fr-item p { font-size: 14px; color: var(--gray-500); }

/* ===== TRAILER PAGE ===== */
.trailer-spec {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  margin-top: 40px;
}
.trailer-spec-list { list-style: none; }
.trailer-spec-list li {
  padding: 14px 0; border-bottom: 1px solid var(--gray-200);
  display: flex; justify-content: space-between;
  font-size: 15px;
}
.trailer-spec-list li strong { color: var(--navy); }
.trailer-spec-list li span { color: var(--gray-500); }

.trailer-img {
  background: var(--gray-100);
  border-radius: 14px;
  padding: 60px 40px;
  text-align: center;
  font-size: 16px; color: var(--gray-500);
  min-height: 360px;
  display: flex; align-items: center; justify-content: center;
}

/* ===== CONTACT FORM PAGE ===== */
.contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; margin-top: 40px;
}
.contact-info-card {
  background: var(--navy); color: var(--white);
  padding: 40px; border-radius: 14px;
}
.contact-info-card h3 { color: var(--orange); margin-bottom: 16px; font-size: 22px; }
.contact-info-card .info-row {
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-card .info-row:last-child { border-bottom: none; }
.contact-info-card .label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 4px; }
.contact-info-card .value { font-size: 16px; font-weight: 600; }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .trailer-spec { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 56px 20px; }
  .hero { padding: 56px 20px; }
}
