
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
}

body {
  background: radial-gradient(circle at top, #0f141c, #05070b);
  color: #fff;
}

/* NAVBAR */

/* Reset */
* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
}

.navbar {
  position: sticky;
  top: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 1000;
}

.navbar-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;      
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

/* Logo */
.logo {
  color: #ffc107;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.logo span {
  color: #fff;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 95px;                 /* bigger than navbar height */
  width: auto;
  object-fit: contain;
  transform: translateY(4px);   /* fine-tune vertical centering */
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a,
.dropdown-btn {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav a:hover,
.dropdown-btn:hover {
  color: #ffc107;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: 130%;
  left: 0;
  background: #111;
  min-width: 200px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
  z-index: 9999;
}

.dropdown-panel a {
  display: block;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
}

.dropdown-panel a:hover {
  background: rgba(255,193,7,0.15);
  color: #ffc107;
}

.dropdown-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* ===========================
   BOOK NOW CTA AFTER VEHICLES
   =========================== */
.book-now-cta {
  background: radial-gradient(circle at top, #0f141c, #05070b);
  padding: 80px 20px;
  text-align: center;
  margin-top: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(255,193,7,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-now-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(255,193,7,0.35);
}

.book-now-cta h2 {
  font-size: 36px;
  color: #ffc107;
  margin-bottom: 20px;
}

.book-now-cta p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 30px;
}

.book-now-cta .btn-book-now {
  display: inline-block;
  background-color: #ffc107;
  color: #000;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 999px;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 28px rgba(255,193,7,0.45);
}

.book-now-cta .btn-book-now:hover {
  background-color: #ffcd38;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255,193,7,0.65);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .book-now-cta h2 {
    font-size: 28px;
  }

  .book-now-cta p {
    font-size: 14px;
  }

  .book-now-cta .btn-book-now {
    font-size: 16px;
    padding: 14px 32px;
  }
}

/* HERO */

.card svg {
  color: rgba(255,255,255,0.65);
}

.card.active svg {
  color: #00ffb3;
}

.card.active {
  box-shadow: 0 0 25px rgba(255,255,0,0.4);
}




/* Video */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Gradient overlay (replacement for your linear-gradient) */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.3)
  );
  z-index: -1;
}

/* Content above video */
.content {
  position: relative;
  z-index: 1;
  color: white;
}



.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
  background-size: cover;
  background-position: center;
  filter: blur(1px);
}

.hero-content {
  max-width: 550px;
  z-index: 2;
  animation: fadeUp 1s ease forwards;
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  background: transparent;
  border-radius: 30px;
  margin-bottom: 20px;
  font-size: 14px;
  
}

.hero h1 {
  font-size: 64px;
  line-height: 1.1;
}

.hero h1 span {
  color: #ffc107;
}

.hero p {
  margin: 20px 0;
  color: #ccc;
}

.stats {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.stats strong {
  font-size: 22px;
}

.stats span {
  display: block;
  font-size: 14px;
  color: #aaa;
}

.hero-cta {
  margin-top: 26px;
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Primary CTA */
.cta-primary {
  background: #ffc107;
  color: #000;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 30px rgba(255,193,7,0.35);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255,193,7,0.5);
}

/* Secondary CTA */
.cta-secondary {
  border: 2px solid #ffc107;
  color: #ffc107;
  padding: 13px 26px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
}

.cta-secondary:hover {
  background: #000;
  color: #ffc107;
}

.cta-Tertiary {
  border: 2px solid #ffc107;
  color: #ffc107;
  padding: 13px 26px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
}

.cta-Tertiary:hover {
  background: #ffc107;
  color: #000;
}

/* BOOKING CARD */
.booking-card {
  margin-left: auto;
  width: 380px;
  padding: 30px;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  z-index: 2;
  animation: slideIn 1s ease forwards;
}

.booking-card h3 {
  margin-bottom: 20px;
}

.booking-card {
  position: relative;
  width: 380px;
  padding: 32px;
  border-radius: 26px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.12),
      rgba(255,255,255,0.04)
    );
  backdrop-filter: blur(25px);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    inset 0 1px 1px rgba(255,255,255,0.15);
  z-index: 1;
}


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

