@import url("../fonts/inter.css");

:root {
  /* Brand Orange — CTA, highlights, movement */
  --gold: #F57C00;
  --gold-light: #FFA000;
  --gold-pale: #FFF3E0;
  /* Brand Blue — trust, headers, nav */
  --dark: #0F5C8E;
  --dark-2: #0D4F7A;
  --dark-3: #1E6FA5;
  /* Neutrals */
  --text: #333333;
  --muted: #64748b;
  --border: #E0E0E0;
  --white: #ffffff;
  --green: #16a34a;
  /* Extended palette */
  --orange-gradient-start: #F57C00;
  --orange-gradient-mid: #FFA000;
  --orange-gradient-end: #FFC107;
  --blue-gradient-start: #0F5C8E;
  --blue-gradient-end: #1E6FA5;
  --bg-light: #F5F5F5;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-light);
  color: var(--text);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: 'Inter', sans-serif; letter-spacing: -0.03em; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── NAV ── */
body > nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--gold);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand { display: flex; align-items: baseline; gap: 4px; text-decoration: none; }
.brand-k { font-family: 'Inter', sans-serif; font-size: 28px; font-weight: 900; color: var(--orange-gradient-end); letter-spacing: -1px; }
.brand-t { font-family: 'Inter', sans-serif; font-size: 28px; font-weight: 700; color: #fff; letter-spacing: -1px; }
.brand-sub { font-size: 10px; font-weight: 500; color: #94a3b8; letter-spacing: 2px; margin-left: 2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: #0F5C8E; font-size: 14px; font-weight: 500; text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-contact { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange-gradient-start), var(--orange-gradient-mid)); color: #fff;
  padding: 8px 18px; border-radius: 4px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: background .2s, transform .15s;
}
.nav-phone:hover { background: linear-gradient(135deg, var(--orange-gradient-mid), var(--orange-gradient-end)); transform: translateY(-1px); }
.nav-wa {
  display: flex; align-items: center; gap: 8px;
  border: 1.5px solid #16a34a; color: #4ade80;
  padding: 7px 16px; border-radius: 4px;
  font-weight: 600; font-size: 14px; text-decoration: none;
  transition: all .2s;
}
.nav-wa:hover { background: #16a34a; color: #fff; }

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, var(--blue-gradient-start) 0%, var(--blue-gradient-end) 100%);
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.hero-bg-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,193,7,.04) 40px,
    rgba(255,193,7,.04) 80px
  );
}
.hero-accent {
  position: absolute;
  right: -120px; top: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,160,0,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,193,7,.18);
  border: 1px solid rgba(255,193,7,.4);
  color: var(--orange-gradient-end);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--orange-gradient-end); }
.hero-desc { color: #94a3b8; font-size: 16px; line-height: 1.7; margin-bottom: 2rem; max-width: 480px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 2rem; }
.hero-pill {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: #cbd5e1;
  padding: 6px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 500;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange-gradient-start), var(--orange-gradient-mid)); color: #fff;
  padding: 14px 28px; border-radius: 4px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(245,124,0,.35);
}
.cta-primary:hover { background: linear-gradient(135deg, var(--orange-gradient-mid), var(--orange-gradient-end)); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,124,0,.45); }
.cta-wa {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid #16a34a; color: #4ade80;
  padding: 12px 24px; border-radius: 4px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: all .2s;
}
.cta-wa:hover { background: #16a34a; color: #fff; }

/* ── BOOKING FORM CARD ── */
.form-card {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(15,92,142,.25);
  border-top: 4px solid var(--gold);
}
.form-card h2 {
  font-size: 26px; font-weight: 800;
  color: var(--dark); margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--muted); margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%; padding: 11px 14px;
  background: var(--bg-light); border: 1.5px solid var(--border);
  border-radius: 4px; font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--dark); transition: border .2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus { outline: none; border-color: var(--gold); background: #fff; }
.btn-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--orange-gradient-start), var(--orange-gradient-mid)); color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 18px; font-weight: 700; letter-spacing: 1px;
  border: none; border-radius: 4px; cursor: pointer;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 14px rgba(245,124,0,.3);
}
.btn-submit:hover { background: linear-gradient(135deg, var(--orange-gradient-mid), var(--orange-gradient-end)); transform: translateY(-1px); }

