/* =====================
   GLOBAL RESET & THEME
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --yellow: #f7b500;
  --black: #111;
  --gray: #666;
  --bg-light: #fafafa;
  --white: #ffffff;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

/* =====================
   LAYOUT HELPERS
===================== */
section {
  padding: 80px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* =====================
   HEADER
===================== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: var(--black);
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--yellow);
}

.logo span {
  color: var(--white);
}

nav a {
  margin-left: 22px;
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
}

nav a.btn {
  background: var(--yellow);
  color: var(--black);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
}

/* =====================
   HERO
===================== */
.hero {
  background: linear-gradient(135deg, #ffd400, #ffea80);
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  color: #333;
}

/* =====================
   BOOKING SECTION
===================== */
.booking-section {
  max-width: 420px;
  margin: 40px auto 0;

  background: var(--white);
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.booking-section h2 {
  text-align: center;
  margin-bottom: 15px;
}

.steps {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 15px;
}

.steps span {
  opacity: 0.4;
}

.steps .active {
  opacity: 1;
  color: var(--yellow);
  font-weight: 600;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

label {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
}

input,
select {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.radio-group {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

button {
  width: 100%;
  margin-top: 18px;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: var(--yellow);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
}

/* =====================
   CARDS / SERVICES
===================== */
.cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: var(--white);
  width: 220px;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.services {
  padding: 80px 20px;
  background: #000; /* or your image overlay */
  color: #fff;
}

.services h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
  color: #fff;
}

.services p.section-subtitle {
  text-align: center;
  color: #ccc;
  margin-bottom: 50px;
  font-size: 16px;
}
.btn,
.card button,
.service-card button {
  background: #f7b500;
  color: #000;
  padding: 12px 22px;
  border-radius: 30px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(247,181,0,0.25);
}

/* Hover animation */
.btn:hover,
.card button:hover,
.service-card button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(247,181,0,0.45);
}

/* =====================
   OUR STORY
===================== */
.our-story {
  background: var(--white);
  text-align: center;
}

.our-story h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.our-story p {
  max-width: 760px;
  margin: 0 auto 15px;
  font-size: 17px;
  color: var(--gray);
}

/* =====================
   FOUNDER PROFILE
===================== */
.founder-profile {
  background: #fffbe6;
}

.founder-flex {
  display: flex;
  gap: 50px;
  align-items: center;
}

.founder-img img {
  width: 280px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.founder-text h2 {
  font-size: 32px;
}

.founder-text h3 {
  margin: 8px 0 2px;
}

.founder-text span {
  color: var(--gray);
  font-size: 14px;
}

.quote {
  margin-top: 20px;
  font-style: italic;
  font-size: 18px;
}

/* =====================
   VISION / MISSION
===================== */
.vision-mission {
  background: var(--bg-light);
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.vm-card {
  background: var(--white);
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* =====================
   TESTIMONIALS
===================== */
.testimonials {
  background: var(--bg-light);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* =====================
   BRAND CLOSE
===================== */
.brand-close {
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.brand-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 36px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}

/* =====================
   FOOTER
===================== */
footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 20px;
}

/* =====================
   WHATSAPP FLOAT
===================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  font-size: 26px;
  padding: 14px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 999;
}

/* =====================
   MOBILE
===================== */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  nav a {
    margin: 6px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .founder-flex {
    flex-direction: column;
    text-align: center;
  }

  .vm-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .booking-section {
    margin-top: 20px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.3;
  }
}
/* WHY CHOOSE TAXIGO */
.why-taxigo {
  padding: 80px 20px;
  background: #f9f9f9;
}

.why-taxigo h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
  color: #111;
}

.why-taxigo h2 span {
  color: #f7b500;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-card {
  background: #fff;
  padding: 30px 22px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.why-card .icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #000;
}

.why-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-taxigo h2 {
    font-size: 26px;
  }
}
/* SERVICES SECTION */
.services {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.services h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #111;
}

.services h2 span {
  color: #f7b500;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* ICON */
.service-icon {
  font-size: 44px;
  margin-bottom: 18px;
}

/* TEXT */
.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #000;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* COMING SOON BADGE */
.coming-soon {
  opacity: 0.9;
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f7b500;
  color: #000;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 20px;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services h2 {
    font-size: 26px;
  }
}
/* SERVICES – PREMIUM */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  height: 360px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  color: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
}

.service-content {
  position: absolute;
  bottom: 0;
  padding: 25px;
}

.service-icon svg {
  width: 34px;
  fill: #f7b500;
  margin-bottom: 10px;
}

.price {
  font-weight: bold;
  color: #f7b500;
  margin: 10px 0;
}

.service-actions {
  display: flex;
  gap: 10px;
}

.btn.small {
  padding: 8px 16px;
  border-radius: 20px;
  background: #f7b500;
  color: #000;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

/* COMING SOON */
.coming-soon {
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}
/* SMART RENTALS – MODERN */
.smart-rentals {
  background: linear-gradient(135deg, #111, #222);
  color: #fff;
  position: relative;
}

.smart-rentals .overlay {
  display: none;
}

.smart-rentals .service-content.center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
}

.smart-rentals .service-icon.big {
  font-size: 48px;
  margin-bottom: 15px;
}

.smart-rentals p {
  color: #ccc;
  font-size: 15px;
  max-width: 220px;
}

.smart-rentals .badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f7b500;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 20px;
}
.service-card:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
}

.service-card {
  transition: 0.3s ease;
}
/* VEHICLE OPTIONS */
.vehicle-options {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 40px auto 0;
}

.vehicle-card {
  background: #fff;
  padding: 35px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.vehicle-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.vehicle-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.vehicle-card p {
  font-size: 15px;
  color: #666;
}

/* PREMIUM CARD */
.vehicle-card.premium {
  background: linear-gradient(135deg, #111, #000);
  color: #fff;
}

.vehicle-card.premium p {
  color: #ddd;
}

.vehicle-card .badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f7b500;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .vehicle-grid {
    grid-template-columns: 1fr;
  }
}
/* VEHICLE OPTIONS */
.vehicle-options {
  padding: 90px 20px;
  background: #fff;
  text-align: center;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 50px auto 0;
}

.vehicle-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
}

.vehicle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.vehicle-icon {
  font-size: 42px;
  margin-bottom: 12px;
}

.vehicle-card h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.models {
  color: #777;
  font-size: 14px;
}

.features {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 18px 0;
  font-size: 13px;
}

.features span {
  background: #f5f5f5;
  padding: 6px 12px;
  border-radius: 20px;
}

.features .ac {
  background: #e9f7ff;
}

.price {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0;
  color: #000;
}

/* BUTTON */
.vehicle-btn {
  display: inline-block;
  padding: 12px 26px;
  background: #f7b500;
  color: #000;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.vehicle-btn:hover {
  background: #000;
  color: #fff;
}

/* PREMIUM */
.vehicle-card.premium {
  background: linear-gradient(135deg, #111, #000);
  color: #fff;
}

.vehicle-card.premium .features span {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.vehicle-card.premium .price {
  color: #f7b500;
}

.vehicle-card .badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f7b500;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .vehicle-grid {
    grid-template-columns: 1fr;
  }
}
/* TRUST SECTION */
.trust-section {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}

.trust-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trust-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.trust-card img {
  width: 50px;
  margin-bottom: 15px;
}

.trust-card h3 {
  font-size: 22px;
  color: #000;
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 15px;
  color: #666;
}

/* MOBILE */
@media (max-width: 768px) {
  .trust-cards {
    grid-template-columns: 1fr;
  }

  .trust-title {
    font-size: 26px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .timeline::before {
    left: 14px;
  }

  .timeline-item {
    gap: 20px;
  }

  .year {
    min-width: 50px;
    height: 50px;
    font-size: 14px;
  }

  .section-title {
    font-size: 26px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .journey-step {
    padding: 20px;
  }
}

/* JOURNEY SECTION */
/* JOURNEY SECTION */
.journey {
  padding: 90px 20px;
  background: linear-gradient(180deg, #ffffff, #fffdf5);
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 60px;
  font-size: 16px;
}

/* TIMELINE */
.timeline {
  max-width: 850px;
  margin: auto;
  position: relative;
  padding-left: 40px;
  border-left: 3px solid #f7b500;
}

/* ITEM */
.timeline-item {
  position: relative;
  display: flex;
  gap: 20px;
  margin-bottom: 45px;
}

/* ICON */
.timeline-item .icon {
  width: 42px;
  height: 42px;
  background: #f7b500;
  color: #000;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -22px;
  top: 10px;
  box-shadow: 0 0 0 6px rgba(247,181,0,0.2);
}

/* CONTENT CARD */
.timeline-item .content {
  background: #fff;
  padding: 26px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item .content:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.timeline-item h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #111;
}

.timeline-item p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* SCROLL ANIMATION */
.fade-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .timeline {
    padding-left: 25px;
  }

  .timeline-item .icon {
    left: -18px;
  }
}
/* IMAGE OVERLAY */
.image-wrapper {
  position: relative;
  margin-bottom: 15px;
}

.image-wrapper img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 16px;
}

/* Overlay text */
.image-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  padding: 12px;
  border-radius: 12px;
}

.image-overlay h4 {
  margin: 0;
  font-size: 18px;
}

.image-overlay span {
  font-size: 13px;
  opacity: 0.9;
}
/* TEMPLE TOUR SPECIAL TILE */
.temple-tour-card {
  position: relative;
  height: 360px;                 /* Bigger than others */
  background-image: url("images/temple-tour-bg.jpg"); /* your AI image */
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  overflow: hidden;
}

/* Dark devotional overlay */
.temple-tour-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.35)
  );
}

