/* ============================================================
   style_six.css – Full white theme for index_six.html
   Taxi booking platform
   ============================================================ */

   :root{
    --primary:#0d1b2a;
    --yellow:#f5c518;
    --yellow_dark:#d4ad38;
    --gray: #6b6b6b;
    --gray_two:#888;
    --border_color:#e8e8e8;
    --white:#ffffff;
    --bg_light:#f5f5f7;
    --section-py: clamp(40px, 4vw, 90px);
   }

   h2 {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 600;
    line-height: 120%;
    color:var(--primary);
}
p{
  font-size:16px;
}

/* ================================================================
   NAVBAR – bb-nav (white theme)
   ================================================================ */

.bb-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  /* background: #ffffff;
  box-shadow: 0 1px 0 #ebebeb; */
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.bb-nav.sticky {
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.bb-nav__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 70px;
  gap: 24px;
}

.bb-nav__logo img { height: 76px;filter: brightness(0) saturate(100%) invert(9%) sepia(9%) saturate(3343%) hue-rotate(172deg) brightness(94%) contrast(98%); }

.bb-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}

.bb-nav__links a {
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 7px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.bb-nav__links a:hover,
.bb-nav__links li.active a {
  color: var(--primary);
  background: #f5f5f5;
}

.bb-nav__cta { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.bb-nav__phone {
  border: 1px solid var(--primary);
  font-size: 15px;
  line-height: 28px;
  font-weight: 600;
  border-radius: 100px;
  padding: 6px 33px;
  position: relative;
  color: var(--primary);
  overflow: hidden;
  display: block;
  z-index: 2;
  background: transparent;
  transition: all 0.3s ease-in-out;
}
.bb-nav__phone:after {
  background: rgba(13, 27, 42, 0.18);
  content: "";
  width: 15px;
  height: 60px;
  transform: rotate(-30deg);
  position: absolute;
  top: -11px;
  left: -23px;
  animation: 1.5s ease-in-out infinite alternate scrollbutton;
  z-index: -1;
}
@keyframes scrollbutton {
  0%   { left: -23px; }
  100% { left: 160px; }
}
.bb-nav__phone:hover {
  border: 1px solid transparent;
  color: #fff;
  background: var(--primary);
}
.bb-nav__phone:hover::after { height: 0; }
.bb-nav__phone svg { margin-right: 6px; }

.bb-nav__wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25d366;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
}

.bb-nav__wa:hover { opacity: 0.88; color: #fff; transform: translateY(-1px); }

.app-cta .bb-hero__cta::after { display: none; }

.bb-hero__cta--wa {
  color: #25d366 !important;
  border: 1px solid #25d366 !important;
  margin-bottom: 0;
}
.bb-hero__cta--wa:hover {
  background: #25d366 !important;
  border-color: transparent !important;
  color: #fff !important;
}

.bb-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: #f3f3f3;
  border-radius: 6px;
}

.bb-nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--primary); border-radius: 2px; }

/* Mobile dropdown menu */
.bb-nav__mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #ebebeb;
  padding: 8px 0 14px;
}

.bb-nav__mobile-menu.open { display: flex; }