.full {
  width: 100%;
  margin-top: 10px;
}

.booking-card small {
  display: block;
  margin-top: 10px;
  text-align: center;
  color: #aaa;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

.booking-glow {
  position: relative;
}

.booking-glow::before {
  content: "";
  position: absolute;
  inset: -25px;
  background: linear-gradient(
    45deg,
    #ff0080,
    #00ffff,
    #7fff00,
    #ff8c00,
    #ff0080
  );
  filter: blur(40px);
  opacity: 0.45;
  z-index: 0;
  animation: rgbFlow 6s linear infinite;
}

@keyframes rgbFlow {
  0% { filter: blur(40px) hue-rotate(0deg); }
  100% { filter: blur(40px) hue-rotate(360deg); }
}

.booking-card input {
  width: 100%;
  padding: 15px 16px;
  margin-bottom: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.45);
  color: white;
  font-size: 14px;
  transition: border 0.2s, box-shadow 0.2s;
}

.booking-card input:focus {
  outline: none;
  border-color: #ffc107;
  box-shadow: 0 0 0 2px rgba(255,193,7,0.2);
}

.booking-card .btn-primary {
  border-radius: 16px;
  font-size: 16px;
  letter-spacing: 0.3px;
  color:black;
  background-color: #ffc107;
}

/*2nd section*/

.vehicle-section {
  padding: 70px 60px;
  background: radial-gradient(circle at top, #0f141c, #05070b);
  color: #fff;
  animation: fadeUp 1s ease forwards;
}

.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 6px;
}

.section-subtitle {
  text-align: center;
  opacity: 0.65;
  margin-bottom: 50px;
}

/* FORCE 4 IN ONE LINE */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.vehicle-card {
  position: relative;
  background: linear-gradient(180deg, #141821, #0b0f15);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid rgba(255,255,255,0.06);
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 22px rgba(255, 193, 7, 1);
}

/* IMAGE HOLDER */
.vehicle-visual {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.vehicle-visual img {
  max-width: 130px;
  opacity: 0.95;
}

/* TEXT */
.vehicle-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.vehicle-card p {
  font-size: 14px;
  opacity: 0.65;
}

.meta {
  display: block;
  margin-top: 14px;
  font-weight: 600;
  color: #00ffae;
}

/* ACTIVE / MOST POPULAR CARD */
.vehicle-card.active {
  border: 1px solid #ffc107;
  box-shadow: 0 0 35px rgba(255, 193, 7, 1);
  background: linear-gradient(180deg, #13241e, #0a1512);
}

/* MOST POPULAR TAG */
.vehicle-card.active::before {
  content: "MOST POPULAR";
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(90deg, #00ffae, #00d4ff);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}
@media (max-width: 1200px) {
  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .vehicle-grid {
    grid-template-columns: 1fr;
  }
}

/*3rd section*/
.about-dark {
  padding: 120px 6%;
  background: #0b0b0b;
}

.about-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

/* IMAGE */
.about-image {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.8);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.about-content {
  color: #fff;
}

.about-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 193, 7, 0.12);
  color: #ffc107;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 16px;
}

.about-content h2 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 22px;
}

.about-content h2 span {
  color: #ffc107;
}

.about-content p {
  color: #bdbdbd;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* STATS */
.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.about-stats div {
  background: rgba(255, 255, 255, 0.04);
  padding: 18px 22px;
  border-radius: 16px;
  text-align: center;
  min-width: 110px;
}

.about-stats strong {
  display: block;
  font-size: 22px;
  color: #ffc107;
}

.about-stats span {
  font-size: 13px;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }
}


/*4th section*/

/* Section Base */
    .choose-us {
      position: relative;
      overflow: hidden;
      padding: 120px 20px;
      animation: fadeUp 1s ease forwards;
    }

    /* Overlay for subtle effect */
    .choose-us::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: black;
      pointer-events: none;
      animation: fadeUp 1s ease forwards;
    }

    /* Container */
    .container {
      max-width: 1200px;
      margin: auto;
      position: relative;
      z-index: 1;
      animation: fadeUp 1s ease forwards;
    }

    /* Title */
    .section-titlechoose {
      font-size: 2rem;
      color: #ffc107;
      text-align: center;
      margin-bottom: 70px;
      
    }

    /* Floating Taxi Icons */
    .floating-icons .taxi {
      position: absolute;
      font-size: 2rem;
      animation: floatTaxi 6s ease-in-out infinite alternate;
      opacity: 0.6;
    }
    .floating-icons .taxi:nth-child(2) { animation-delay: 1s; }
    .floating-icons .taxi:nth-child(3) { animation-delay: 2s; }
    .floating-icons .taxi:nth-child(4) { animation-delay: 3s; }

    @keyframes floatTaxi {
      0% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-15px) rotate(5deg); }
      100% { transform: translateY(0) rotate(0deg); }
    }

    /* Features Grid */
    .features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    /* Feature Cards */
    .feature-card {
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(10px);
      padding: 30px 20px;
      width: 250px;
      border-radius: 20px;
      box-shadow: 0 15px 35px rgba(0,0,0,0.1);
      text-align: center;
      color: #fff;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .feature-card:hover {
      transform: translateY(-12px) scale(1.05);
      box-shadow: 0 25px 45px rgba(0,0,0,0.2);
    }

    .feature-card .icon {
      font-size: 3rem;
      margin-bottom: 20px;
      color: #fff;
    }

    @keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

    /* Responsive */
    @media(max-width: 768px) {
      .features {
        flex-direction: column;
        align-items: center;
      }
    }


