/* ============================================================
   CAB24x7 — home.css  (FIXED)
   Save to: assets/css/home.css
============================================================ */

/* ── Variables ── */
:root {
  --gold:      #D4A843;
  --gold-dk:   #B8912F;
  --accent:    #F2622E;
  --accent-dk: #D4451A;
  --green:     #1A9E5F;
  --green-dk:  #137848;
  --amber:     #E07B00;
  --amber-dk:  #B86200;
  --dark:      #0D0D12;
  --dark2:     #16161F;
  --off:       #F7F8FA;
  --text:      #111118;
  --muted:     #6B7280;
  --faint:     #9CA3AF;
  --border:    #E5E7EB;
  --ff-head:   'Playfair Display', Georgia, serif;
  --ff-body:   'DM Sans', 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius:    14px;
  --radius-sm: 10px;
}

body { font-family: var(--ff-body); }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section { padding: 90px 0; }
a { text-decoration: none; color: inherit; }

/* ── Section headers ── */
.sec-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 24px; margin-bottom: 52px;
}
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.kicker .bar { width: 24px; height: 2px; background: var(--accent); border-radius: 2px; display: inline-block; }
.sec-title { font-family: var(--ff-head); font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 700; line-height: 1.18; color: var(--text); }
.sec-sub { font-size: 15px; line-height: 1.7; color: var(--muted); max-width: 420px; text-align: right; }

/* Reveal — starts VISIBLE, JS adds animation */
.reveal { opacity: 1; transform: none; }
.reveal.animate-ready { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1 !important; transform: translateY(0) !important; }

/* ============================================================
   HERO
============================================================ */
.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #0D0D12; /* fallback while images load */
}

/* Slides */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
  transform: scale(1.04);
}
.hero-slide.active { opacity: 1; animation: kenBurns 8s ease-in-out forwards; }
@keyframes kenBurns { from { transform:scale(1.04); } to { transform:scale(1.00); } }

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(13,13,18,0.92) 0%, rgba(13,13,18,0.60) 50%, rgba(13,13,18,0.32) 100%),
    linear-gradient(to top, rgba(13,13,18,0.85) 0%, transparent 50%);
}
.slide-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.sdot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,0.35); cursor: pointer; transition: all 0.3s; }
.sdot.active { background: var(--gold); width: 28px; border-radius: 4px; }

/* Hero content */
.hero-content {
  position: relative; z-index: 5;
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 140px 40px 80px;
  display: grid; grid-template-columns: 1fr 460px;
  gap: 56px; align-items: center;
  min-height: 100vh;
}

/* Hero text side */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #3FD084;
  display: inline-block; animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(63,208,132,0.6); }
  50%      { box-shadow: 0 0 0 8px rgba(63,208,132,0); }
}
.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  font-weight: 700; line-height: 1.10; color: #fff; margin-bottom: 18px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-lede {
  font-size: 1.02rem; line-height: 1.75; color: rgba(255,255,255,0.68);
  max-width: 440px; margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-size: 15px; font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: #fff; border-radius: 12px; text-decoration: none;
  box-shadow: 0 6px 24px rgba(242,98,46,0.42);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(242,98,46,0.52); }
.btn-hero-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; font-size: 15px; font-weight: 600;
  background: rgba(255,255,255,0.10); backdrop-filter: blur(8px);
  color: #fff; border-radius: 12px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.22);
  transition: background 0.2s, transform 0.2s;
}
.btn-hero-wa:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

.hero-stats-row { display: flex; gap: 28px; flex-wrap: wrap; }
.hstat { display: flex; flex-direction: column; gap: 2px; }
.hstat strong { font-size: 1.35rem; font-weight: 700; color: #fff; line-height: 1; }
.hstat span { font-size: 0.68rem; color: rgba(255,255,255,0.46); letter-spacing: 0.07em; text-transform: uppercase; }

/* ============================================================
   BOOKING CARD
============================================================ */
.booking-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.35), 0 4px 20px rgba(0,0,0,0.15);
  overflow: hidden;
  /* NO animation-delay — show immediately */
}