.bb-nav__mobile-menu a {
  padding: 10px 20px;
  color: var(--primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #f5f5f5;
}

.bb-nav__mobile-menu a:hover { background: #f9f9f9; }

/* ================================================================
   HERO – bb-hero (reference: light bg, text left, car+card right)
   ================================================================ */

.bb-hero {
  min-height: 100vh;
  padding:  0;
  background: #fff;
  display: flex;
  align-items: center;
  background: url(../image/bg_white.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}

.bb-hero__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 32px;
  width: 100%;
}

/* ── Left panel: light, dark text ── */
.bb-hero__left {
  flex: 0 0 auto;
  width: 44%;
  max-width: 520px;
  display: flex;
  align-items: center;
}

.bb-hero__left-inner {
  max-width: 500px;
  width: 100%;
}

/* Small badge pill
.bb-hero__badge {
  display: inline-block;
  background: #0d1b2a;
  color: #f5c518;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
} */

.bb-hero__title {
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  font-weight: 600;
  line-height: 1.14;
  color: var(--primary);
  margin: 0 0 16px;
  letter-spacing: -0.025em;
}

/* .bb-hero__title--accent { color: #f5c518; } */

.bb-hero__sub {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.78;
  margin: 0 0 28px;
  max-width: 420px;
}

/* Dark CTA button */
.bb-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 33px;
  border-radius: 16px;
  border: 1px solid var(--primary);
  text-decoration: none;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

.bb-hero__cta::after {
  background: rgb(120 129 137 / 18%);
  content: "";
  width: 15px;
  height: 67px;
  transform: rotate(-30deg);
  position: absolute;
  top: -11px;
  left: -23px;
  animation: 1.5s ease-in-out infinite alternate scrollbutton;
  z-index: -1;
}

.bb-hero__cta:hover {
  border: 1px solid transparent;
  color: #fff;
  background: var(--primary);
}

.bb-hero__cta:hover::after { height: 0; }

/* Checklist */
.bb-hero__checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.bb-hero__checks li {
  font-size: 16px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.bb-hero__checks li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%230d1b2a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / 10px;
    background-size: cover;
}

/* ── Right panel: white rounded visual panel (reference: .hero-visual) ── */
.bb-hero__visual {
  flex: 1;
  position: relative;
  height: 100vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  border-radius: 40px;
  overflow: hidden;
}

/* Vertical center road line */
.bb-hero__road-line {
  position: absolute;
  width: 20px;
  height: 100%;
  background: linear-gradient(to bottom, #60a5fa, #1d4ed8);
  left: 22%;
  transform: translateX(-50%);
  z-index: 1;
}

@keyframes drive { 0% { left: -160px; } 100% { left: 100%; } }

@keyframes drive-spin {
  0%   { transform: translateX(-200px) rotate(0deg);   }
  100% { transform: translateX(calc(100vw + 200px)) rotate(720deg); }
}

@keyframes carFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-20px); }
}

/* Car centered in panel */
.bb-hero__car {
  width: 340px;
  max-width: 85%;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.2));
  position: relative;
  z-index: 2;
  animation: carFloat 3s ease-in-out infinite;
}

/* Floating booking form card */
.bb-hero__form-card {
  position: absolute;
  right: 0%;
  /* top: 30%; */
  width: 350px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.bb-hero__form-heading {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid #f0f0f0;
}

.bb-hero__form-heading svg { color: #f5c518; flex-shrink: 0; }

/* Card form fields */
.bb-fc__field { margin-bottom: 16px; position: relative; }

.bb-fc__icon {
  position: absolute;
  left: 10px;
  top: 37px;
  color: var(--gray);
  pointer-events: none;
  z-index: 1;
}

.bb-fc__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bb-fc__label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gray_two);
  margin-bottom: 4px;
}

.bb-fc__input {
    display: block;
    width: 100%;
    border: 1.5px solid var(--border_color);
    border-radius: 8px;
    padding: 10px 10px 10px 32px;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary);
    background: #fafafa;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.bb-fc__input:focus { border-color: #f5c518; background: #fff; }

.bb-fc__input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  text-align: left;
}
.bb-fc__input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}
.bb-fc__input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.bb-fc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 16px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.38);
  transition: background 0.2s, transform 0.15s;
}

.bb-fc__btn:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ================================================================
   RESPONSIVE – Navbar + Hero
   ================================================================ */

@media (max-width: 991px) {
  .bb-hero { padding: 80px 0 40px; }
  .bb-hero__inner { flex-direction: column; gap: 0; }
  .bb-hero__left { width: 100%; max-width: 100%; padding: 0 0 32px; }
  .bb-hero__visual { flex: none; width: 100%; height: 500px; border-radius: 24px; margin: 0; }
  .bb-hero__form-card { right: 5%; top: 20%; width: 220px; padding: 16px; }
}