/* ── TRUST BAR ── */
.trust-bar {
  background: linear-gradient(135deg, var(--blue-gradient-start), var(--blue-gradient-end));
  padding: 1.25rem 2rem;
}
.trust-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; text-align: center;
}
.trust-item { border-right: 1px solid rgba(255,255,255,.15); padding: 0 1rem; }
.trust-item:last-child { border: none; }
.trust-num {
  font-family: 'Inter', sans-serif;
  font-size: 32px; font-weight: 900; color: var(--orange-gradient-end);
  line-height: 1;
}
.trust-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,.75); margin-top: 2px;
}

/* ── SECTION COMMON ── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label-sm {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 900; color: var(--dark); line-height: 1.05;
  margin-bottom: .75rem;
}
.section-sub { color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 560px; }
.section-head { margin-bottom: 3rem; }
.centered { text-align: center; }
.centered .section-sub { margin: 0 auto; }

/* ── ROUTES ── */
.routes-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.route-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  position: relative; overflow: hidden;
  text-align: center;
}
.route-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform .25s;
  transform-origin: bottom;
}
.route-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); transform: translateY(-3px); border-color: var(--gold); }
.route-card:hover::before { transform: scaleY(1); }
.route-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); margin-bottom: .5rem;
}
.route-title {
  font-size: 18px; font-weight: 800; color: var(--dark);
  margin-bottom: .5rem;
}
.route-arrow { color: var(--gold); }
.route-price { color: var(--muted); font-size: 14px; margin-bottom: 1rem; }
.route-price strong { font-size: 24px; color: var(--dark); font-weight: 800; }
.route-vehicles { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 1rem; justify-content: center;}
.route-vehicle-tag { 
  font-size: 11px; padding: 3px 10px; border-radius: 2px;
  background: #f1f5f9; color: var(--muted); font-weight: 600;
}
.route-btns { display: flex; gap: 8px; }
.btn-call {
  flex: 1; text-align: center;
  background: linear-gradient(135deg, var(--orange-gradient-start), var(--orange-gradient-mid)); color: #fff;
  padding: 9px 0; border-radius: 4px;
  font-weight: 700; font-size: 13px; text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-call:hover { background: linear-gradient(135deg, var(--orange-gradient-mid), var(--orange-gradient-end)); transform: translateY(-1px); }
.btn-whatsapp {
  flex: 1; text-align: center;
  border: 1.5px solid var(--green); color: var(--green);
  padding: 8px 0; border-radius: 4px;
  font-weight: 700; font-size: 13px; text-decoration: none;
  transition: all .2s;
}
.btn-whatsapp:hover { background: var(--green); color: #fff; }

/* ── SERVICES ── */
.services-bg { background: linear-gradient(160deg, var(--blue-gradient-start) 0%, var(--blue-gradient-end) 100%); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.svc-card {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 1.75rem;
  transition: border-color .2s, background .2s;
  background: rgba(255,255,255,.06);
}
.svc-card:hover { border-color: var(--orange-gradient-end); background: rgba(255,193,7,.08); }
.svc-icon {
  width: 44px; height: 44px;
  background: rgba(255,193,7,.2);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.svc-icon svg { width: 22px; height: 22px; stroke: var(--orange-gradient-end); }
.svc-card h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: .5rem; }
.svc-card p { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.6; }

/* ── FLEET CARDS ── */
.fleet-bg { background: #fff; }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 1rem;
}

.fleet-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px;
  text-align: center;
  transition: 0.25s ease;
  position: relative;
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.fleet-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--orange-gradient-start), var(--orange-gradient-mid));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.fleet-img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
}

.fleet-title {
  font-weight: 700;
  color: var(--dark);
  font-size: 20px;
}

.fleet-meta {
  color: var(--muted);
  font-size: 15px;
  margin-top: 2px;
}

