/* ===========================
   WHEELIE GOOD WHEELS - CSS v2
   Navy #1B3A6B | Orange #D4722A | White #FFFFFF
   =========================== */

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

:root {
  --navy: #1B3A6B;
  --navy-dark: #122850;
  --orange: #D4722A;
  --orange-dark: #B85E1E;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-400: #ADB5BD;
  --gray-600: #6C757D;
  --gray-800: #343A40;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(27,58,107,0.10);
  --shadow-lg: 0 12px 48px rgba(27,58,107,0.18);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-800); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ---- UTILITY ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,114,42,0.4); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-white-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-white-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 10px; }
.btn-xl { padding: 20px 48px; font-size: 18px; font-weight: 700; border-radius: 12px; }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.5px; color: var(--navy); margin-bottom: 14px; }
.section-sub { font-size: 17px; color: var(--gray-600); max-width: 540px; margin: 0 auto; }

/* ---- NAVBAR ---- */
.navbar { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--gray-200); box-shadow: 0 2px 12px rgba(27,58,107,0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo img { height: 56px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--gray-800); font-weight: 500; font-size: 15px; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links .btn { color: var(--white); margin-left: 8px; padding: 10px 22px; font-size: 14px; }
.hamburger { display: none; background: none; border: none; color: var(--navy); font-size: 26px; cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; gap: 4px; background: var(--white); padding: 12px 28px 20px; border-top: 1px solid var(--gray-200); }
.mobile-menu a { text-decoration: none; color: var(--gray-800); font-weight: 500; font-size: 16px; padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.mobile-menu .btn { margin-top: 12px; text-align: center; color: var(--white); border-bottom: none; }
.mobile-menu.open { display: flex; }
@media (max-width: 820px) { .nav-links { display: none; } .hamburger { display: block; } }

/* ---- HERO ---- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1800&q=85');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,58,107,0.88) 0%, rgba(18,40,80,0.72) 60%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; padding: 100px 0 80px; }
.hero-content { max-width: 640px; }
.hero-badge-pill {
  display: inline-block;
  background: rgba(212,114,42,0.25);
  border: 1px solid rgba(212,114,42,0.6);
  color: #FFB380;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.hero-content h1 {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-content h1 .highlight { color: var(--orange); }
.hero-sub { font-size: 19px; color: rgba(255,255,255,0.80); max-width: 500px; margin-bottom: 40px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 20px; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 20px; font-weight: 800; color: var(--white); line-height: 1; }
.stat span { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 3px; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }
@media (max-width: 600px) { .hero { min-height: 85vh; } .hero-content h1 { letter-spacing: -1px; } }

/* ---- TRUST BAR ---- */
.trust-bar { background: var(--navy); padding: 18px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { color: rgba(255,255,255,0.88); font-size: 14px; font-weight: 500; white-space: nowrap; }
@media (max-width: 600px) { .trust-inner { gap: 18px; } }

/* ---- FLEET ---- */
.fleet { padding: 100px 0; background: var(--off-white); }
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.fleet-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s; }
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fleet-img-wrap { position: relative; overflow: hidden; height: 220px; }
.fleet-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.fleet-card:hover .fleet-img-wrap img { transform: scale(1.05); }
.fleet-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--orange); color: var(--white);
  font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.fleet-tag-soon { background: var(--gray-600); }
.fleet-info { padding: 24px; }
.fleet-info h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.fleet-info p { color: var(--gray-600); font-size: 14px; margin-bottom: 20px; line-height: 1.6; }

/* ---- FEATURES ---- */
.features { padding: 100px 0; background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feature-card { background: var(--off-white); border-radius: var(--radius); padding: 36px 28px; border: 1px solid var(--gray-200); transition: all 0.2s; }
.feature-card:hover { border-color: var(--orange); box-shadow: 0 6px 24px rgba(212,114,42,0.12); transform: translateY(-3px); }
.feature-icon { font-size: 36px; margin-bottom: 18px; }
.feature-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feature-card p { color: var(--gray-600); font-size: 15px; line-height: 1.65; }

/* ---- HOW IT WORKS ---- */
.how-it-works { padding: 100px 0; background: var(--navy); }
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-sub { color: rgba(255,255,255,0.65); }
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 0; }
.step { flex: 1; min-width: 200px; max-width: 260px; text-align: center; padding: 32px 16px; }
.step-num { width: 64px; height: 64px; background: var(--orange); color: var(--white); border-radius: 50%; font-size: 24px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 6px 20px rgba(212,114,42,0.4); }
.step h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.65; }
.step-arrow { font-size: 28px; color: rgba(255,255,255,0.25); align-self: center; padding-bottom: 32px; }
.how-it-works .btn-primary { box-shadow: 0 8px 28px rgba(212,114,42,0.45); }
@media (max-width: 640px) { .step-arrow { display: none; } }

/* ---- CTA BANNER ---- */
.cta-banner { position: relative; padding: 100px 0; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1600&q=80');
  background-size: cover; background-position: center;
  filter: brightness(0.35);
  z-index: 0;
}
.cta-inner { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(32px, 5vw, 56px); font-weight: 900; color: var(--white); margin-bottom: 16px; letter-spacing: -1px; }
.cta-banner p { font-size: 18px; color: rgba(255,255,255,0.78); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ---- FOOTER ---- */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); padding: 72px 0 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr; gap: 36px; } }
.footer-logo { height: 64px; width: auto; margin-bottom: 16px; border-radius: 8px; background: var(--white); padding: 4px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-nav strong, .footer-contact strong { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.footer-nav a, .footer-contact a, .footer-contact span { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.35); }

/* ---- PAGE HERO ---- */
.page-hero { background: var(--navy); color: var(--white); padding: 80px 0; text-align: center; }
.page-hero h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.70); max-width: 520px; margin: 0 auto; }

/* ---- ABOUT PAGE ---- */
.about-section { padding: 96px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
.about-text h2 { font-size: 32px; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.about-text p { color: var(--gray-600); font-size: 16px; margin-bottom: 18px; line-height: 1.8; }
.about-text p strong { color: var(--gray-800); }
.about-values { display: flex; flex-direction: column; gap: 20px; }
.value-card { background: var(--off-white); border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; align-items: flex-start; border: 1px solid var(--gray-200); }
.value-icon { font-size: 28px; flex-shrink: 0; }
.value-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.value-card p { color: var(--gray-600); font-size: 14px; line-height: 1.6; }

/* ---- CONTACT PAGE ---- */
.contact-section { padding: 96px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-info h2 { font-size: 30px; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.contact-info > p { color: var(--gray-600); margin-bottom: 36px; line-height: 1.75; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; color: var(--navy); }
.contact-item a, .contact-item span { color: var(--gray-600); text-decoration: none; font-size: 15px; }
.contact-item a:hover { color: var(--orange); }
.contact-form-wrap { background: var(--off-white); border-radius: 16px; padding: 44px; border: 1px solid var(--gray-200); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; color: var(--gray-800); }
.form-group input, .form-group textarea { width: 100%; padding: 13px 16px; border: 2px solid var(--gray-200); border-radius: 8px; font-size: 15px; font-family: var(--font); background: var(--white); transition: border-color 0.2s; color: var(--gray-800); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { resize: vertical; }
.form-check { margin-bottom: 24px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--orange); cursor: pointer; }
.checkbox-label span { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
.form-note { margin-top: 14px; text-align: center; font-size: 13px; color: var(--gray-400); }
.form-note a { color: var(--orange); text-decoration: underline; }