@media (max-width: 575px) {
  .bb-hero { padding: 75px 0 32px; }
  .bb-hero__left { padding: 0 0 24px; }
  .bb-hero__visual { height: 380px; }
  .bb-hero__car { width: 200px; }
  .bb-hero__form-card { right: 4%; top: 12%; width: 160px; padding: 12px; border-radius: 14px; }
  .bb-hero__form-heading { font-size: 12px; margin-bottom: 10px; padding-bottom: 8px; }
  .bb-fc__row { grid-template-columns: 1fr; }
  .bb-fc__input { padding: 6px 8px; font-size: 11px; }
  .bb-fc__label { font-size: 8.5px; }
  .bb-fc__btn { font-size: 11px; padding: 9px 10px; margin-top: 10px; }
}

/* ================================================================
   ALL CONTENT SECTIONS – WHITE
   ================================================================ */

.section-muted,
.section-light,
.why-us,
.coverage-section,
.reviews-section {
  background: #ffffff !important;
  border-bottom: none !important;
}

/* ================================================================
   APP CTA SECTION – white bg, text left, phone mockup right
   ================================================================ */

/* ================================================================
   CTA SECTION
   ================================================================ */

@keyframes spin-cw {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

.app-cta {
  background: var(--white);
}

.app-cta .container {
  position: relative;
  overflow: hidden;
}

.left-shape {
  width: 200px;
  height: 200px;
  border: 20px solid var(--primary);
  border-radius: 50%;
  border-right-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
      top: 12%;
    left: -35px;
  transform: translateY(-50%);
  opacity: 0.12;
  pointer-events: none;
  z-index: 99;
  animation: spin-cw 6s linear infinite;
}
.right-shape {
  width: 200px;
  height: 200px;
  border: 20px solid var(--primary);
  border-radius: 50%;
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  bottom: -44%;
  right: -32px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 99;
  animation: spin-cw 6s linear infinite reverse;
}

/* Centered content */
.app-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
  background: var(--bg_light);
  border-radius: 24px;
  padding: clamp(40px, 5vw, 64px) clamp(28px, 5vw, 64px);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.app-cta__title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 120%;
  color: var(--primary);
  margin-bottom: 16px;
}

.app-cta__sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.app-cta__btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.app-cta__btn--plain {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 10px;
  border: 1px solid var(--border_color);
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
}

.app-cta__btn--plain:hover {
  border-color: var(--primary);
  background: var(--bg_light);
  color: var(--primary);
}

.app-cta__btn--solid {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  padding: 11px 26px;
  border-radius: 10px;
  background: var(--primary);
  border: 1px solid transparent;
  transition: background 0.2s, transform 0.2s;
}

.app-cta__btn--solid:hover {
  background: #1a2e44;
  transform: translateY(-1px);
  color: var(--white);
}

@media (max-width: 575px) {
  .app-cta__btns { flex-direction: column; align-items: stretch; }
  .app-cta__btn--plain, .app-cta__btn--solid { justify-content: center; }
}

/* ── Why-Us left panel: blob + car image ── */
.why-us__img-wraps {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 420px;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding-top: 40px;
}

/* organic blob background shape */
.why-us__img-wraps::before {
  content: '';
  position: absolute;
  inset: 20px 0 0 0;
  background: linear-gradient(145deg, #fff8d6 0%, #fde832 60%, #f5c518 100%);
  border-radius: 62% 38% 50% 50% / 48% 44% 56% 52%;
  z-index: 0;
}

.wcu-car-blob-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.18));
  display: block;
}

/* ── Cards on white backgrounds ── */
.why-us__card {
  background: #f8f9fa;
}

/* ================================================================
   SERVICES SECTION – What We Offer
   ================================================================ */

.svc-card {
  background: var(--white);
  border: 1px solid var(--border_color);
  border-radius: 16px;
  padding: 30px 26px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: default;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
  border-color: var(--primary);
}

.svc-card:hover::after { transform: scaleX(1); }

.svc-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: rgba(13, 27, 42, 0.05);
  line-height: 1;
  user-select: none;
  transition: color 0.3s;
}

.svc-card:hover .svc-num { color: rgba(13, 27, 42, 0.10); }

.svc-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--bg_light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.3s, transform 0.3s;
}

.svc-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  stroke-width: 1.8;
  fill: none;
}

.svc-card:hover .svc-icon {
  background: var(--primary);
  transform: scale(1.08) rotate(3deg);
}