/* Content layer */
.temple-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.temple-overlay h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.temple-overlay p {
  font-size: 15px;
  max-width: 320px;
  opacity: 0.95;
}

/* Gold CTA */
.btn-gold {
  margin-top: 16px;
  display: inline-block;
  padding: 12px 26px;
  background: #f7b500;
  color: #000;
  font-weight: 700;
  border-radius: 28px;
  text-decoration: none;
  width: fit-content;
}
/* Temple Tours special service tile */
.temple-tour-card {
  position: relative;
  height: 360px; /* bigger than other tiles */
  background-image: url("images/temple-tour-bg.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  overflow: hidden;
}
.temple-tour-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.35)
  );
}
.temple-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.temple-tour-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.temple-tour-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* BOOKING TABS */
.booking-tabs {
  display: flex;
  justify-content: space-between;
  background: #f5f5f5;
  border-radius: 30px;
  padding: 6px;
  margin-bottom: 20px;
}

.booking-tabs .tab {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  color: #555;
}

.booking-tabs .tab.active {
  background: #f7b500;
  color: #000;
}

/* TAB VISIBILITY */
.booking-tab {
  display: none;
}

.booking-tab.active {
  display: block;
}
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.booking-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.booking-tabs .tab {
  padding: 10px 18px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  background: #eee;
  font-weight: 600;
}