.fleet-use {
  font-size: 15px;
  color: var(--muted);
  margin: 8px 0;
}

.fleet-price {
  margin: 10px 0;
}

.price-nonac {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin: 8px 0;
}

.price-ac {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
}

.fleet-reviews {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.stars {
  color: var(--gold);
  font-size: 14px;
}

.fleet-btn {
  display: inline-block;
  margin-top: 8px;
}

@media (max-width: 1200px) {
  .fleet-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .fleet-grid { grid-template-columns: 1fr; }
}

/* ── STEPS ── */
.steps-bg { background: linear-gradient(160deg, var(--dark-2) 0%, var(--dark) 100%); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.step { text-align: center; }
.step-num {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--orange-gradient-start), var(--orange-gradient-mid));
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 36px; font-weight: 900;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(245,124,0,.4);
}
.step h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: .5rem; }
.step p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.6; }

/* ── WHY CHOOSE ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.why-list { display: grid; gap: 1.25rem; }
.why-item { display: flex; align-items: flex-start; gap: 1rem; }
.why-icon-wrap {
  flex-shrink: 0; width: 44px; height: 44px;
  background: #FFF3E0;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
}
.why-icon-wrap svg { width: 20px; height: 20px; stroke: var(--orange-gradient-start); }
.why-text h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.why-text p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.why-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.why-stat {
  background: linear-gradient(160deg, var(--blue-gradient-start), var(--blue-gradient-end));
  border-radius: 6px; padding: 1.5rem;
  text-align: center;
}
.why-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 42px; font-weight: 900; color: var(--orange-gradient-end); line-height: 1;
}
.why-stat-label { font-size: 12px; color: rgba(255,255,255,.7); font-weight: 500; margin-top: 6px; }

/* ── LOCATIONS ── */
.locations-bg { background: #F5F5F5; border-top: 1px solid #E0E0E0; border-bottom: 1px solid #E0E0E0; }
.locations-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2rem; }
.location-name {
  font-family: 'Inter', sans-serif;
  font-size: 28px; font-weight: 800; color: rgba(15,92,142,.25);
  transition: color .2s; cursor: default;
}
.location-name:hover { color: var(--dark); }
.location-sep { color: var(--orange-gradient-start); font-weight: 900; font-size: 20px; }