/* Tabs */
.btabs { display: flex; border-bottom: 1px solid var(--border); background: #F7F8FA; }
.btab {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 14px 8px; font-size: 13px; font-weight: 600;
  color: var(--muted); background: transparent; border: none;
  cursor: pointer; border-bottom: 3px solid transparent;
  transition: all 0.2s; font-family: var(--ff-body);
}
.btab svg { opacity: 0.5; flex-shrink: 0; transition: opacity 0.2s; }
.btab:hover { color: var(--accent); background: rgba(242,98,46,0.04); }
.btab:hover svg { opacity: 1; }
.btab.active { color: var(--accent); border-bottom-color: var(--accent); background: #fff; }
.btab.active svg { opacity: 1; }

/* Forms */
.bform { padding: 20px 20px 16px; }
.bform.hidden { display: none; }
.brow { display: grid; gap: 10px; margin-bottom: 12px; align-items: end; }
.brow.two-col   { grid-template-columns: 1fr auto 1fr; }
.brow.three-col { grid-template-columns: repeat(3, 1fr); }
.brow.one-col   { grid-template-columns: 1fr; }
.bfield { display: flex; flex-direction: column; gap: 5px; }
.bfield label {
  font-size: 10px; font-weight: 700; color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase;
  display: flex; align-items: center; gap: 4px;
}

.bfield input[type=text],
.bfield input[type=date],
.bfield input[type=time],
.bfield select {
  width: 100%; padding: 10px 11px;
  font-family: var(--ff-body); font-size: 13px; font-weight: 500;
  color: var(--text); background: #F9FAFB;
  border: 1.5px solid var(--border); border-radius: 9px;
  outline: none; appearance: none; -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bfield input:focus, .bfield select:focus {
  border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 3px rgba(242,98,46,0.10);
}
.bfield select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center; padding-right: 28px; cursor: pointer;
}

.swap-btn {
  align-self: flex-end; width: 34px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: #F3F4F6; border: 1.5px solid var(--border);
  border-radius: 9px; font-size: 15px; color: var(--muted);
  flex-shrink: 0; cursor: pointer; transition: all 0.22s;
}
.swap-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: rotate(180deg); }

/* Autocomplete */
.ainput-wrap { position: relative; }
.suggest-list {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: #fff; border: 1.5px solid var(--border); border-radius: 10px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.14); z-index: 9999;
  max-height: 200px; overflow-y: auto; display: none;
}
.suggest-list.open { display: block; }
.suggest-item {
  padding: 9px 13px; font-size: 13px; color: var(--text);
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid #F3F4F6; transition: background 0.15s;
}
.suggest-item:last-child { border-bottom: none; }
.suggest-item:hover { background: #FFF4F0; color: var(--accent); }

/* Book buttons */
.book-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 18px; font-family: var(--ff-body); font-size: 14px; font-weight: 700;
  color: #fff; border: none; border-radius: 11px; cursor: pointer;
  transition: all 0.2s; margin-bottom: 12px; letter-spacing: 0.01em;
}
.book-btn-red   { background: linear-gradient(135deg,var(--accent),var(--accent-dk)); box-shadow: 0 4px 16px rgba(242,98,46,0.32); }
.book-btn-green { background: linear-gradient(135deg,var(--green),var(--green-dk));   box-shadow: 0 4px 16px rgba(26,158,95,0.28); }
.book-btn-amber { background: linear-gradient(135deg,var(--amber),var(--amber-dk));   box-shadow: 0 4px 16px rgba(224,123,0,0.28); }
.book-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.book-btn:active { transform: translateY(0); }

.form-note { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.form-note span { font-size: 10.5px; color: var(--faint); font-weight: 500; }

/* ============================================================
   SERVICES
============================================================ */
.services-section { background: var(--off); }
.svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.svc {
  background: #fff; border-radius: var(--radius); padding: 26px 22px;
  display: flex; flex-direction: column; gap: 13px;
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s; text-decoration: none; color: inherit;
}
.svc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.28s;
}
.svc:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.10); border-color: transparent; }
.svc:hover::before { transform: scaleX(1); }
.svc-num { font-size: 11px; font-weight: 700; color: var(--faint); letter-spacing: 0.1em; }
.svc-icon { font-size: 1.9rem; line-height: 1; }
.svc-body h3 { font-size: 15.5px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.svc-body p  { font-size: 13px; line-height: 1.65; color: var(--muted); }
.svc-arr {
  align-self: flex-start; width: 30px; height: 30px; border-radius: 50%;
  background: var(--off); display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--muted); transition: all 0.2s;
}
.svc:hover .svc-arr { background: var(--accent); color: #fff; }

/* ============================================================
   FLEET
============================================================ */
.fleet-section { background: #fff; }
.fleet-tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.ftab {
  padding: 8px 18px; font-size: 13px; font-weight: 600;
  background: var(--off); color: var(--muted);
  border: 1.5px solid var(--border); border-radius: 50px;
  cursor: pointer; transition: all 0.2s; font-family: var(--ff-body);
}
.ftab.on, .ftab:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.fleet-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.car { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; position: relative; transition: transform 0.22s, box-shadow 0.22s; }
.car:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.10); }
.car-badge { position: absolute; top: 13px; left: 13px; z-index: 2; padding: 3px 10px; font-size: 10px; font-weight: 700; border-radius: 50px; background: #F3F4F6; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }
.car-badge.hot { background: linear-gradient(135deg,var(--accent),var(--gold)); color: #fff; }
.car-pic { height: 168px; background: linear-gradient(135deg,#F7F8FA,#EEF0F3); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.car-pic img { width: 100%; height: 100%; object-fit: cover; }
.car-ph { font-size: 4.5rem; line-height: 1; }
.car-body { padding: 16px 18px 15px; }
.car-meta { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.car-name { font-size: 15px; font-weight: 700; color: var(--text); }
.car-type { font-size: 12px; color: var(--muted); margin-top: 2px; }
.car-price { text-align: right; }
.car-price b { font-size: 16px; font-weight: 700; color: var(--text); }
.car-price small { font-size: 11px; color: var(--muted); }
.car-price span { display: block; font-size: 10px; color: var(--faint); }
.car-specs { display: flex; gap: 7px; margin-bottom: 13px; flex-wrap: wrap; }
.car-specs span { font-size: 11.5px; color: var(--muted); background: var(--off); padding: 3px 9px; border-radius: 6px; }
.car-book { display: flex; justify-content: space-between; align-items: center; padding-top: 11px; border-top: 1px solid var(--border); }
.car-book .from { font-size: 12px; color: var(--muted); }
.car-book .from b { color: var(--text); }
.car-book a { padding: 8px 14px; font-size: 12.5px; font-weight: 700; background: var(--accent); color: #fff; border-radius: 8px; text-decoration: none; transition: background 0.2s, transform 0.2s; }
.car-book a:hover { background: var(--accent-dk); transform: translateY(-1px); }

/* ============================================================
   WHY US
============================================================ */
.why-section { background: var(--dark); overflow: hidden; position: relative; }
.why-section::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle,rgba(212,168,67,0.08) 0%,transparent 70%); pointer-events: none; }
.why-section .sec-head { border: none; }
.why-grid { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 20px 18px; transition: background 0.2s; }
.feat:hover { background: rgba(255,255,255,0.07); }
.feat-icon { font-size: 1.5rem; margin-bottom: 10px; }
.feat h4 { font-size: 14.5px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.feat p  { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.48); }
.why-aside { display: flex; flex-direction: column; gap: 16px; }
.why-main-card { background: linear-gradient(135deg,rgba(212,168,67,0.14),rgba(242,98,46,0.09)); border: 1px solid rgba(212,168,67,0.24); border-radius: var(--radius); padding: 24px 20px; }
.why-main-card h3 { font-family: var(--ff-head); font-size: 1.45rem; color: #fff; margin-bottom: 8px; line-height: 1.2; }
.why-main-card p { font-size: 13px; color: rgba(255,255,255,0.52); line-height: 1.65; }
.why-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.wstat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 14px 10px; text-align: center; }
.wstat b { display: block; font-size: 1.25rem; font-weight: 700; color: var(--gold); line-height: 1; }
.wstat span { font-size: 10px; color: rgba(255,255,255,0.42); margin-top: 4px; display: block; text-transform: uppercase; letter-spacing: 0.05em; }
.btn-why { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 20px; font-size: 14px; font-weight: 700; background: linear-gradient(135deg,var(--accent),var(--accent-dk)); color: #fff; border-radius: 12px; text-decoration: none; box-shadow: 0 4px 18px rgba(242,98,46,0.35); transition: transform 0.2s; }
.btn-why:hover { transform: translateY(-2px); }

/* ============================================================
   CITY ROUTE BOXES
============================================================ */
.routes-section { background: var(--off); }
.city-route-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

.crbox {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.22s, box-shadow 0.22s;
}
.crbox:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(0,0,0,0.11); }

/* Box header — dark with orange border */
.crbox-head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 16px 14px;
  background: linear-gradient(135deg, #171723 0%, #231812 100%);
  border-bottom: 2px solid var(--accent);
}
.crbox-icon {
  width: 40px; height: 40px; border-radius: 9px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff;
}
.crbox-title { flex: 1; min-width: 0; }
.crbox-label { font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 2px; }
.crbox-title h3 { font-size: 17px; font-weight: 800; color: #fff; line-height: 1; margin: 0; font-family: var(--ff-head); }
.crbox-count {
  background: rgba(242,98,46,0.15); color: var(--accent);
  font-size: 10.5px; font-weight: 700; padding: 3px 9px;
  border-radius: 50px; white-space: nowrap; flex-shrink: 0;
  border: 1px solid rgba(242,98,46,0.28);
}

/* Route rows */
.crbox-list { flex: 1; display: flex; flex-direction: column; }
.crbox-list-scroll { max-height: 320px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: #E5E7EB transparent; }
.crbox-list-scroll::-webkit-scrollbar { width: 4px; }
.crbox-list-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.crbox-item {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 16px; border-bottom: 1px solid #F3F4F6;
  text-decoration: none; transition: background 0.15s, padding-left 0.18s;
}
.crbox-item:last-child { border-bottom: none; }
.crbox-item:hover { background: #FFF4F0; padding-left: 20px; }

.crbox-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); opacity: 0.4; flex-shrink: 0;
  transition: opacity 0.15s;
}
.crbox-item:hover .crbox-dot { opacity: 1; }

.crbox-route {
  flex: 1; font-size: 13px; font-weight: 500; color: var(--text);
  min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.crbox-item:hover .crbox-route { color: var(--accent); }
.crbox-km { font-size: 11px; color: var(--faint); white-space: nowrap; flex-shrink: 0; }
.crbox-price { font-size: 12.5px; font-weight: 700; color: var(--text); white-space: nowrap; flex-shrink: 0; min-width: 58px; text-align: right; }
.crbox-item:hover .crbox-price { color: var(--accent); }

/* Box footer */
.crbox-footer {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 16px; font-size: 12.5px; font-weight: 700; color: var(--accent);
  text-decoration: none; background: rgba(242,98,46,0.04);
  border-top: 1px solid rgba(242,98,46,0.12);
  transition: background 0.2s, color 0.2s;
}
.crbox-footer:hover { background: var(--accent); color: #fff; }

/* CTA */
.routes-cta { text-align: center; margin-top: 44px; }
.btn-all-routes {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-size: 15px; font-weight: 700;
  background: linear-gradient(135deg,var(--accent),var(--accent-dk));
  color: #fff; border-radius: 12px; text-decoration: none;
  box-shadow: 0 4px 18px rgba(242,98,46,0.32);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-all-routes:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(242,98,46,0.44); }

/* ============================================================
   TESTIMONIALS
============================================================ */
.tests-section { background: #fff; }
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.test { background: var(--off); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; position: relative; overflow: hidden; transition: transform 0.22s, box-shadow 0.22s; }
.test:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(0,0,0,0.09); }
.test-quote { font-size: 3.6rem; font-family: var(--ff-head); color: var(--accent); opacity: 0.12; position: absolute; top: 10px; right: 16px; line-height: 1; pointer-events: none; }
.test-stars { color: var(--gold); font-size: 14px; margin-bottom: 11px; letter-spacing: 1px; }
.test p { font-size: 13.5px; line-height: 1.72; color: #374151; margin-bottom: 16px; position: relative; z-index: 1; }
.test-who { display: flex; align-items: center; gap: 11px; }
.test-av { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,var(--accent),var(--gold)); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0; }
.test-who b { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.test-who span { font-size: 12px; color: var(--muted); }

/* ============================================================
   ROUTES PAGE (routes.php)
============================================================ */
.routes-page-hero { background: linear-gradient(135deg,#0D0D12 0%,#1A1A2E 100%); padding: 110px 0 48px; }
.routes-page-hero h1 { font-family: var(--ff-head); font-size: clamp(2rem,4vw,3rem); color: #fff; margin: 12px 0 10px; line-height: 1.15; }
.routes-page-hero p { font-size: 15px; color: rgba(255,255,255,0.58); max-width: 560px; line-height: 1.7; margin-bottom: 28px; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: rgba(255,255,255,0.42); margin-bottom: 10px; }
.breadcrumb a { color: rgba(255,255,255,0.58); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.routes-search-form { max-width: 540px; }
.rs-wrap { display: flex; align-items: center; background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.16); border-radius: 11px; overflow: hidden; transition: border-color 0.2s; }
.rs-wrap:focus-within { border-color: var(--accent); }
.rs-wrap svg { margin-left: 13px; flex-shrink: 0; color: rgba(255,255,255,0.45); }
.rs-wrap input { flex: 1; padding: 13px 11px; background: transparent; border: none; outline: none; font-size: 14px; color: #fff; font-family: var(--ff-body); }
.rs-wrap input::placeholder { color: rgba(255,255,255,0.4); }
.rs-clear { padding: 13px 11px; font-size: 13px; color: rgba(255,255,255,0.45); cursor: pointer; text-decoration: none; }
.rs-wrap button { padding: 13px 20px; background: var(--accent); border: none; color: #fff; font-weight: 700; font-size: 14px; cursor: pointer; font-family: var(--ff-body); transition: background 0.2s; }
.rs-wrap button:hover { background: var(--accent-dk); }
.routes-state-bar { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 70px; z-index: 50; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.state-tabs-row { display: flex; gap: 0; overflow-x: auto; }
.stab { display: flex; align-items: center; gap: 7px; padding: 15px 22px; font-size: 13.5px; font-weight: 600; color: var(--muted); text-decoration: none; border-bottom: 3px solid transparent; transition: all 0.2s; white-space: nowrap; }
.stab svg { opacity: 0.55; }
.stab span { font-size: 11px; background: var(--off); padding: 2px 8px; border-radius: 50px; font-weight: 700; }
.stab:hover, .stab.on { color: var(--accent); border-bottom-color: var(--accent); }
.stab.on span { background: rgba(242,98,46,0.10); color: var(--accent); }
.routes-page-body { padding: 40px 0 60px; }
.rp-meta { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.rp-meta b { color: var(--text); }
.no-cities { text-align: center; padding: 60px 0; color: var(--muted); font-size: 15px; }
.no-cities a { color: var(--accent); }
.city-route-grid-full { grid-template-columns: repeat(3,1fr); }
.seo-block { padding: 48px 0; border-top: 1px solid var(--border); }
.seo-block h2 { font-family: var(--ff-head); font-size: 1.6rem; margin-bottom: 12px; color: var(--text); }
.seo-block > p { font-size: 14px; line-height: 1.8; color: var(--muted); max-width: 740px; margin-bottom: 26px; }
.seo-quick-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.seo-quick-links div h3 { font-size: 13.5px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.seo-quick-links ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.seo-quick-links ul li a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.seo-quick-links ul li a:hover { color: var(--accent); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media(max-width:1100px) {
  .hero-content    { grid-template-columns: 1fr; gap: 40px; padding: 110px 32px 60px; }
  .svc-grid        { grid-template-columns: repeat(2,1fr); }
  .fleet-grid      { grid-template-columns: repeat(2,1fr); }
  .why-grid        { grid-template-columns: 1fr; }
  .test-grid       { grid-template-columns: repeat(2,1fr); }
  .city-route-grid { grid-template-columns: repeat(2,1fr); }
  .city-route-grid-full { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:768px) {
  .wrap { padding: 0 20px; }
  .section { padding: 56px 0; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .sec-sub  { text-align: left; }
  .hero-content { padding: 90px 20px 56px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .feat-grid  { grid-template-columns: 1fr; }
  .test-grid  { grid-template-columns: 1fr; }
  .why-stats  { grid-template-columns: repeat(3,1fr); }
  .city-route-grid { grid-template-columns: 1fr; }
  .city-route-grid-full { grid-template-columns: 1fr; }
  .seo-quick-links { grid-template-columns: 1fr; }
}
@media(max-width:540px) {
  .brow.two-col   { grid-template-columns: 1fr; }
  .swap-btn       { display: none; }
  .brow.three-col { grid-template-columns: 1fr 1fr; }
  .bform          { padding: 14px 14px 12px; }
  .btab           { font-size: 11.5px; padding: 11px 5px; }
  .hero-stats-row { gap: 16px; }
  .hero-actions   { flex-direction: column; }
  .btn-hero-primary, .btn-hero-wa { width: 100%; justify-content: center; }
  .svc-grid { grid-template-columns: 1fr; }
}
/* ============================================================
   CAB24x7 — fixes.css
   FIX 1: Hero mobile full screen
   FIX 2: Logo size doubled
   ADD THIS: paste at bottom of assets/css/home.css
============================================================ */

/* ══════════════════════════════════════════
   FIX 1: HERO — MOBILE FULL SCREEN
══════════════════════════════════════════ */

/* Ensure hero always fills full viewport */
.hero-premium {
  min-height: 100vh;
  min-height: 100svh;
}

/* Background slides — cover full screen on all devices */
.hero-slide {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important; /* no fixed on mobile */
}

/* Mobile: full viewport, stacked layout */
@media (max-width: 1100px) {
  .hero-premium {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-content {
    min-height: 100vh;
    min-height: 100svh;
    padding: 100px 32px 60px !important;
    grid-template-columns: 1fr !important;
    display: grid !important;
    gap: 32px !important;
    align-items: start !important;
  }
}

@media (max-width: 768px) {
  .hero-premium {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-content {
    min-height: 100vh;
    min-height: 100svh;
    padding: 90px 20px 48px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between;
    gap: 24px !important;
    align-items: stretch !important;
  }

  /* Text block stays at top */
  .hero-text {
    flex: 0 0 auto;
  }

  /* Booking card fills remaining space */
  .booking-card {
    flex: 1 1 auto;
    border-radius: 18px !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Title sizing for mobile */
  .hero-title {
    font-size: clamp(1.95rem, 8vw, 2.8rem) !important;
    margin-bottom: 12px !important;
    line-height: 1.12 !important;
  }

  .hero-lede {
    font-size: 0.92rem !important;
    line-height: 1.68 !important;
    margin-bottom: 18px !important;
  }

  .hero-actions {
    margin-bottom: 22px !important;
  }

  .hero-stats-row {
    gap: 14px !important;
  }

  .hstat strong { font-size: 1.1rem !important; }
  .hstat span   { font-size: 0.62rem !important; }

  /* Slide dots */
  .slide-dots { bottom: 16px; }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero-content {
    padding: 80px 16px 36px !important;
    gap: 18px !important;
  }
  .hero-title { font-size: 1.8rem !important; }
  .btab { font-size: 11px !important; padding: 11px 5px !important; }
  .brow.three-col { grid-template-columns: 1fr 1fr !important; }
}

/* ══════════════════════════════════════════
   FIX 2: LOGO SIZE DOUBLED
   Original height: 48px → New: 80px (desktop), 58px (mobile)
══════════════════════════════════════════ */

/* Desktop: logo image doubled */
.nav-logo-img {
  height: 80px !important;
  width: auto !important;
  max-width: 240px;
  object-fit: contain;
}

/* Nav row needs extra height to accommodate bigger logo */
.nav .row {
  min-height: 88px !important;
}

/* Brand anchor */
.brand-logo {
  padding: 4px 0 !important;
}

/* Nav scrolled state — slightly shrink but still bigger than original */
.site-header.scrolled .nav-logo-img,
.nav.scrolled .nav-logo-img {
  height: 64px !important;
}

/* Mobile: still bigger than original 48px */
@media (max-width: 768px) {
  .nav-logo-img {
    height: 58px !important;
    max-width: 180px;
  }
  .nav .row {
    min-height: 72px !important;
  }
}

@media (max-width: 400px) {
  .nav-logo-img {
    height: 48px !important;
    max-width: 150px;
  }
}
/* ============================================================
   CAB24x7 — header-booking-fixes.css
   FIX 1: Sticky header logo — no white bg visible
   FIX 2: Booking card — glassmorphism, hero image visible behind
   ADD: paste at bottom of assets/css/home.css
============================================================ */

/* ══════════════════════════════════════════
   FIX 1: HEADER LOGO — TRANSPARENT BG
══════════════════════════════════════════ */

/* Remove any background from logo */
.brand-logo,
.brand-logo img,
.nav-logo-img {
  background: transparent !important;
  background-color: transparent !important;
  mix-blend-mode: normal;
}

/* Nav before scroll — fully transparent bg */
.nav,
.site-header {
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Nav after scroll — dark bg so logo reads clearly */
.site-header.scrolled,
.nav.scrolled {
  background: rgba(10, 10, 16, 0.95) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.35) !important;
}

/* Logo image — force transparent, no box */
.nav-logo-img {
  height: 72px !important;
  width: auto !important;
  max-width: 220px;
  object-fit: contain;
  display: block;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  /* Ensure white pixels in image don't show as box */
  image-rendering: -webkit-optimize-contrast;
}

/* On dark nav bg (after scroll) logo shows fine */
/* On transparent (over hero) — logo needs contrast */
.site-header:not(.scrolled) .nav-logo-img {
  /* Add subtle drop shadow so logo is readable over dark hero */
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}

/* Mobile: keep same behavior */
@media (max-width: 768px) {
  .nav-logo-img {
    height: 56px !important;
    max-width: 170px;
  }
}

/* ══════════════════════════════════════════
   FIX 2: BOOKING CARD — GLASSMORPHISM
   Hero image visible behind card, dark overlay,
   stars/text readable at low visibility
══════════════════════════════════════════ */

.booking-card {
  /* Glass effect — hero image shows through */
  background: rgba(13, 13, 18, 0.62) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.40),
    0 4px 16px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  border-radius: 20px !important;
}

/* Tabs — dark glass style */
.btabs {
  background: rgba(255, 255, 255, 0.04) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.btab {
  color: rgba(255, 255, 255, 0.55) !important;
  font-weight: 600 !important;
}
.btab:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06) !important;
}
.btab.active {
  color: var(--accent, #F2622E) !important;
  background: rgba(242, 98, 46, 0.08) !important;
  border-bottom-color: var(--accent, #F2622E) !important;
}

/* Form fields — dark glass inputs */
.bfield label {
  color: rgba(255, 255, 255, 0.55) !important;
}

.bfield input[type=text],
.bfield input[type=date],
.bfield input[type=time],
.bfield select {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  caret-color: var(--accent, #F2622E);
}

.bfield input::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

.bfield input:focus,
.bfield select:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: var(--accent, #F2622E) !important;
  box-shadow: 0 0 0 3px rgba(242, 98, 46, 0.18) !important;
  color: #fff !important;
}

/* Select arrow — white for dark bg */
.bfield select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 11px center !important;
  padding-right: 32px !important;
  /* Fix date/time input text color on mobile */
  color-scheme: dark;
}

/* Swap button */
.swap-btn {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.6) !important;
}
.swap-btn:hover {
  background: var(--accent, #F2622E) !important;
  border-color: var(--accent, #F2622E) !important;
  color: #fff !important;
}

/* Form note text */
.form-note span {
  color: rgba(255, 255, 255, 0.38) !important;
}

/* Autocomplete dropdown — stays white (readable) */
.suggest-list {
  background: #fff !important;
  border-color: var(--border, #E5E7EB) !important;
}
.suggest-item {
  color: var(--text, #111118) !important;
}
.suggest-item:hover {
  background: #FFF4F0 !important;
  color: var(--accent, #F2622E) !important;
}

/* Book buttons — keep solid orange/green/amber */
.book-btn-red,
.book-btn-green,
.book-btn-amber {
  /* Already solid gradients — keep as is */
}

/* ── Mobile: same glass effect ── */
@media (max-width: 768px) {
  .booking-card {
    background: rgba(13, 13, 18, 0.72) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
  }
}

/* ══════════════════════════════════════════
   HERO MOBILE — also applied here for completeness
══════════════════════════════════════════ */

.hero-premium {
  min-height: 100vh;
  min-height: 100svh;
}

@media (max-width: 768px) {
  .hero-premium { min-height: 100vh; min-height: 100svh; }

  .hero-content {
    min-height: 100vh !important;
    min-height: 100svh !important;
    padding: 90px 20px 48px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: stretch !important;
    gap: 20px !important;
  }

  .hero-text { flex: 0 0 auto; }

  .booking-card {
    flex: 1 1 auto !important;
    border-radius: 18px !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-title {
    font-size: clamp(1.95rem, 8vw, 2.8rem) !important;
    margin-bottom: 10px !important;
  }
  .hero-lede { font-size: 0.9rem !important; margin-bottom: 16px !important; }
  .hero-actions { margin-bottom: 18px !important; }
}
/* ============================================================
   CAB24x7 — Booking Card Animated Border
   Paste at bottom of assets/css/home.css
============================================================ */

/* ── Remove old border, add animated gradient border ── */
.booking-card {
  position: relative;
  background: rgba(13, 13, 18, 0.62) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border: none !important;
  border-radius: 20px !important;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.40),
    0 4px 16px rgba(0,0,0,0.20) !important;
  padding: 0 !important;
  overflow: visible !important;
  z-index: 1;
}

/* Animated rotating gradient border using ::before */
.booking-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  z-index: -1;
  background: conic-gradient(
    from var(--angle, 0deg),
    #F2622E 0%,
    #D4A843 15%,
    rgba(255,255,255,0.90) 30%,
    #D4A843 45%,
    #F2622E 60%,
    rgba(255,255,255,0.90) 75%,
    #F2622E 90%,
    #D4A843 100%
  );
  animation: rotateBorder 4s linear infinite;
}

/* Inner mask to keep card content clean */
.booking-card::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: 19px;
  background: rgba(13, 13, 18, 0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: -1;
}

/* CSS custom property animation trick */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotateBorder {
  from { --angle: 0deg; }
  to   { --angle: 360deg; }
}

/* Fallback for browsers that don't support @property */
@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .booking-card::before {
    background: linear-gradient(135deg, #F2622E, #D4A843, rgba(255,255,255,0.8), #F2622E);
    animation: fallbackBorder 3s linear infinite;
  }
  @keyframes fallbackBorder {
    0%   { opacity: 1; }
    50%  { opacity: 0.6; }
    100% { opacity: 1; }
  }
}

/* ── Outer glow pulse on the card ── */
.booking-card {
  animation: cardGlow 3s ease-in-out infinite !important;
}

@keyframes cardGlow {
  0%, 100% {
    box-shadow:
      0 24px 64px rgba(0,0,0,0.40),
      0 4px 16px rgba(0,0,0,0.20),
      0 0 20px rgba(242, 98, 46, 0.10),
      0 0 40px rgba(212, 168, 67, 0.06) !important;
  }
  50% {
    box-shadow:
      0 24px 64px rgba(0,0,0,0.45),
      0 4px 16px rgba(0,0,0,0.22),
      0 0 30px rgba(242, 98, 46, 0.22),
      0 0 60px rgba(212, 168, 67, 0.12) !important;
  }
}

/* ── Ensure content stays above pseudo elements ── */
.btabs,
.bform {
  position: relative;
  z-index: 2;
}

/* ── Tabs style for dark glass card ── */
.btabs {
  background: rgba(255,255,255,0.04) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 20px 20px 0 0 !important;
  overflow: hidden;
}
.btab {
  color: rgba(255,255,255,0.55) !important;
}
.btab:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.06) !important;
}
.btab.active {
  color: #F2622E !important;
  background: rgba(242,98,46,0.10) !important;
  border-bottom-color: #F2622E !important;
}

/* ── Form labels + inputs dark glass ── */
.bfield label { color: rgba(255,255,255,0.55) !important; }

.bfield input[type=text],
.bfield input[type=date],
.bfield input[type=time],
.bfield select {
  background: rgba(255,255,255,0.07) !important;
  border: 1.5px solid rgba(255,255,255,0.12) !important;
  color: #fff !important;
  color-scheme: dark;
}
.bfield input::placeholder { color: rgba(255,255,255,0.35) !important; }
.bfield input:focus,
.bfield select:focus {
  background: rgba(255,255,255,0.13) !important;
  border-color: #F2622E !important;
  box-shadow: 0 0 0 3px rgba(242,98,46,0.18) !important;
}
.bfield select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 11px center !important;
  padding-right: 32px !important;
}
.swap-btn {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.14) !important;
  color: rgba(255,255,255,0.6) !important;
}
.swap-btn:hover {
  background: #F2622E !important;
  border-color: #F2622E !important;
  color: #fff !important;
}
.form-note span { color: rgba(255,255,255,0.38) !important; }
/* ============================================================
   CAB24x7 — Mobile Header Fix
   Paste at bottom of assets/css/home.css  OR  style.css
============================================================ */

/* ── MOBILE ONLY: Header dark glass background ── */
@media (max-width: 768px) {

  /* Main nav — dark glass always on mobile */
  .nav,
  .site-header,
  #main-nav {
    background: rgba(10, 10, 16, 0.92) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.40) !important;
  }

  /* Top bar — keep dark */
  .topbar {
    background: rgba(6, 6, 10, 0.96) !important;
  }

  /* Nav row padding */
  .nav .row {
    padding: 0 16px !important;
    min-height: 66px !important;
  }

  /* Logo on mobile */
  .nav-logo-img {
    height: 52px !important;
    width: auto !important;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.6));
  }

  /* Mobile menu dropdown — dark */
  .mobile-menu,
  #mobile-menu {
    background: rgba(10, 10, 16, 0.97) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-top: 1px solid rgba(255,255,255,0.07) !important;
  }

  .mobile-menu a {
    color: rgba(255,255,255,0.82) !important;
    border-radius: 9px;
  }
  .mobile-menu a:hover {
    background: rgba(255,255,255,0.07) !important;
    color: #fff !important;
  }
  .mobile-menu .mob-book {
    background: linear-gradient(135deg,#F2622E,#D4451A) !important;
    color: #fff !important;
    text-align: center;
    font-weight: 700;
  }

  /* Hamburger icon — white on dark bg */
  .menu-toggle span,
  .hamburger span {
    background: #fff !important;
  }

  /* CTA buttons in nav */
  .cta-row .btn-ghost {
    color: rgba(255,255,255,0.85) !important;
    border-color: rgba(255,255,255,0.20) !important;
  }
  .cta-row .btn-primary,
  .cta-row .btn-nav {
    background: linear-gradient(135deg,#F2622E,#D4451A) !important;
    color: #fff !important;
  }
}
/* ============================================================
   CAB24x7 — Logo Fix CSS
   Paste at bottom of assets/css/style.css
   Fixes: Logo fully visible, proper size, transparent bg
============================================================ */

/* ── DESKTOP LOGO ── */
.brand-logo {
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  padding: 6px 0 !important;
  background: transparent !important;
}

/* Logo image — show full logo, auto width */
.nav-logo-img {
  height: 64px !important;      /* fixed height */
  width: auto !important;       /* width adjusts automatically */
  max-width: 240px !important;  /* prevent too wide */
  min-width: 120px !important;  /* prevent too small */
  object-fit: contain !important;
  object-position: left center !important;
  display: block !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  /* Drop shadow for readability on hero */
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.55)) !important;
}

/* Nav row height to fit logo */
.nav .row,
.site-header .row {
  min-height: 76px !important;
  align-items: center !important;
}

/* ── MOBILE LOGO ── */
@media (max-width: 768px) {
  .nav-logo-img {
    height: 52px !important;
    min-width: 100px !important;
    max-width: 180px !important;
  }

  .nav .row,
  .site-header .row {
    min-height: 64px !important;
  }

  /* Mobile header always dark (no white flash) */
  .nav,
  .site-header,
  #main-nav {
    background: rgba(10, 10, 16, 0.94) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.40) !important;
  }

  .topbar {
    background: rgba(6, 6, 10, 0.97) !important;
  }
}

/* ── SMALL PHONES ── */
@media (max-width: 400px) {
  .nav-logo-img {
    height: 44px !important;
    min-width: 90px !important;
    max-width: 155px !important;
  }
}
/* ============================================================
   CAB24x7 — Header Creamy Background
   Paste at bottom of assets/css/style.css
============================================================ */

/* ── Desktop: Creamy header ── */
.nav,
.site-header,
#main-nav {
  background: #FFF8F0 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Scrolled state — slightly deeper cream */
.site-header.scrolled,
.nav.scrolled {
  background: #FFF3E6 !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.12) !important;
}

/* Nav links — dark text on cream */
.nav .menu a,
.nav a {
  color: #2D1A0E !important;
}
.nav .menu a:hover,
.nav a:hover {
  color: #F2622E !important;
  background: rgba(242,98,46,0.07) !important;
}
.nav .menu a.active {
  color: #F2622E !important;
}

/* Brand sub text */
.brand .sub {
  color: #8B5E3C !important;
}
.brand .name { color: #1A0A00 !important; }
.brand .name b { color: #F2622E !important; }

/* Hamburger lines — dark on cream */
.menu-toggle span,
.hamburger span {
  background: #2D1A0E !important;
}

/* Call Now button on cream bg */
.cta-row .btn-ghost,
.btn-ghost {
  color: #2D1A0E !important;
  border-color: rgba(45,26,14,0.25) !important;
}
.cta-row .btn-ghost:hover {
  color: #F2622E !important;
  border-color: #F2622E !important;
}

/* Top bar — warm dark */
.topbar {
  background: #2D1A0E !important;
  color: rgba(255,255,255,0.80) !important;
}
.topbar a { color: rgba(255,255,255,0.75) !important; }
.topbar a:hover { color: #F2622E !important; }
.topbar .dot { background: #F2622E !important; }

/* ── Mobile: Same cream ── */
@media (max-width: 768px) {
  .nav,
  .site-header,
  #main-nav {
    background: #FFF8F0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10) !important;
  }

  /* Mobile dropdown */
  .mobile-menu,
  #mobile-menu {
    background: #FFF3E6 !important;
    backdrop-filter: none !important;
    border-top: 1px solid rgba(242,98,46,0.15) !important;
  }

  .mobile-menu a,
  #mobile-menu a {
    color: #2D1A0E !important;
  }
  .mobile-menu a:hover,
  #mobile-menu a:hover {
    background: rgba(242,98,46,0.08) !important;
    color: #F2622E !important;
  }

  /* Book cab button stays orange */
  .mobile-menu .mob-book,
  #mobile-menu .mob-book {
    background: linear-gradient(135deg,#F2622E,#D4451A) !important;
    color: #fff !important;
  }

  /* Logo drop shadow adjusted for light bg */
  .nav-logo-img {
    filter: none !important;
  }
}
/* ============================================================
   LOCAL TAXI SECTION — Homepage
   Paste at bottom of assets/css/home.css
============================================================ */

.local-taxi-section {
  background: var(--off, #F7F8FA);
}

/* ── Main Box ── */
.local-cities-box {
  background: #fff;
  border: 1.5px solid var(--border, #E5E7EB);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
}

/* ── Box Header Bar ── */
.local-cities-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #0D0D12 0%, #1E1E2A 100%);
  border-bottom: 2px solid var(--accent, #F2622E);
}

.lcb-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.lcb-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  flex: 1;
}

.lcb-view-all {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold, #D4A843);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.lcb-view-all:hover {
  color: var(--accent, #F2622E);
}

/* ── Links Grid ── */
.local-cities-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.lc-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text, #111118);
  text-decoration: none;
  border-right: 1px solid var(--border, #E5E7EB);
  border-bottom: 1px solid var(--border, #E5E7EB);
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
}

/* Remove right border from last in each row */
.lc-link:nth-child(5n) {
  border-right: none;
}

/* Remove bottom border from last row */
.lc-link:nth-last-child(-n+5) {
  border-bottom: none;
}

.lc-link:hover {
  background: #FFF4F0;
  color: var(--accent, #F2622E);
  padding-left: 22px;
}

.lc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent, #F2622E);
  opacity: 0.45;
  flex-shrink: 0;
  transition: opacity 0.18s;
}

.lc-link:hover .lc-dot {
  opacity: 1;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .local-cities-links {
    grid-template-columns: repeat(4, 1fr);
  }
  .lc-link:nth-child(5n) { border-right: 1px solid var(--border, #E5E7EB); }
  .lc-link:nth-child(4n) { border-right: none; }
  .lc-link:nth-last-child(-n+5) { border-bottom: 1px solid var(--border, #E5E7EB); }
  .lc-link:nth-last-child(-n+4) { border-bottom: none; }
}

@media (max-width: 768px) {
  .local-cities-links {
    grid-template-columns: repeat(3, 1fr);
  }
  .lc-link { padding: 11px 14px; font-size: 12.5px; }
  .lc-link:hover { padding-left: 17px; }
  /* Reset and reapply borders for 3 cols */
  .lc-link { border-right: 1px solid var(--border, #E5E7EB); border-bottom: 1px solid var(--border, #E5E7EB); }
  .lc-link:nth-child(5n) { border-right: 1px solid var(--border, #E5E7EB); }
  .lc-link:nth-child(4n) { border-right: 1px solid var(--border, #E5E7EB); }
  .lc-link:nth-child(3n) { border-right: none; }
  .lc-link:nth-last-child(-n+4) { border-bottom: 1px solid var(--border, #E5E7EB); }
  .lc-link:nth-last-child(-n+3) { border-bottom: none; }
  .local-cities-header { padding: 14px 18px; }
}

@media (max-width: 480px) {
  .local-cities-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .lc-link { font-size: 12px; padding: 10px 12px; }
  /* Reset for 2 cols */
  .lc-link:nth-child(3n) { border-right: 1px solid var(--border, #E5E7EB); }
  .lc-link:nth-child(2n) { border-right: none; }
  .lc-link:nth-last-child(-n+3) { border-bottom: 1px solid var(--border, #E5E7EB); }
  .lc-link:nth-last-child(-n+2) { border-bottom: none; }
}