.booking-tabs .tab.active {
  background: #f7b500;
  color: #000;
}

.explore-btn {
  margin-top: 20px;
  padding: 14px 26px;
  border-radius: 30px;
  border: none;
  background: #f7b500;
  font-weight: bold;
  cursor: pointer;
}
.booking-container {
  display: none;
}

.booking-container.active {
  display: block;
}





/* .booking-hero {
  background: #f5b800;
  padding: 40px 20px;
  text-align: center;
} */

.subtitle {
  margin-bottom: 20px;
}

.booking-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.tab {
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  background: #eee;
  cursor: pointer;
  font-weight: 600;
}

.tab.active {
  background: #000;
  color: #fff;
}

.booking-card {
  background: #fff;
  max-width: 420px;
  margin: auto;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.booking-form {
  display: none;
  text-align: left;
}

.booking-form.active {
  display: block;
}

.booking-form label {
  display: block;
  margin-top: 12px;
  font-weight: 600;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.radio-group {
  display: flex;
  gap: 15px;
  margin-top: 8px;
}

.primary-btn {
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
}
.booking-form {
  display: none;
  animation: fadeSlide 0.35s ease;
}

.booking-form.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ======================================================
   SKELETON LOADER – UBER STYLE
====================================================== */
.skeleton-grid {
  display: grid;
  gap: 20px;
}

.skeleton-card {
  height: 260px;
  border-radius: 22px;
  background: #eee;
  position: relative;
  overflow: hidden;
}

/* shimmer animation */
.skeleton-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(255,255,255,0) 25%,
    rgba(255,255,255,0.6) 37%,
    rgba(255,255,255,0) 63%
  );
  animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

/* ======================================================
   BUTTON LOADING STATE
====================================================== */
button.loading {
  pointer-events: none;
  opacity: 0.75;
  position: relative;
}

button.loading::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}
/* =========================
   AIRPORT RESULTS ANIMATION
========================= */