.svc-card:hover .svc-icon svg { stroke: var(--white); }

.svc-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 9px;
}

.svc-card p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 20px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-decoration: none;
  transition: gap 0.25s, color 0.25s;
}

.svc-link svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.svc-card:hover .svc-link { color: var(--gray); gap: 9px; }
.svc-card:hover .svc-link svg { transform: translateX(3px); }

/* ================================================================
   FLEET SECTION
   ================================================================ */

.fleet__primary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.fleet-card {
  background: var(--white);
  border: 1px solid var(--border_color);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: box-shadow 0.28s, transform 0.28s, border-color 0.28s;
}

.fleet-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  border-color: var(--primary);
}

.fleet-card__img {
  height: 100%;
  background: var(--bg_light);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s;
}

.fleet-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--primary);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 50px;
}

.fleet-card__body {
  padding: 20px 24px;
  width: 50%;
}

.fleet-card__title-row {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 6px;
    flex-direction: column;
}

.fleet-card__body h3 {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
}

.fleet-card__body p {
  font-size: clamp(14px, 1.4vw, 15px);
  color: var(--gray);
  margin-bottom: 12px;;
}

.fleet-card__pax {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg_light);
  color: var(--gray);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.fleet-card__body .btn-yellow { margin-top: 14px; }

.fleet-sm {
  background: var(--white);
  border: 1px solid var(--border_color);
  border-radius: 10px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  transition: border-color 0.22s, background 0.22s;
}

.fleet-sm:hover {
  border-color: var(--primary);
  background: var(--bg_light);
}

.fleet-sm h4 {
  font-size: 13px;
  margin-bottom: 1px;
  color: var(--primary);
}

.fleet-sm small {
  font-size: 11px;
  color: var(--gray_two);
}

@media (max-width: 768px) {
  .fleet__primary { grid-template-columns: 1fr; }
  .fleet-card { flex-direction: column; }
  .fleet-card__img { height: 170px; width: 100%; }
  .fleet-card__body { width: 100%; }
}

.step-card {
  background: #f8f9fa;
  border: 1px solid #eeeeee;
}

/* ================================================================
   ROUTES SECTION
   ================================================================ */

.routes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.route-card {
  flex: 0 1 400px;
  min-width: 280px;
  background: var(--white);
  border: none;
  border-radius: 9px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}

.route-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.route-cities {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
}

.city-name {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  color: var(--primary);
}

.route-sep::after {
  content: '→';
  font-size: 13px;
  color: var(--gray_two);
  font-weight: 400;
}

.get-fare-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 600;
  color: var(--primary);
  background: none;
  border: 1px solid var(--primary);
  padding: 6px 16px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.2s ease;
  border-radius: 10px;;
}

.get-fare-btn:hover { background-color:var(--primary);color:var(--white); }

/* ================================================================
   REVIEWS SECTION
   ================================================================ */

.reviews-section {
  position: relative;
  padding: var(--section-py) 0;
}

.rev-card {
  background: var(--bg_light);
  border: 1px solid var(--border_color);
  border-radius: 16px;
  padding: 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: var(--yellow);
  font-size: 0.83rem;
  margin-bottom: 10px;
}

.rev-text {
  font-size: 0.86rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

.revr {
  display: flex;
  align-items: center;
  gap: 11px;
}

.revr-av {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--yellow);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.revr-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
}

.revr-loc {
  font-size: 0.73rem;
  color: var(--gray_two);
}

.swiper-outer {
  position: relative;
  padding: 0 60px;
}

.testimonialSwiper { padding-bottom: 56px !important; }

.swiper-slide { height: auto; }

.swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 28px));
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.swiper-btn svg { width: 20px; height: 20px; display: block; }

.swiper-btn-prev { left: 0; }
.swiper-btn-next { right: 0; }

.swiper-btn:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  transform: translateY(calc(-50% - 28px)) scale(1.08);
}

.swiper-btn:active { transform: translateY(calc(-50% - 28px)) scale(0.96); }

.swiper-btn.swiper-button-disabled { opacity: 0.35; pointer-events: none; }

.swiper-custom-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 0; left: 0; right: 0;
  text-align: center;
  margin-top: 24px;
}