/* ── ABOUT BLOCK ── */
.about-bg { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }
.about-content p {
  font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 1.25rem;
}
.about-content p strong { color: var(--dark); font-weight: 700; }
.about-routes { margin-top: 2rem; }
.about-routes-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); margin-bottom: 1rem; }
.outstation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.outstation-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted); padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.outstation-item::before { content: '→'; color: var(--gold); font-weight: 700; }
.about-sidebar {}
.sidebar-card {
  background: var(--dark);
  border-radius: 6px; padding: 1.75rem;
  margin-bottom: 1rem;
}
.sidebar-card h3 { font-size: 20px; font-weight: 800; color: var(--gold); margin-bottom: 1rem; }
.sidebar-detail {
  display: flex; gap: 10px;
  font-size: 13px; color: #94a3b8;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.07);
  line-height: 1.5;
}
.sidebar-detail:last-child { border: none; }
.sidebar-detail strong { color: #fff; min-width: 80px; display: inline-block; }

/* ── CALL STRIP ── */
.call-strip {
  background: #0F5C8E;
  padding: 2rem 2rem;
  text-align: center;
}
.call-strip h2 {
  font-size: 18px; font-weight: 600; color: rgba(255,255,255,.9);
  margin-bottom: .25rem;
}
.call-strip-num {
  font-family: 'Inter', sans-serif;
  font-size: 52px; font-weight: 900; color: #fff;
  line-height: 1; display: block;
  margin-bottom: .75rem;
}
.call-strip-btns { display: flex; justify-content: center; gap: 12px; }

/* ── SECONDARY FORM ── */
.quick-form-bg { background: var(--dark-2); }
.quick-form-card {
  background: #fff;
  border-radius: 8px; padding: 2.5rem;
  max-width: 800px; margin: 0 auto;
  text-align: center;
}
.quick-form-card h2 { font-size: 36px; font-weight: 900; color: var(--dark); margin-bottom: .5rem; }
.quick-form-card p { color: var(--muted); margin-bottom: 1.5rem; }
.quick-form-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; }
.quick-form-row input {
  padding: 13px 16px;
  background: var(--bg-light); border: 1.5px solid var(--border);
  border-radius: 4px; font-size: 14px;
  font-family: 'Inter', sans-serif; color: var(--text);
}
.quick-form-row input:focus { outline: none; border-color: var(--orange-gradient-start); }
.quick-form-row button {
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--orange-gradient-start), var(--orange-gradient-mid)); color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 18px; font-weight: 700; letter-spacing: 1px;
  border: none; border-radius: 4px; cursor: pointer;
  white-space: nowrap; transition: background .2s, transform .15s;
  box-shadow: 0 4px 14px rgba(245,124,0,.3);
}
.quick-form-row button:hover { background: linear-gradient(135deg, var(--orange-gradient-mid), var(--orange-gradient-end)); color: #fff; transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 2px solid var(--gold);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-sub { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7; margin-top: 1rem; }
.footer-heading {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: 14px; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.8; }
.footer-contact strong { color: rgba(255,255,255,.9); }
.footer-cities { display: flex; flex-wrap: wrap; gap: 8px; margin-top: .5rem; }
.footer-city {
  font-size: 12px; color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.2);
  padding: 3px 10px; border-radius: 2px;
  transition: border-color .2s, color .2s;
}
.footer-city:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.45); }
.footer-bottom-cities { display: flex; gap: 12px; }
.footer-bottom-cities span { font-size: 12px; color: rgba(255,255,255,.45); }
.footer-bottom-cities a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.footer-bottom-cities a:hover { color: var(--gold); }

/* ── FLOATING BUTTONS ── */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  background: #25d366; color: #fff;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  text-decoration: none;
  animation: pulse-wa 2.5s infinite;
}
.float-wa svg { width: 28px; height: 28px; }
.float-phone {
  position: fixed; bottom: 96px; right: 24px; z-index: 200;
  background: linear-gradient(135deg, var(--orange-gradient-start), var(--orange-gradient-mid)); color: #fff;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(245,124,0,.45);
  text-decoration: none; transition: transform .2s;
}
.float-phone:hover { transform: scale(1.1); }
.float-phone svg { width: 22px; height: 22px; }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.4); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,.7); }
}

/* ── HAMBURGER MENU ── */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 6px; z-index: 110;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #0F5C8E; border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; inset: 0; top: 64px;
  background: var(--dark); z-index: 99;
  padding: 2rem; flex-direction: column; gap: 0;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; color: #cbd5e1; font-size: 18px; font-weight: 600;
  text-decoration: none; padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mob-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 1.5rem; }