/*5th Section*/

.service-highlight {
  background: #000;
  padding: 56px 20px;
}

.service-card {
  max-width: 980px;
  margin: auto;
  padding: 40px 36px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.01)
  );
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

/* Accent line */
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  width: 4px;
  height: 60px;
  background: #ffc107;
  border-radius: 4px;
}

/* Title */
.service-title {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.service-icon {
  margin-right: 8px;
}

/* Text */
.service-text {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 760px;
}

/* Actions */
.service-actions {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.service-call {
  background: #ffc107;
  color: #000;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(255,193,7,0.45);
}

.service-call:hover {
  box-shadow: 0 16px 40px rgba(255,193,7,0.65);
}

.service-badge {
  font-size: 13px;
  color: #ffc107;
  border: 1px solid rgba(255,193,7,0.4);
  padding: 6px 12px;
  border-radius: 999px;
}



 /*5th section*/

 /* Section base */
.steps-section {
  background: #000;
  padding: 100px 0;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Headings */
.section-title {
  color: #ffc107;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.main-title {
  font-size: 46px;
  font-weight: 700;
}

.highlight {
  color: #ffc107;
}

/* Cards wrapper */
.steps-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  margin-top: 70px;
  flex-wrap: wrap;
}

/* STEP BOXES */
.step-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 40px 35px;
  width: 320px;
  min-height: 220px;

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card h3 {
  font-size: 24px;
  margin-bottom: 18px;
}

.step-card p {
  color: #bdbdbd;
  font-size: 16px;
  line-height: 1.6;
}

/* Hover effect (optional but recommended) */
.step-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.8),
    inset 0 0 0 1px rgba(255, 193, 7, 0.25);
}

/* ARROWS */
.arrow {
  color: #ffc107;
  font-size: 34px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 900px) {
  .steps-cards {
    flex-direction: column;
  }

  .arrow {
    transform: rotate(90deg);
  }
}

/*6th section*/

.cta-section {
  background: #000;
  padding: 120px 5%;
}

.cta-box {
  max-width: 1200px;
  margin: auto;
  padding: 70px;
  border-radius: 40px;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;

  background: linear-gradient(
    135deg,
    #ffc107 0%,
    #b38b14 40%,
    #2a2206 70%,
    #000 100%
  );

  box-shadow:
    0 0 80px rgba(255, 193, 7, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);

  overflow: hidden; /* CRITICAL */
}