.swiper-custom-pagination .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--border_color);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}

.swiper-custom-pagination .dot.active {
  width: 28px;
  background: var(--primary);
}

.swiper-custom-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--border_color);
  opacity: 1;
  margin: 0 4px;
  transition: all 0.3s ease;
  border: none;
}

.swiper-custom-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 999px;
  background: var(--primary);
}

/* ================================================================
   FAQ SECTION
   ================================================================ */

.faq-item {
  background: var(--white);
  border: 1px solid var(--border_color);
  border-radius: 11px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 20px;
  cursor: pointer;
  user-select: none;
}

.faq-q-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  line-height: 150%;
  flex: 1;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg_light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, transform 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--primary);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--gray);
  stroke-width: 2.5;
  fill: none;
  transition: stroke 0.25s;
}

.faq-item.open .faq-icon svg { stroke: var(--white); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }

.faq-item.open .faq-a { max-height: 200px; }

.faq-a-inner {
  padding: 13px 20px 17px;
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
  border-top: 1px solid var(--border_color);
}

.faq-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

/* ── Trust section ── */
.trust__img-wrap img {
  border-radius: 16px;
}

/* ================================================================
   COVERAGE SECTION
   ================================================================ */

.coverage__city-item {
  background: var(--white) !important;
  border: 1px solid var(--border_color) !important;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: default;
}

.coverage__city-item:hover {
  border-color: var(--primary) !important;
  box-shadow: 0 4px 18px rgba(13, 27, 42, 0.10);
  transform: translateY(-2px);
}

.coverage__city-item span {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
}

.city-icon-placeholder {
  background: var(--bg_light);
  border: 1px solid var(--border_color);
}

/* ── Step connector line ── */
.step-connector-line {
  background: #e5e7eb;
}

/* ── Section text on white ── */
.sec-tagline {
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 30px;
  padding: 7px 20px;
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 600;
}

.sec-tagline svg { display: none; }

/* ── Why-us dot visible on white bg ── */
.why-us__dot {
  background: #ffffff !important;
  border-color: #d1d5db !important;
}

/* ================================================================
   WHY CHOOSE US – orbital design (wcu2-*)
   ================================================================ */

.wcu2-section { padding: var(--section-py) 0; }

.wcu2-body {
  display: flex;
  align-items: center;
  gap: 200px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Orbit wrap */
.wcu2-orbit-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wcu2-ring {
  position: relative;
  width: 400px;
  height: 400px;
}

/* Dashed orbit border */
.wcu2-ring__border {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed var(--border_color);
  pointer-events: none;
}

/* Center content */
.wcu2-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 190px;
  text-align: center;
  pointer-events: none;
  z-index: 2;
}

.wcu2-center__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: background 0.3s;
}

.wcu2-center__icon svg { width: 24px; height: 24px; }

.wcu2-center__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 6px;
  line-height: 1.35;
  transition: opacity 0.25s;
}

.wcu2-center__desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
  transition: opacity 0.25s;
}
a:-webkit-any-link:focus-visible
{outline-offset: 0;}
:focus-visible
{outline:none;}
/* Orbit nodes */
.wcu2-node {
  position: absolute;
  width: 58px;
  height: 58px;
  cursor: pointer;
  z-index: 3;
}

.wcu2-node__inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(0,0,0,0.10);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.wcu2-node__inner svg { width: 22px; height: 22px; }

.wcu2-node.active .wcu2-node__inner {
  background: var(--primary);
  color: var(--yellow);
  box-shadow: 0 6px 20px rgba(13,27,42,0.28);
}

.wcu2-node:hover .wcu2-node__inner {
  background: var(--yellow);
  color: var(--primary);
}

/* Stats grid */
.wcu2-right {
  flex: 1;
  min-width: 260px;
  max-width: 380px;
}

.wcu2-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}

.wcu2-stat__num {
  font-size: 52px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.wcu2-stat__num sup {
  font-size: 22px;
  font-weight: 700;
  color: var(--yellow);
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
}

.wcu2-stat__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray_two);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .wcu2-body { flex-direction: column; gap: 36px; }
  .wcu2-ring { width: 300px; height: 300px; }
  .wcu2-stat__num { font-size: 36px; }
  .wcu2-stats-grid { gap: 20px 28px; }
}