.mobile-menu .mob-ctas a {
  border: none; padding: 14px; border-radius: 6px;
  text-align: center; font-size: 16px; font-weight: 700;
}
.mob-call { background: linear-gradient(135deg, var(--orange-gradient-start), var(--orange-gradient-mid)); color: #fff !important; }
.mob-wa { background: #16a34a; color: #fff !important; }

/* ── RESPONSIVE: LARGE TABLET / LAPTOP 1024px ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding: 3.5rem 1.5rem 3rem; gap: 2.5rem; }
  .hero h1 { font-size: clamp(36px, 5vw, 56px); }
  .hero-desc { max-width: 100%; }
  .form-card { max-width: 100%; }
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-cities { flex-wrap: wrap; justify-content: center; }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 4rem 1.5rem; }
}

/* ── RESPONSIVE: TABLET 768px ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-wa { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 1rem; }
  .hero { min-height: auto; }
  .hero-inner { padding: 2.5rem 1rem 2rem; gap: 2rem; }
  .hero h1 { font-size: clamp(30px, 6vw, 44px); line-height: 1.05; }
  .hero-desc { font-size: 15px; }
  .hero-ctas { flex-direction: column; }
  .cta-primary, .cta-wa { justify-content: center; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar { padding: 1rem; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: .75rem; }
  .trust-item:nth-child(2n) { border-bottom: none; }
  .trust-num { font-size: 26px; }
  .section { padding: 3rem 1rem; }
  .section-title { font-size: clamp(26px, 5vw, 36px); }
  .routes-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .why-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .outstation-grid { grid-template-columns: 1fr 1fr; }
  .call-strip-num { font-size: 36px; }
  .call-strip-btns { flex-direction: column; align-items: center; }
  .quick-form-card { padding: 1.5rem; }
  .quick-form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-cities { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .locations-strip { gap: 1rem; }
  .location-name { font-size: 20px; }
  .float-wa { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .float-phone { width: 44px; height: 44px; bottom: 82px; right: 18px; }
}

/* ── RESPONSIVE: MOBILE 480px ── */
@media (max-width: 480px) {
  .brand-k, .brand-t { font-size: 22px; }
  .brand-sub { display: none; }
  .hero-inner { padding: 2rem 1rem 1.5rem; }
  .hero h1 { font-size: 28px; }
  .hero-tag { font-size: 10px; }
  .hero-pill { font-size: 12px; padding: 5px 10px; }
  .hero-ctas a { width: 100%; justify-content: center; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-num { font-size: 22px; }
  .trust-label { font-size: 10px; }
  .section { padding: 2.5rem 1rem; }
  .section-title { font-size: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .step-num { width: 52px; height: 52px; font-size: 28px; }
  .step h3 { font-size: 18px; }
  .why-stats-grid { grid-template-columns: 1fr 1fr; }
  .outstation-grid { grid-template-columns: 1fr; }
  .call-strip-num { font-size: 28px; }
  .call-strip h2 { font-size: 14px; }
  .call-strip-btns a { width: 100%; justify-content: center; }
  .route-btns { flex-direction: column; }
  .btn-call, .btn-whatsapp { flex: none; }
  .form-card { padding: 1.25rem; }
  .form-card h2 { font-size: 20px; }
  .quick-form-card h2 { font-size: 26px; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  footer { padding: 2.5rem 1rem 1.5rem; }
  .cta-primary, .cta-wa { width: 100%; justify-content: center; font-size: 14px; }
  .float-wa { width: 48px; height: 48px; }
  .float-wa svg { width: 22px; height: 22px; }
  .float-phone { width: 40px; height: 40px; bottom: 78px; }
  .float-phone svg { width: 18px; height: 18px; }
}

/* ── RESPONSIVE: SMALL MOBILE 360px ── */
@media (max-width: 360px) {
  .brand-k, .brand-t { font-size: 20px; }
  .hero h1 { font-size: 24px; }
  .section-title { font-size: 22px; }
  .trust-num { font-size: 20px; }
  .call-strip-num { font-size: 24px; }
  .why-stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 0 .75rem; }
  .section { padding: 2rem .75rem; }
}

/* ── ENHANCED UPI POPUP ── */
.upi-backdrop {
  position: fixed; inset: 0;
  background: rgba(15, 92, 142, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 1rem;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.upi-box {
  background: #ffffff;
  width: 100%; max-width: 400px;
  padding: 2.25rem 1.75rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-top: 5px solid var(--gold);
  animation: popIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.close-icon {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  background: #f1f5f9; color: #64748b; border: none;
  font-size: 20px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.close-icon:hover {
  background: #e2e8f0; color: #0f172a; transform: rotate(90deg);
}

.upi-header { margin-bottom: 1rem; }
.upi-header h3 {
  font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 4px;
}
.upi-sub-text {
  font-size: 13px; color: var(--muted); line-height: 1.4;
}

.upi-qr-card {
  background: #fafafa;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px;
  display: inline-block;
  margin: 0.5rem auto 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}
.upi-qr-card:hover { transform: scale(1.02); }
.upi-qr {
  width: 190px; height: 190px; display: block; border-radius: 8px; margin: 0 auto;
}

.upi-id-badge {
  background: var(--gold-pale);
  border: 1.5px dashed var(--gold);
  padding: 8px 14px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
}
.upi-id {
  font-family: monospace; font-size: 15px; font-weight: 700; color: var(--dark);
}
.upi-copy-btn {
  background: var(--gold); color: #ffffff; border: none;
  padding: 5px 13px; border-radius: 20px;
  font-size: 12px; font-weight: 700; cursor: pointer;
  transition: all 0.2s ease;
}
.upi-copy-btn:hover {
  background: var(--gold-light); transform: scale(1.05);
}

.upi-form-group { text-align: left; margin-bottom: 1rem; }
.upi-label {
  display: block; font-size: 12px; font-weight: 700; color: var(--dark);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px;
}
.upi-input {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid #cbd5e1; border-radius: 10px;
  font-size: 15px; font-weight: 600; color: var(--text);
  outline: none; transition: all 0.2s ease;
}
.upi-input:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.18);
}

.upi-pay-btn {
  width: 100%; padding: 13px;
  background: linear-gradient(135deg, var(--orange-gradient-start), var(--orange-gradient-mid));
  color: #ffffff; font-size: 15px; font-weight: 700;
  border: none; border-radius: 10px; cursor: pointer;
  box-shadow: 0 4px 14px rgba(245, 124, 0, 0.3);
  transition: all 0.25s ease;
}
.upi-pay-btn:hover {
  transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245, 124, 0, 0.4);
}

.whatsapp-btn {
  width: 100%; margin-top: 10px; padding: 12px;
  background: linear-gradient(135deg, #15803d, #25D366);
  color: #ffffff; font-size: 14px; font-weight: 700;
  border-radius: 10px; text-decoration: none;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: all 0.25s ease;
}
.whatsapp-btn:hover {
  transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* ── UPI MODAL RESPONSIVE DISPLAY RULES ──
   Desktop (>768px): Show QR card & WhatsApp button. Hide amount input & Pay via UPI button.
   Mobile (<=768px): Hide QR card. Show amount input, Pay via UPI button & WhatsApp button.
*/
@media (min-width: 769px) {
  .upi-box .upi-form-group,
  .upi-box .upi-pay-btn {
    display: none !important;
  }
  .upi-box .upi-qr-card {
    display: inline-block !important;
  }
}

@media (max-width: 768px) {
  .upi-box .upi-qr-card {
    display: none !important;
  }
  .upi-box .upi-form-group {
    display: block !important;
  }
  .upi-box .upi-pay-btn {
    display: block !important;
  }
}

/* ── KEYFRAME ANIMATIONS ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.7);
    transform: scale(1.06);
  }
  100% {
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    transform: scale(1);
  }
}

@keyframes pulsePhoneGlow {
  0% {
    box-shadow: 0 4px 14px rgba(245, 124, 0, 0.4);
  }
  50% {
    box-shadow: 0 4px 24px rgba(245, 124, 0, 0.7);
    transform: scale(1.06);
  }
  100% {
    box-shadow: 0 4px 14px rgba(245, 124, 0, 0.4);
    transform: scale(1);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── BUDDHA TOURS STYLE ULTRA-PREMIUM SCROLL REVEAL (SCALE + FADE + SLIDE) ── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
  backface-visibility: hidden;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Sophisticated staggered cascade delays for grid items & columns */
.reveal-on-scroll:nth-child(1) { transition-delay: 0.06s; }
.reveal-on-scroll:nth-child(2) { transition-delay: 0.14s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.22s; }
.reveal-on-scroll:nth-child(4) { transition-delay: 0.30s; }
.reveal-on-scroll:nth-child(5) { transition-delay: 0.38s; }
.reveal-on-scroll:nth-child(6) { transition-delay: 0.46s; }

/* ── ENHANCED HOVER & MICRO-INTERACTIONS ACROSS ALL SECTIONS ── */
.route-card, .fleet-card, .svc-card, .value-card, .sidebar-card, .faq-item, .step-card, .why-card, .review-card, .trust-item, .outstation-item {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease;
  overflow: hidden;
}
.route-card:hover, .fleet-card:hover, .svc-card:hover, .value-card:hover, .faq-item:hover, .step-card:hover, .sidebar-card:hover, .why-card:hover, .review-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 16px 36px rgba(15, 92, 142, 0.15);
  border-color: var(--gold);
}

.trust-item:hover {
  transform: translateY(-4px);
}
.outstation-item:hover {
  transform: translateX(4px) scale(1.02);
  background: var(--gold-pale);
  color: var(--gold);
}

.fleet-img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.fleet-card:hover .fleet-img {
  transform: scale(1.08);
}

/* Button lift, scale and glow hover effects */
.btn-call, .btn-whatsapp, .cta-primary, .cta-wa, .upi-pay-btn, .btn-submit, .nav-phone, .nav-wa {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background 0.3s ease;
}
.btn-call:hover, .cta-primary:hover, .upi-pay-btn:hover, .btn-submit:hover, .nav-phone:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(245, 124, 0, 0.4);
}
.btn-whatsapp:hover, .cta-wa:hover, .nav-wa:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.4);
}

/* Hero Gentle Floating Badge Keyframe */
@keyframes floatGentle {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}
.hero-badge, .fleet-badge, .route-badge {
  animation: floatGentle 4s ease-in-out infinite;
}

/* Floating Action Buttons Pulse Animations */
.float-wa {
  animation: pulseGlow 3s infinite ease-in-out;
  transition: transform 0.3s ease;
}
.float-wa:hover {
  animation: none;
  transform: scale(1.15) rotate(5deg);
}

.float-phone {
  animation: pulsePhoneGlow 3s infinite ease-in-out 1.5s;
  transition: transform 0.3s ease;
}
.float-phone:hover {
  animation: none;
  transform: scale(1.15) rotate(-5deg);
}

/* ── NAV LINK UNDERLINE ANIMATION ── */
.nav-links a {
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover::after {
  width: 100%;
}

/* ── NAV SCROLL SHADOW ── */
body > nav.scrolled {
  box-shadow: 0 4px 20px rgba(15, 92, 142, 0.15);
  transition: box-shadow 0.3s ease;
}

/* ── INPUT FOCUS ANIMATIONS ── */
input, select, textarea {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.18) !important;
  transform: translateY(-1px);
}

/* ── FOOTER LINKS HOVER ANIMATION ── */
.footer-links a {
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
}
.footer-links a:hover {
  transform: translateX(5px);
  color: var(--gold);
}

/* ── TABLE ROW HOVER ANIMATION ── */
.routes-table tbody tr, .fleet-table tbody tr {
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.routes-table tbody tr:hover, .fleet-table tbody tr:hover {
  background-color: #f1f5f9;
}

/* ── BADGE SHIMMER ANIMATION ── */
@keyframes badgeShimmer {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}
.fleet-badge, .route-badge {
  animation: badgeShimmer 4s infinite ease-in-out;
}

/* ── HERO PAGE-LOAD ENTRANCE ANIMATIONS ── */
.hero-tag {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.hero h1 {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}
.hero-desc {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.hero-pills {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}
.hero-ctas {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}
.hero .form-card {
  animation: popIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* ── FULL SIZE MAP SECTION ── */
.full-map-section {
  padding: 3.5rem 0;
  background: var(--white);
}
.full-map-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.full-map-header {
  margin-bottom: 2rem;
  text-align: center;
}
.full-map-frame-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 92, 142, 0.12);
  border: 2px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.full-map-frame-wrap:hover {
  box-shadow: 0 20px 40px rgba(15, 92, 142, 0.18);
  border-color: var(--gold);
}
.full-map-frame-wrap iframe {
  width: 100%;
  height: 480px;
  display: block;
}

@media (max-width: 768px) {
  .full-map-section {
    padding: 2.5rem 0;
  }
  .full-map-container {
    padding: 0 1rem;
  }
  .full-map-frame-wrap iframe {
    height: 350px;
  }
}

/* ── UNIFIED SUBPAGE BANNERS & BREADCRUMBS LAYOUT (100% IDENTICAL SIZE & COLOR FOR ALL SUBPAGES) ── */
.routes-banner,
.services-banner,
.fleet-banner,
.about-banner,
.contact-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%) !important;
  padding: 4.5rem 2rem !important;
  color: #ffffff !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
}

.subpage-badge,
.about-hero-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(245, 124, 0, 0.22) !important;
  border: 1px solid rgba(245, 124, 0, 0.6) !important;
  color: #FFB74D !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 6px 16px !important;
  border-radius: 30px !important;
  margin-bottom: 1.25rem !important;
  backdrop-filter: blur(4px) !important;
}

.routes-banner h1,
.services-banner h1,
.fleet-banner h1,
.about-banner h1,
.contact-banner h1 {
  font-size: clamp(32px, 4.5vw, 48px) !important;
  font-weight: 900 !important;
  margin-bottom: 0.75rem !important;
  line-height: 1.15 !important;
  letter-spacing: -0.03em !important;
  color: #ffffff !important;
}

.routes-banner p,
.services-banner p,
.fleet-banner p,
.about-banner p,
.contact-banner p {
  color: #cbd5e1 !important;
  font-size: 16px !important;
  max-width: 680px !important;
  margin: 0 auto 1.75rem !important;
  line-height: 1.6 !important;
}

.subpage-breadcrumbs,
.routes-breadcrumbs,
.services-breadcrumbs,
.fleet-breadcrumbs,
.about-breadcrumbs,
.contact-breadcrumbs {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-size: 13px !important;
  color: var(--gold) !important;
  font-weight: 600 !important;
  margin-bottom: 1rem !important;
}

.subpage-breadcrumbs a,
.routes-breadcrumbs a,
.services-breadcrumbs a,
.fleet-breadcrumbs a,
.about-breadcrumbs a,
.contact-breadcrumbs a {
  color: #94a3b8 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.subpage-breadcrumbs a:hover,
.routes-breadcrumbs a:hover,
.services-breadcrumbs a:hover,
.fleet-breadcrumbs a:hover,
.about-breadcrumbs a:hover,
.contact-breadcrumbs a:hover {
  color: #ffffff !important;
}

.subpage-banner-ctas,
.about-banner-ctas {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

/* ── TABLE CONTAINER RESPONSIVE WRAPPER ── */
.table-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  border: 1.5px solid var(--border);
  background: var(--white);
}

/* ── MOBILE FRIENDLY TABLE TO CARDS CONVERSION (<= 768px) ── */
@media (max-width: 768px) {
  .table-container {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    overflow-x: visible !important;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .routes-table, .fleet-table {
    display: block !important;
    width: 100% !important;
  }

  .routes-table thead, .fleet-table thead {
    display: none !important;
  }

  .routes-table tbody, .fleet-table tbody {
    display: block !important;
    width: 100% !important;
  }

  .routes-table tr, .fleet-table tr {
    display: block !important;
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 1.25rem !important;
    margin-bottom: 1.25rem !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04) !important;
    transition: border-color 0.2s ease, transform 0.2s ease;
  }

  .routes-table tr:hover, .fleet-table tr:hover {
    border-color: var(--gold) !important;
    transform: translateY(-2px);
  }

  .routes-table td, .fleet-table td {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 0 !important;
    border-bottom: 1px dashed #e2e8f0 !important;
    font-size: 14px !important;
    text-align: right !important;
  }

  .routes-table td:last-child, .fleet-table td:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    padding-top: 14px !important;
    display: block !important;
    width: 100% !important;
  }

  .routes-table td::before, .fleet-table td::before {
    content: attr(data-label);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
    margin-right: 1rem;
    text-align: left;
    flex-shrink: 0;
  }

  .routes-table td:last-child::before, .fleet-table td:last-child::before {
    display: none !important;
  }

  .routes-table td .route-btns, .fleet-table td .route-btns {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 4px !important;
  }

  .routes-table td .btn-call, .routes-table td .btn-whatsapp,
  .fleet-table td .btn-call, .fleet-table td .btn-whatsapp {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
  }
}



