/* ---------- Variables ---------- */
:root {
  --yellow: #ffd400;
  --black: #0b0b0b;
  --glass-bg: rgba(255,255,255,0.12);
  --glass-border: rgba(255,255,255,0.22);
  --container: 1300px;
  --card-radius: 16px;
  --shadow: 0 10px 30px rgba(2,6,23,0.08);
  --primary: #ffd400; /* Chariot blue */
  --accent: #222; /* Warm accent */
  --text-dark: #222;
  --text-light: #666;
  --bg-light: #f9fafb;
  --white: #fff;
}


.drive-header {
  background: var(--text-dark);
  color: var(--primary);
  padding: 4rem 2rem 5rem;
  text-align: center;
}

.drive-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.drive-header p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
}

.drive-header button {
  background: var(--accent);
  border: 2px solid var(--primary);
  color: var(--white);
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.drive-header button:hover {
  background: var(--primary);
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.section-container {
  max-width: 1200px;
  margin: -3rem auto 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  overflow: hidden;
}

.requirements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.requirement {
  background: var(--bg-light);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.requirement:hover {
  background: var(--primary);
  color: var(--text-dark);
  transform: translateY(-5px);
}

.requirement h3 {
  margin-bottom: 1rem;
  color: inherit;
}

ul {
  list-style-type: none;
  padding: 0;
}

ul li::before {
  content: "✔";
  color: var(--accent);
  margin-right: 8px;
  line-height: 2
}


@media (max-width: 600px) {
  .drive-header h1 {
    font-size: 2rem;
  }
  .drive-header button {
    width: 100%;
  }
}



.ride-header {
  background: var(--text-dark);
  color: var(--primary);
  text-align: center;
  padding: 5rem 2rem 6rem;
}

.ride-header h1 {
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
}

.ride-header p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-buttons img {
  height: 55px;
  transition: transform 0.3s ease;
}

.store-buttons img:hover {
  transform: scale(1.05);
}

.section-container {
  max-width: 1000px;
  margin: -3rem auto 4rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 3rem;
}

.info {
  text-align: center;
  margin-bottom: 3rem;
}

.info h2 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.info p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.ride-ride-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  text-align: center;
}

.ride-feature {
  background: var(--bg-light);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
}

.ride-feature:hover {
  background: var(--text-dark);
  color: var(--primary);
  transform: translateY(-5px);
}

.ride-feature h3 {
  margin-bottom: 0.8rem;
}


@media (max-width: 600px) {
  .ride-header h1 {
    font-size: 2rem;
  }
  .section-container {
    padding: 2rem;
  }
}

@font-face {
  font-family: 'Prometo';
  src: url('./fonts/Prometo.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Prometo';
  src: url('./fonts/Prometo-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Prometo';
  src: url('./fonts/Prometo-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Prometo';
  src: url('./fonts/Prometo-MediumItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}


@font-face {
  font-family: 'Prometo';
  src: url('./fonts/Prometo-BoldItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}

/* ---------- Base ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Prometo", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: var(--black);
  background: linear-gradient(180deg,#f7f8fb 0%, #eef2f7 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

a {
  color: inherit;
}

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

/* ---------- Container & Utilities ---------- */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.row {
  display: flex;
  gap: 20px;
  align-items: center;
}

.muted-faq {
  color: rgba(0,0,0,0.6);
  font-size: 28px
}

h1,
h2,
h3 {
  margin: 0 10px;
  font-weight: normal;
}

p {
  margin: 0 0 12px 0;
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 1200;
  backdrop-filter: blur(6px);
  background: linear-gradient(90deg,var(--yellow), #ffe066);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  margin-top: 5px;
  font-weight: 700;
  font-size: 20px;
}

.brand img {
  width: 200px;
  margin-top: 0px;
}

nav.desktop {
  display: flex;
  align-items: center;
}
nav{
  margin-top: 20px
}
 .desktop a {
  padding: 5px 8px;
  margin-right: 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  color: var(--black);
  transition: all .18s ease;
}

nav.desktop a.active,
nav.desktop a:hover {
  background: var(--black);
  color: #fff;
}

.cta {
  background: #fff;
  padding: 3px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}

.mobile-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  background: transparent;
  border: 0;
}

/* ---------- Mobile nav overlay ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 64px 18px auto 18px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.mobile-nav a {
  display: block;
  padding: 10px;
  border-radius: 8px;
  color: var(--black);
  text-decoration: none;
}

/* ---------- Hero ---------- */
main {
  padding: 28px 0 60px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 36px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 150px;
}

.headline {
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.2;
  font-weight: 400;
  font-style: italic;
  text-align: center;
}


/* Step 2: Use it wherever you want */
.accent {
  color: var(--yellow);
  font-family: 'Prometo', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
}


.hero-sub {
  margin-top: 14px;
  color: rgba(0,0,0,0.65);
}

.badges {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
  margin-left: 150px
}

.btn-primary {
  background: var(--black);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 5px 14px;
  border-radius: 12px;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--black);
  color: white;
}

.mt-12,
.mt-16{
  font-weight: lighter;
  margin-bottom: 20px
}

.cta,
.mt-8 .chip{
  font-weight: lighter;
  text-decoration: none;
}

/* ---------- Hero Right Circles ---------- */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}

.circle {
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid #fff;
  box-shadow: 0 18px 40px rgba(2,6,23,0.12);
  transition: transform .45s;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 30px
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle.big {
  width: 350px;
  height: 350px;
  margin-left: -150px
}

.circle.big img {
  object-position: 35% 30%;
}

.circle.small {
  width: 200px;
  height: 200px;
  position: absolute;
  right: 15%;
  bottom: -5%;
  border-width: 8px;
}

.circle.small img {
  object-position: 40% 20%;
}

.circle:hover {
  transform: scale(1.03);
}


/* ---------- Sections Base ---------- */
/*section {
  padding: 40px 0;
}*/

section .section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.visible {
  opacity: 1 !important;
  transform: none !important;
}

.reveal {
  /*opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;*/
  padding: 20px 0;
}

/* ---------- About / Features ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.about-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-radius: var(--card-radius);
  padding: 22px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.feature {
  padding: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  text-align: center;
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  margin-top: 18px;
}

.review-card {
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

.stars {
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 8px;
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.03);
}

.faq-btn {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}

.faq-open .faq-panel {
  padding-bottom: 16px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 550px;
  gap: 28px;
  align-items: start;
}

.form-row {
  display: flex;
  gap: 10px;
}

.input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.info-card {
  margin-top: -25px;
  padding: 15px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
  border: 1px solid var(--glass-border);
}

.info-card a{
  text-decoration: none
}

.info-card h3{
  margin-left: 0px;
  margin-bottom: 10px
}
/* ---------- Footer ---------- */
footer {
  background: #0b0b0b;
  color: #e9e9e9;
  padding: 28px 0;
  margin-top: 36px;
}

footer .foot-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  /* Reverse the order of items */
 .contact-grid > *:first-child {
   order: 2;
 }

 .contact-grid > *:last-child {
   order: 1;
 }

  .btn-outline,
  .cta {
    display: none;
  }
}

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

  .mobile-toggle {
    display: block;
    margin-top: -30px;
    font-size: 30px;
  }

  .mobile-nav {
    display: block;
    margin-top: 15px;
  }

  .accent {
    line-height: 2;
  }

  .brand {
    margin-top: 5px;
  }

  .btn-outline,
  .cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    margin-top: -10px;
  }

  .circle.big {
    width: 320px;
    height: 320px;
    margin-left: 10px
  }

  .hero-decor{
    display: none;
  }

  .headline {
    font-size: clamp(28px, 4.2vw, 48px);
    line-height: 1.2;
    font-weight: 400;
    font-style: italic;
    text-align: center;
    margin-top: -50px;
    margin-bottom: 20px
  }

  .hero {
    margin-bottom: -120px
  }

  .badges {
    display: flex;
    gap: 14px;
    margin-top: 20px;
    flex-wrap: wrap;
    margin: auto;
  }

  .circle.small {
    width: 160px;
    height: 160px;
    right: 6%;
    bottom: -28px;
  }

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

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

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

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .route {
    animation: none;
  }

  .btn-outline,
  .cta {
    display: none;
  }
}

/* ---------- Helpers ---------- */
.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.txt-center {
  text-align: center;
}

.chip {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  font-weight: 600;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--black);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}








/* ---------- Hero Decorative Background ---------- */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Red map pins */
.pin {
  position: absolute;
}

.pin::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* Position the pins similar to your image */
.pin1 { top: 5%; left: 15%; width: 5% }
.pin2 { top: 60%; left: 55%; width: 5% }
.pin4 { top: 2%; right: 13%; width: 5% }

/* Yellow dashed routes */
.path {
  position: absolute;
  stroke: #ffd400;
  stroke-width: 2;
  stroke-dasharray: 8;
  fill: none;
  opacity: 0.8;
}

/* Path positions */
.path1 { top: 50%; width: 40%; }
.path2 { top: -35%; right: -5%; width: 40%; }

/* Yellow outline circles */
.circle-decor {
  position: absolute;
  border: 2px solid #ffd400;
  border-radius: 50%;
}

.circle1 { width: 150px; height: 150px; bottom: -10%; right: 25%; }
.circle2 { width: 100px; height: 100px; top: 8%; left: -4%; }

/* Gray X marks */
.x-mark {
  position: absolute;
  color: #aaa;
  font-size: 24px;
  font-weight: bold;
  opacity: 0.8;
}

.x1 { top: 2%; left: 40%; width: 3%}
.x2 { top: 50%; left: 45%; width: 3%}
.x4 { bottom: 15%; right: 20%; width: 3%}







  .other-pages-header {
    background: #000;
    padding: 3rem 2rem;
    color: #fff;
    text-align: center;
  }
  .other-pages-header header h1 {
    margin: 0;
    font-size: 2.4rem;
    font-weight: 600;
  }
  .updated {
    margin-top: .8rem;
    font-size: 0.95rem;
    opacity: 0.9;
  }
  .other-pages-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 5px 22px rgba(0,0,0,0.08);
  }
  h2 {
    margin-top: 2rem;
    color: #000;
    font-size: 1.4rem;
    font-weight: 600;
  }
  ul {
    padding-left: 1.2rem;
  }
  li {
    margin-bottom: 0.4rem;
  }