/* ── How Booking Works: new design (hiw2-*) ── */
.hiw2-section {
  padding: var(--section-py) 0;
}

.hiw2-section .hiw-mobile { display: none; }

.hiw2-desktop { width: 100%; }

.hiw2-row {
  display: flex;
  align-items: stretch;
}

.hiw2-row--top {
  min-height: 140px;
  align-items: flex-end;
  padding-bottom: 6px;
}

.hiw2-row--bottom {
  min-height: 140px;
  align-items: flex-start;
  padding-top: 6px;
}

.hiw2-cell {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hiw2-label {
  text-align: center;
  max-width: 210px;
}

.hiw2-label__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--bg_light);
  border: 1px solid var(--border_color);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  transition: background 0.3s, border-color 0.3s;
}

.hiw2-label__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  opacity: 0.75;
}

.hiw2-label__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 5px;
}

.hiw2-label__desc {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}

.hiw2-svg {
  width: 100%;
  display: block;
  overflow: visible;
}

.hiw-mobile-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border_color);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  padding: 18px 20px;
}

.hiw-mobile-step__num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hiw-mobile-step h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.hiw-mobile-step p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

@media (max-width: 768px) {
  .hiw2-desktop { display: none; }
  .hiw2-section .hiw-mobile {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
}

/* ================================================================
   FOOTER
   ================================================================ */

.footer-two {
  background: var(--white);
  padding: clamp(40px, 5vw, 70px) 0 0;
}

.footer-two__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(20px, 3vw, 48px);
  padding-bottom: clamp(30px, 5vw, 56px);
  border-bottom: 1px solid var(--border_color);
}

.footer-two__logo {
  height: auto;
  width: 150px;
  object-fit: contain;
  margin-bottom: clamp(12px, 2vw, 18px);
  display: block;
  filter: brightness(0) saturate(100%) invert(9%) sepia(9%) saturate(3343%) hue-rotate(172deg) brightness(94%) contrast(98%);
}

.footer-two__brand p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.footer-two__social {
  display: flex;
  gap: clamp(6px, 1vw, 10px);
}

.footer-two__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(38px, 3vw, 48px);
  height: clamp(38px, 3vw, 48px);
  border-radius: 8px;
  background: var(--bg_light);
  color: var(--primary);
  border: 1px solid var(--border_color);
  transition: all 0.2s ease;
}

.footer-two__social a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.footer-two__col h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: clamp(12px, 1.5vw, 20px);
}

.footer-two__col ul {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vw, 10px);
  padding: 0;
  margin: 0;
}

.footer-two__col ul li a,
.footer-two__col ul li span {
  font-size: 16px;
  color: var(--gray);
  transition: color 0.3s;
}

.footer-two__col ul li a:hover {
  color: var(--primary);
}

.footer-two__contact li {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 10px);
}

.footer-two__contact li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.footer-two__bottom {
  padding: clamp(12px, 2vw, 20px) 0;
  text-align: center;
  border-top: 1px solid var(--border_color);
}

.footer-two__bottom p {
  font-size: 14px;
  color: var(--gray_two);
  margin: 0;
}

/* ---- btn-yellow same as bb-hero__cta ---- */
.btn-yellow {
  background: transparent !important;
  color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
  border-radius: 100px !important;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.3s ease-in-out !important;
}

.btn-yellow::after {
  background: rgba(13, 27, 42, 0.18);
  content: "";
  width: 15px;
  height: 60px;
  transform: rotate(-30deg);
  position: absolute;
  top: -11px;
  left: -23px;
  animation: 1.5s ease-in-out infinite alternate scrollbutton;
  z-index: -1;
}

.btn-yellow:hover {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-color: transparent !important;
}

.btn-yellow:hover::after { height: 0; }
 .car_show_mobile{display:none;}

/* ---- Floating buttons override ---- */
.fb-call { background: var(--primary); color: #fff; }
.fb-call svg { stroke: #fff; }

.coverage__map-img{
      filter: none;
          border: 1px solid var(--border_color);
}