/* TEXT AREA */
.cta-content {
  max-width: 520px;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

.cta-content h2 span {
  color: #000;
}

.cta-content p {
  margin-top: 18px;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.btn {
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
}

.btn.primary {
  background: #000;
  color: #ffc107;
}

.btn.outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
}

/* IMAGE */
.cta-image {
  display: flex;
  justify-content: center;
}

.cta-image img {
  max-width: 100%;
  height: auto;
  transform: translateY(10px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cta-box {
    grid-template-columns: 1fr;
    padding: 50px 35px;
    text-align: center;
  }

  .cta-content {
    max-width: 100%;
  }

  .cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}


/*7th section*/

.reviews-section {
  background: radial-gradient(circle at top, #121212, #000);
  padding: 120px 0;
  color: #fff;
}

.container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.reviews-tag {
  color: #ffc107;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.reviews-title {
  font-size: 52px;
  font-weight: 700;
}

.reviews-title span {
  color: #ffc107;
}

.reviews-subtitle {
  color: #9aa0a6;
  margin-top: 15px;
  font-size: 18px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 35px;
  margin-top: 80px;
}

/* Card */
.review-card {
  background: rgba(255,255,255,0.04);
  border-radius: 26px;
  padding: 35px;
  text-align: left;
  backdrop-filter: blur(14px);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}

.review-header {
  display: flex;
  gap: 15px;
  align-items: center;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,193,7,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffc107;
}

.review-header h4 {
  font-size: 18px;
  margin: 0;
}

.review-header span {
  color: #9aa0a6;
  font-size: 14px;
}

.stars {
  color: #ffc107;
  margin: 18px 0;
  font-size: 18px;
}

.review-text {
  color: #bdbdbd;
  font-size: 16px;
  line-height: 1.7;
}

/* Footer */
.reviews-footer {
  margin-top: 80px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 15px 30px;
  background: rgba(255,255,255,0.04);
  border-radius: 50px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,193,7,0.25);
  color: #ffc107;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-right: -10px;
}

.reviews-footer p {
  margin: 0;
  color: #9aa0a6;
}

.reviews-footer strong {
  color: #fff;
}

/*FOOTER*/

.footer-advanced {
  position: relative;
  background: radial-gradient(circle at top, #111 0%, #080808 60%);
  padding: 100px 6% 40px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: rgba(255, 193, 7, 0.15);
  filter: blur(120px);
  z-index: 0;
}

.footer-wrapper {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 70px;
  position: relative;
  z-index: 1;
}

/* BRAND */

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 95px;          /* adjust if needed */
  width: auto;
  object-fit: contain;
}

.footer-logo-adv {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon-adv {
  background: #ffc107;
  color: #000;
  padding: 10px;
  border-radius: 14px;
  font-size: 18px;
}

.logo-text-adv {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}

.footer-desc {
  margin-top: 18px;
  color: #bdbdbd;
  font-size: 15px;
  line-height: 1.7;
  max-width: 420px;
}

.footer-stats {
  margin-top: 30px;
  display: flex;
  gap: 30px;
}

.footer-stats h3 {
  color: #ffc107;
  font-size: 22px;
}

.footer-stats span {
  font-size: 13px;
  color: #aaa;
}

/* RIGHT CONTENT */
.footer-content-adv {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 26px;
}

.footer-card h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 15px;
}

.footer-card a {
  display: block;
  color: #bdbdbd;
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-card a:hover {
  color: #ffc107;
}

.download-card p {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 16px;
}

.store-btns {
  display: flex;
  gap: 10px;
}

.store-btn {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}

.store-btn.primary {
  background: #ffc107;
  color: #000;
  border: none;
  font-weight: 600;
}

/* BOTTOM */
.footer-bottom-adv {
  max-width: 1300px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #999;
}

.trust-pill {
  background: rgba(255,193,7,0.15);
  color: #ffc107;
  padding: 6px 16px;
  border-radius: 999px;
}

/* Contact card */
.contact-card .footer-contact-item {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card .footer-contact-item:hover {
  color: #ffc107;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 15px; /* space between icons */
  align-items: center;
}

.social-icons a img {
  width: 35px;  /* icon size */
  height: 35px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.1); /* slight zoom on hover */
  opacity: 0.8;
}



/* RESPONSIVE */
@media (max-width: 1000px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
  }

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

/*WHERE WE SERVE*/

.where-we-serve {
  background: #000;
  padding: 80px 20px;
  color: #fff;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title span {
  color: #ffc107;
}

.section-subtitle {
  color: #bbb;
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 16px;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Cards */
.serve-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 193, 7, 0.15);
  padding: 30px 20px;
  border-radius: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.serve-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(255, 193, 7, 0.3);
  border-color: #ffc107;
}

.serve-card h3 {
  font-size: 20px;
  color: #ffc107;
  margin-bottom: 10px;
}

.serve-card p {
  color: #ddd;
  font-size: 14px;
  line-height: 1.6;
}

/* Slide-up animation */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


.vehicle-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.vehicle-card {
  cursor: pointer;
}

/* ===========================
   MOBILE RESPONSIVE FIX
   =========================== */

@media (max-width: 768px) {

  /* HERO FIX */
  .hero {
    flex-direction: column;
    justify-content: center;
    padding: 120px 20px 60px 20px;
    text-align: center;
    height: auto;
    min-height: 100vh;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 15px;
  }

  .stats {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-cta {
    justify-content: center;
  }

  /* CTA SECTION FIX */
  .cta-box {
    grid-template-columns: 1fr;
    text-align: right;
    padding: 40px 20px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 15px;
  }

  .cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }


  /* STEPS SECTION FIX */
  .main-title {
    font-size: 30px;
  }

  .step-card {
    width: 100%;
    max-width: 320px;
  }

  /* REVIEWS FIX */
  .reviews-title {
    font-size: 32px;
  }

  .reviews-subtitle {
    font-size: 15px;
  }

  /* ABOUT SECTION FIX */
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* FOOTER FIX */
  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content-adv {
    grid-template-columns: 1fr;
  }

  .footer-bottom-adv {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

}

@media (max-width: 768px) {
  .navbar-inner {
    justify-content: space-between;
  }
}

/* =========================
   FORCE MOBILE NAVBAR SIMPLIFY
   ========================= */

@media (max-width: 768px) {

  /* Hide navigation links */
  .navbar .nav {
    display: none !important;
  }

  /* Hide dropdowns completely */
  .navbar .dropdown,
  .navbar .dropdown-panel {
    display: none !important;
  }

  /* Keep logo and CTA only */
  .navbar-inner {
    justify-content: space-between !important;
  }

  /* Optional: reduce navbar height for mobile */
  .navbar-inner {
    height: 70px !important;
  }

  .logo img {
    height: 60px !important;
  }

}







/* Hide mobile button on desktop */
.mobile-only {
  display: none;
}

/* Hide desktop number on mobile */
.desktop-only {
  display: inline-block;
}

@media (max-width: 768px) {
  .mobile-only {
    display: inline-block;
    background: #ffc107;
    color: #000;
    padding: 5px 16px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-only:hover {
    background: #e0a800;
  }

  .desktop-only {
    display: none;
  }

  .cta-Tertiary-mobile {
  border: 2px solid #ffc107;
  color: #ffc107;
  padding: 13px 26px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
}

.cta-Tertiary-mobile:hover {
  background: #ffc107;
  color: #000;
}

}

/* Hide these links on screens wider than 768px (desktop) */
@media (min-width: 768px) {
  .cta-Tertiary-mobile {
    display: none;
  }
}




/* Hamburger button - mobile only */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #ffc107;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 70px; /* below navbar */
  right: 20px;
  width: 220px;
  background: rgba(0,0,0,0.95);
  border-radius: 12px;
  padding: 15px;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.mobile-menu a,
.mobile-menu summary {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  padding: 8px 10px;
  border-radius: 8px;
}

.mobile-menu a:hover,
.mobile-menu summary:hover {
  background: #ffc107;
  color: #000;
}

.mobile-menu details {
  display: block;
}

.mobile-menu details summary {
  cursor: pointer;
  list-style: none;
}

/*Show hamburger and hide desktop nav on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: inline-block;
  }

  .nav,
  .cta {
    display: none !important;
  }
}
