/* ═══════════════════════════════════════════
   Ride 863 — Design System
   Colors: Electric Blue #0070FF, Black #111, Orange #FF6600
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --blue:      #0070FF;
  --blue-dark: #0055CC;
  --blue-light:#E6F0FF;
  --black:     #111111;
  --white:     #FFFFFF;
  --orange:    #FF6600;
  --orange-dark:#E05500;
  --gray-100:  #F5F7FA;
  --gray-200:  #E8ECF1;
  --gray-400:  #9AA5B4;
  --gray-600:  #4A5568;
  --gray-800:  #2D3748;
  --dark:      #0A0A0A;
  --dark-card: #141414;
  --dark-border: #1F1F1F;
  --blue-section: #0070FF;

  --font-head: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Utility ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.section-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 600px;
}
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.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(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }

/* ─── Navigation ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { margin-left: 0.5rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,10,10,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.mobile-menu .btn { margin-top: 1rem; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,40,80,0.55) 50%,
    rgba(0,0,0,0.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 8rem 0 5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,102,0,0.15);
  border: 1px solid rgba(255,102,0,0.4);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
  margin-bottom: 1.75rem;
}
.hero-badge svg { color: var(--orange); }
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 820px;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.hero-call:hover { color: var(--white); }

/* ─── Why Choose Us ─── */
.why-section {
  background: var(--blue);
  padding: 6rem 0;
}
.why-section .section-label { color: rgba(255,255,255,0.7); }
.why-section .section-headline { color: var(--white); }
.why-section .section-sub { color: rgba(255,255,255,0.7); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.2s, background 0.2s;
}
.why-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
}
.why-icon {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

/* ─── Pricing ─── */
.pricing-section { padding: 6rem 0; background: var(--gray-100); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.pricing-card.popular {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,112,255,0.1);
}
.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 100px;
}
.pricing-duration {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.pricing-price span { font-size: 1.2rem; font-weight: 600; }
.pricing-card .btn { width: 100%; }

.discounts-section {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
}
.discounts-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.discounts-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.discount-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
}
.discount-icon {
  width: 36px;
  height: 36px;
  background: #E8F5E9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E7D32;
}

.pricing-cta {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-600);
}

/* ─── Requirements ─── */
.requirements-section {
  padding: 6rem 0;
  background: var(--dark);
  color: var(--white);
}
.requirements-section .section-headline { color: var(--white); }
.requirements-section .section-sub { color: rgba(255,255,255,0.6); }
.req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.req-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}
.req-check {
  width: 28px;
  height: 28px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.req-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* ─── Reviews ─── */
.reviews-section { padding: 6rem 0; background: var(--gray-100); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--gray-200);
}
.review-stars {
  color: #F59E0B;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-800);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.review-author {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-600);
}

/* ─── Routes ─── */
.routes-section { padding: 6rem 0; }
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.route-card {
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.route-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.route-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.route-number {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.route-body { padding: 1.5rem; }
.route-body h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.route-body p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.55;
}
.route-pin {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 0.75rem;
}

/* ─── Gallery ─── */
.gallery-section { padding: 6rem 0; background: var(--dark); }
.gallery-section .section-headline { color: var(--white); }
.gallery-section .section-sub { color: rgba(255,255,255,0.6); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; height: auto; }
.gallery-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

/* ─── About ─── */
.about-section { padding: 6rem 0; background: var(--gray-100); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text .section-headline { margin-bottom: 1.5rem; }
.about-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 2rem;
}
.about-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.about-logo img {
  width: 280px;
  height: auto;
}
.about-logo .veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,102,0,0.1);
  border: 1px solid rgba(255,102,0,0.25);
  border-radius: 100px;
  padding: 8px 20px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
}

/* ─── Contact ─── */
.contact-section { padding: 6rem 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.contact-info > p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}
.contact-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--black);
  font-weight: 500;
}
.contact-item svg { color: var(--blue); flex-shrink: 0; }
.contact-item a { color: var(--blue); font-weight: 600; }
.social-row { display: flex; gap: 1rem; margin-bottom: 2rem; }
.social-link {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.2s;
}
.social-link:hover { background: var(--blue-dark); }
.contact-cta {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-style: italic;
  margin-top: 1.5rem;
}

/* ─── Footer ─── */
.footer {
  background: var(--black);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,0.6);
}
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand img { height: 60px; width: auto; }
.footer-tagline {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-veteran {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: 0.5rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact a, .footer-contact span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
  .about-inner { gap: 3rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-headline { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .why-grid,
  .pricing-grid,
  .reviews-grid,
  .routes-grid { grid-template-columns: 1fr; }

  .req-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .about-inner { grid-template-columns: 1fr; }
  .about-logo { order: -1; }

  .contact-inner { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .section-headline { font-size: 1.8rem; }
}