#airportResults {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.vehicle-card {
  background: #111;
  color: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;

  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   SKELETON LOADER
========================= */

.skeleton {
  height: 160px;
  border-radius: 16px;
  background: linear-gradient(
    90deg,
    #2a2a2a 25%,
    #3a3a3a 37%,
    #2a2a2a 63%
  );
  background-size: 400% 100%;
  animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
/* ✅ Partner button style */
.btn.ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
}
.btn.ghost:hover{
  background: rgba(255,255,255,0.12);
}

/* ✅ Mobile header fix */
@media (max-width: 768px){
  .header nav{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .header nav a{
    font-size: 14px;
  }

  /* ✅ Make both buttons full width on small screens */
  .header nav a.btn{
    flex: 1;
    min-width: 140px;
    text-align: center;
  }
}

/* ===== Airport Trip Toggle Premium Layout ===== */

#airportBooking .trip-toggle {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  margin-bottom: 16px;
  flex-wrap: nowrap;
}

#airportBooking .trip-toggle label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap; /* prevents line break */
}

/* Custom premium radio look */
#airportBooking .trip-toggle input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;

  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid #f7b500;
  position: relative;
  cursor: pointer;
}

/* selected state */
#airportBooking .trip-toggle input[type="radio"]:checked {
  background: radial-gradient(circle, #f7b500 45%, transparent 46%);
}

/* =====================================================
   TAXIGO SAFARI FIX – RADIO TOGGLE
===================================================== */

.trip-toggle{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  margin-bottom: 16px;
  flex-wrap: nowrap;
}

/* Safari needs label as flex container */
.trip-toggle label{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

/* Force Safari radio styling */
.trip-toggle input[type="radio"]{
  width: 18px;
  height: 18px;
  cursor: pointer;

  -webkit-appearance: radio;
  appearance: radio;

  margin: 0;
}

/* =====================================================
   SAFARI INPUT GLASS FIX
===================================================== */

.booking-card input,
.booking-card select{

  background: rgba(255,255,255,0.92) !important;
  color: #111 !important;

  -webkit-appearance: none;
  appearance: none;
}

/* Fix Date & Time Safari disabled grey look */
.booking-card input[type="date"],
.booking-card input[type="time"]{

  min-height: 42px;

  -webkit-appearance: none;
  appearance: none;

  background: rgba(255,255,255,0.95) !important;
}

/* iOS tap highlight remove */
.trip-toggle label{
  -webkit-tap-highlight-color: transparent;
}

/* ===========================================
   SAFARI SELECT DROPDOWN FIX
=========================================== */

.booking-card select{

  -webkit-appearance: none;
  appearance: none;

  background: rgba(255,255,255,0.95) !important;
  color: #111 !important;

  border-radius: 14px;
  padding: 14px 40px 14px 14px;
  border: 1px solid rgba(0,0,0,0.12);

  cursor: pointer;
}

/* Custom dropdown arrow */
.booking-card select{
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23666'%3E%3Cpath d='M5.5 7l4.5 5 4.5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

/* Safari focus fix */
.booking-card select:focus{
  outline: none;
  border-color: rgba(247,181,0,0.6);
  box-shadow: 0 0 0 4px rgba(247,181,0,0.18);
}
