/*
=============================================================
  SINGH SAAB TAXI SERVICE
  FILE: css/style.css
  PURPOSE: All custom site styles — zero Bootstrap dependency
  Load order: AFTER bootstrap-overrides.css
=============================================================
*/

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700;800;900&family=Nunito:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --yellow:       #FFB700;
  --yellow-light: #FFD257;
  --blue:         #1A2E6E;
  --blue-mid:     #2F3D74;
  --blue-dark:    #0d1a3e;
  --blue-light:   #eef1fb;
  --white:        #ffffff;
  --text:         #0d1a3e;
  --muted:        #6b7280;
  --radius:       14px;
  --shadow:       0 4px 24px rgba(26,46,110,0.10);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: #f0f3fb;
  overflow-x: hidden;
}

/* =============================================================
   ANNOUNCEMENT BAR
   ============================================================= */
.announce-bar {
  background: var(--yellow);
  color: var(--blue-dark);
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 8px 16px;
  text-align: center;
  text-transform: uppercase;
}
.announce-bar a { color: var(--blue-dark); text-decoration: underline; }

/* =============================================================
   TOP CONTACT BAR
   ============================================================= */
.top-head { background: var(--blue-dark); padding: 8px 0; }
.top-head a {
  color: var(--yellow);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.top-head a:hover { color: #fff; }

/* =============================================================
   NAVBAR BRAND
   ============================================================= */
.logo-img { height: 52px; width: auto; border-radius: 6px; transition: height 0.3s ease; }
.navbar.scrolled .logo-img { height: 42px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-main {
  font-family: 'Raleway', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--yellow); letter-spacing: 1px; text-transform: uppercase;
}
.brand-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.75); letter-spacing: 2.5px; text-transform: uppercase;
}

/* Desktop nav buttons */
.btn-nav {
  background: var(--yellow);
  color: var(--blue-dark);
  border: none; border-radius: 4px;
  padding: 10px 22px;
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 0.8px; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s; text-decoration: none; display: inline-block;
}
.btn-nav:hover {
  background: #fff; color: var(--blue-dark);
  transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255,183,0,0.4);
}
.btn-nav.outline {
  background: transparent; color: var(--yellow); border: 2px solid var(--yellow);
}
.btn-nav.outline:hover { background: var(--yellow); color: var(--blue-dark); }

/* Blinking coupon button */
.blink-btn {
  display: inline-block; padding: 10px 20px; border-radius: 4px;
  font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase; text-decoration: none;
  color: var(--blue-dark) !important;
  animation: blinkBg 1.2s infinite alternate; cursor: pointer;
}
@keyframes blinkBg {
  0%   { background-color: var(--yellow); }
  50%  { background-color: #fff; }
  100% { background-color: var(--blue-mid); color: #fff !important; }
}

/* =============================================================
   MOBILE DRAWER
   ============================================================= */

/* Overlay */
#drawerOverlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1999;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
#drawerOverlay.active { display: block; }

/* Drawer panel */
#mobileDrawer {
  position: fixed;
  top: 0; right: -105%;
  width: 300px; max-width: 88vw;
  height: 100%; height: 100dvh;
  background: var(--blue-dark);
  border-left: 3px solid var(--yellow);
  z-index: 2000;
  transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(0,0,0,0.5);
}
#mobileDrawer.open { right: 0; }

/* Drawer header (sticky top) */
.drawer-header {
  display: flex; align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,183,0,0.18);
  background: rgba(0,0,0,0.25);
  position: sticky; top: 0; z-index: 10; flex-shrink: 0;
}
.drawer-logo { height: 34px; border-radius: 5px; }
.drawer-title {
  font-family: 'Raleway', sans-serif; font-size: 13.5px; font-weight: 900;
  color: var(--yellow); text-transform: uppercase; letter-spacing: 0.5px;
  margin-left: 10px; flex: 1;
}
.drawer-close-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,183,0,0.12); border: 1.5px solid rgba(255,183,0,0.35);
  color: var(--yellow); font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; flex-shrink: 0;
}
.drawer-close-btn:hover { background: var(--yellow); color: var(--blue-dark); }

/* Drawer nav links */
.drawer-nav { flex: 1; padding: 6px 0; }
.drawer-link {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 20px; color: rgba(255,255,255,0.75);
  text-decoration: none; font-family: 'Raleway', sans-serif;
  font-size: 13.5px; font-weight: 700; letter-spacing: 0.2px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.2s;
}
.drawer-link:hover { color: var(--yellow); background: rgba(255,183,0,0.07); padding-left: 28px; }
.drawer-link i { font-size: 16px; color: var(--yellow); width: 22px; text-align: center; flex-shrink: 0; }

/* Drawer CTA buttons */
.drawer-ctas {
  padding: 14px 16px 12px;
  border-top: 1px solid rgba(255,183,0,0.15);
  display: flex; flex-direction: column; gap: 10px; flex-shrink: 0;
}
.drawer-cta-blink {
  display: block; text-align: center; padding: 12px 18px;
  font-family: 'Raleway', sans-serif; font-weight: 900;
  font-size: 13px; letter-spacing: 0.8px; text-transform: uppercase;
  border-radius: 10px; text-decoration: none; cursor: pointer;
  color: var(--blue-dark) !important;
  animation: blinkBg 1.3s infinite alternate;
}
.drawer-cta-outline {
  display: block; text-align: center; padding: 11px 18px;
  background: transparent; color: var(--yellow);
  border: 2px solid rgba(255,183,0,0.45);
  font-family: 'Raleway', sans-serif; font-weight: 800;
  font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase;
  border-radius: 10px; text-decoration: none; transition: all 0.2s;
}
.drawer-cta-outline:hover { background: var(--yellow); color: var(--blue-dark); }

/* Drawer contact strip */
.drawer-contact {
  background: rgba(0,0,0,0.25); padding: 14px 18px;
  display: flex; flex-direction: column; gap: 9px; flex-shrink: 0;
}
.drawer-contact a {
  display: flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,0.48); font-size: 12.5px;
  text-decoration: none; transition: color 0.2s;
}
.drawer-contact a:hover { color: var(--yellow); }
.drawer-contact i { color: var(--yellow); font-size: 14px; width: 16px; }

/* =============================================================
   HERO / BOOKING SECTION
   ============================================================= */
.main-section {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,183,0,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(255,183,0,0.05) 0%, transparent 45%),
    linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, #243580 100%);
  padding: 52px 24px 44px;
  position: relative; overflow: hidden;
}
.main-section::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,183,0,0.07) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

/* Hero text */
.hero-eyebrow {
  font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--yellow);
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--yellow); display: inline-block; }
.hero-title {
  font-family: 'Raleway', sans-serif; font-size: clamp(26px, 4vw, 38px);
  font-weight: 800; color: #fff; line-height: 1.18; margin-bottom: 10px;
}
.hero-title span { color: var(--yellow); }
.hero-sub { font-size: 14px; color: rgba(255,255,255,0.62); margin-bottom: 28px; line-height: 1.65; }

/* Trust badges */
.trust-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,183,0,0.25);
  border-radius: 50px; padding: 6px 14px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.85); letter-spacing: 0.3px;
}
.trust-badge i { color: var(--yellow); font-size: 13px; }

/* Booking box */
.booking-box {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,183,0,0.2);
  border-radius: 18px; padding: 6px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.tab-rail {
  display: flex; flex-direction: column; gap: 2px;
  background: rgba(0,0,0,0.15); border-radius: 12px; padding: 6px;
}
.tab-btn {
  display: flex; align-items: center; gap: 8px; padding: 10px 12px;
  border-radius: 8px; border: none; background: transparent;
  color: rgba(255,255,255,0.55); font-family: 'Raleway', sans-serif;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.3px;
  white-space: nowrap; cursor: pointer; transition: all 0.22s ease; text-align: left; width: 100%;
}
.tab-btn i { font-size: 14px; flex-shrink: 0; }
.tab-btn:hover { background: rgba(255,183,0,0.1); color: var(--yellow); }
.tab-btn.active { background: var(--yellow); color: var(--blue-dark) !important; box-shadow: 0 3px 12px rgba(255,183,0,0.35); }

.form-panel {
  background: rgba(255,255,255,0.04); border-radius: 12px; padding: 20px 18px; flex: 1;
}
.form-panel .fl {
  font-family: 'Raleway', sans-serif; font-size: 10.5px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.6);
  margin-bottom: 5px; display: block;
}
.form-panel > div { display: none; }
.form-panel > div.active-form { display: block; }

.search-btn {
  background: var(--yellow); color: var(--blue-dark); border: none; border-radius: 10px;
  padding: 13px 22px; font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 13px;
  letter-spacing: 0.6px; text-transform: uppercase; width: 100%;
  cursor: pointer; transition: all 0.25s ease; position: relative; overflow: hidden;
}
.search-btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%); transition: transform 0.4s;
}
.search-btn:hover::after { transform: translateX(100%); }
.search-btn:hover { background: #fff; color: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,183,0,0.45); }

/* Carousel wrapper */
.banner-wrap { border-radius: 16px; overflow: hidden; height: 100%; min-height: 300px; box-shadow: 0 12px 40px rgba(0,0,0,0.35); }
.banner-wrap .carousel { height: 100%; }
.banner-wrap .carousel-inner { height: 100%; }
.banner-wrap .carousel-inner img { height: 100%; object-fit: cover; }

/* =============================================================
   STATS BAR
   ============================================================= */
.stats-bar { background: var(--blue); padding: 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  text-align: center; padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.stat-item:hover { background: rgba(255,183,0,0.07); }
.stat-num {
  font-family: 'Raleway', sans-serif; font-size: 34px; font-weight: 800;
  color: var(--yellow); display: block; line-height: 1;
}
.stat-label { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 4px; }

/* =============================================================
   SECTION HEADINGS
   ============================================================= */
.section-eyebrow {
  font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase; color: var(--yellow);
  display: block; margin-bottom: 8px;
}
.section-heading {
  font-family: 'Raleway', sans-serif; font-size: clamp(22px, 3vw, 30px);
  font-weight: 800; color: var(--blue); margin-bottom: 8px; line-height: 1.25;
}
.section-heading span { color: var(--yellow); }
.section-desc { color: var(--muted); font-size: 14px; margin-bottom: 36px; }

/* =============================================================
   ABOUT SECTION
   ============================================================= */
.about-section { background: #fff; padding: 70px 0; }
.about-text { color: var(--muted); font-size: 15px; line-height: 1.85; text-align: justify; }
.feature-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-light); border-radius: 50px; padding: 8px 16px;
  font-size: 12.5px; font-weight: 600; color: var(--blue);
}
.feature-pill i { color: var(--yellow); }
.about-img-wrap { position: relative; padding: 16px 0 0 16px; }
.about-img-wrap::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: calc(100% - 20px); height: calc(100% - 20px);
  background: var(--yellow); border-radius: 16px; z-index: 0;
}
.about-img-wrap img { position: relative; z-index: 1; border-radius: 12px; width: 100%; display: block; }

/* =============================================================
   QUICK BOOKING (mobile)
   ============================================================= */
.quick-booking { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.qb-header {
  background: var(--blue); color: var(--yellow);
  font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 12px;
  letter-spacing: 1px; padding: 13px 16px; text-transform: uppercase;
}
.qb-item {
  display: block; padding: 13px 16px;
  font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 13px;
  color: var(--blue-dark); border-bottom: 1px solid rgba(26,46,110,0.07);
  background: #fff; text-decoration: none; transition: all 0.2s;
}
.qb-item:hover { background: var(--yellow); color: var(--blue-dark); }
.qb-item i { color: var(--yellow); margin-right: 6px; }
.qb-item:hover i { color: var(--blue-dark); }

/* =============================================================
   ROUTE CARDS
   ============================================================= */
.routes-section { background: var(--blue-light); padding: 64px 0; }
.routes-section.alt { background: #f8f9ff; }

.route-card {
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid rgba(26,46,110,0.07);
  box-shadow: 0 2px 12px rgba(26,46,110,0.06);
  transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex; flex-direction: column;
  height: 100%; overflow: hidden; position: relative;
}
.route-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--yellow);
  box-shadow: 0 22px 52px rgba(255,183,0,0.2), 0 2px 8px rgba(26,46,110,0.08);
}
.route-card-stripe {
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  border-radius: 20px 20px 0 0;
  opacity: 0; transition: opacity 0.3s ease; flex-shrink: 0;
}
.route-card:hover .route-card-stripe { opacity: 1; }
.route-card-body { padding: 22px 22px 14px; flex: 1; display: flex; flex-direction: column; }
.route-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.route-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-light));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(255,183,0,0.4);
}
.route-icon i { font-size: 18px; color: var(--blue-dark); }
.route-cities {
  font-family: 'Raleway', sans-serif; font-weight: 900; font-size: 13px;
  color: var(--blue); line-height: 1.4; letter-spacing: 0.3px; text-transform: uppercase;
}
.route-arrow-icon { display: inline-block; color: var(--yellow); margin: 0 3px; font-size: 11px; }
.route-sep { height: 1px; background: linear-gradient(90deg, rgba(26,46,110,0.1), transparent); margin: 12px 0; flex-shrink: 0; }
.fare-tag { font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.fare-main { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.fare-price { font-family: 'Raleway', sans-serif; font-size: 32px; font-weight: 900; color: var(--blue-dark); line-height: 1; letter-spacing: -1px; }
.fare-strike { text-decoration: line-through; color: #bbb; font-size: 14px; font-weight: 500; }
.fare-badge { display: inline-flex; align-items: center; gap: 3px; background: #dcfce7; color: #15803d; font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 50px; }
.trip-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--blue-light); color: var(--blue);
  font-size: 10px; font-weight: 700; padding: 4px 11px;
  border-radius: 50px; letter-spacing: 0.5px; text-transform: uppercase; margin-top: 12px;
}
.trip-chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); display: inline-block; }
.route-card-cta { padding: 0 22px 20px; }
.book-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 11px 0;
  background: var(--blue); color: #fff; border-radius: 12px;
  font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 12.5px;
  letter-spacing: 0.6px; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.22s ease;
}
.book-btn i { font-size: 15px; transition: transform 0.2s; }
.route-card:hover .book-btn { background: var(--yellow); color: var(--blue-dark); }
.route-card:hover .book-btn i { transform: translateX(5px); }

/* =============================================================
   REVIEWS SECTION
   ============================================================= */
.reviews-section { background: var(--blue-dark); padding: 70px 0; position: relative; overflow: hidden; }
.reviews-section::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,183,0,0.08), transparent 70%); border-radius: 50%;
}
.review-track-outer { overflow: hidden; position: relative; }
.review-track { display: flex; gap: 20px; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform; }
.review-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,183,0,0.15);
  border-radius: var(--radius); padding: 26px 24px;
  min-width: 300px; max-width: 300px; flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s; backdrop-filter: blur(6px);
}
.review-card.active { border-color: rgba(255,183,0,0.5); background: rgba(255,183,0,0.06); }
.review-stars { color: var(--yellow); font-size: 15px; margin-bottom: 10px; }
.review-text { color: rgba(255,255,255,0.78); font-size: 13.5px; line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 16px; color: var(--blue-dark); flex-shrink: 0;
}
.review-name { font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700; color: #fff; }
.review-trip { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 2px; }
.review-nav { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.rev-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 2px solid rgba(255,183,0,0.4);
  background: transparent; color: var(--yellow); font-size: 16px;
  cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center;
}
.rev-btn:hover { background: var(--yellow); color: var(--blue-dark); }
.review-dots { display: flex; gap: 6px; }
.rdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,183,0,0.3); cursor: pointer; transition: all 0.25s; }
.rdot.active { background: var(--yellow); width: 22px; border-radius: 4px; }
.review-skeleton { background: rgba(255,255,255,0.05); border-radius: var(--radius); padding: 26px 24px; min-width: 300px; max-width: 300px; }
.skel-line {
  height: 12px;
  background: linear-gradient(90deg, rgba(255,255,255,0.06) 25%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.06) 75%);
  background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 4px; margin-bottom: 8px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.rating-summary { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.rating-big { font-family: 'Raleway', sans-serif; font-size: 52px; font-weight: 800; color: var(--yellow); line-height: 1; }
.rating-info { flex: 1; }
.rating-stars-row { color: var(--yellow); font-size: 18px; margin-bottom: 4px; }
.rating-count { color: rgba(255,255,255,0.5); font-size: 13px; }
.rating-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; font-size: 12px; color: rgba(255,255,255,0.6); }
.rating-bar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--yellow); border-radius: 3px; }

/* =============================================================
   CALL / CONTACT SECTION
   ============================================================= */
.call-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 72px 0 0; position: relative; overflow: hidden;
}
.call-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,183,0,0.09), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.call-eyebrow {
  font-family: 'Raleway', sans-serif; font-size: 10.5px; font-weight: 800;
  letter-spacing: 3.5px; text-transform: uppercase; color: var(--yellow);
  display: block; margin-bottom: 12px;
}
.call-heading {
  font-family: 'Raleway', sans-serif; font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 18px;
}
.call-heading span { color: var(--yellow); }
.call-body { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.85; margin-bottom: 28px; }
.call-contacts { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.call-contact-pill {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,183,0,0.2);
  border-radius: 12px; padding: 12px 18px; text-decoration: none; transition: all 0.22s; max-width: 400px;
}
.call-contact-pill:hover { background: rgba(255,183,0,0.1); border-color: rgba(255,183,0,0.5); transform: translateX(4px); }
.call-pill-icon {
  width: 38px; height: 38px; border-radius: 10px; background: var(--yellow);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.call-pill-icon i { font-size: 17px; color: var(--blue-dark); }
.call-pill-label { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; }
.call-pill-value { font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 15px; color: #fff; }
.call-social { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.call-social-label { font-size: 11px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1px; }
.call-social-icon {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1.5px solid rgba(255,183,0,0.3); background: rgba(255,255,255,0.05);
  color: var(--yellow); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.22s;
}
.call-social-icon:hover { background: var(--yellow); color: var(--blue-dark); transform: translateY(-3px); box-shadow: 0 6px 18px rgba(255,183,0,0.3); }
.call-img-wrap { position: relative; display: flex; align-items: flex-end; justify-content: center; min-height: 340px; }
.call-img-bg {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 88%; height: 88%; background: rgba(255,183,0,0.06);
  border-radius: 24px 24px 0 0; border: 1px solid rgba(255,183,0,0.12);
}
.call-taxi-img { position: relative; z-index: 2; max-height: 360px; width: auto; filter: drop-shadow(0 12px 32px rgba(0,0,0,0.45)); transform: translateY(4px); }
.call-float-badge {
  position: absolute; z-index: 3; background: #fff;
  border-radius: 12px; padding: 10px 14px; display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}
.call-float-badge.badge-left { left: 0; bottom: 90px; animation: floatY 3s ease-in-out infinite; }
.call-float-badge.badge-right { right: 0; top: 20px; animation: floatY 3s ease-in-out infinite 1.5s; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.badge-icon { width: 34px; height: 34px; border-radius: 9px; background: var(--yellow); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.badge-icon i { font-size: 16px; color: var(--blue-dark); }
.badge-text-top { font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 900; color: var(--blue-dark); line-height: 1; }
.badge-text-bot { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--blue-dark); color: #bcc6e8;
  font-family: 'Nunito', sans-serif; font-size: 14px;
  border-top: 3px solid var(--yellow); position: relative; overflow: hidden;
}
.site-footer::before { content: ''; position: absolute; top: -80px; right: -80px; width: 350px; height: 350px; background: radial-gradient(circle, rgba(255,183,0,0.05) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.site-footer::after { content: ''; position: absolute; bottom: 40px; left: -60px; width: 250px; height: 250px; background: radial-gradient(circle, rgba(255,183,0,0.04) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.footer-top { padding: 52px 0 36px; position: relative; z-index: 1; }
.footer-heading { font-family: 'Raleway', sans-serif; font-weight: 900; font-size: 13px; color: var(--yellow); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.footer-heading::after { content: ''; flex: 1; height: 1px; background: rgba(255,183,0,0.2); }
.footer-brand-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,183,0,0.1); border: 1px solid rgba(255,183,0,0.25); border-radius: 50px; padding: 4px 14px; font-family: 'Raleway', sans-serif; font-size: 10.5px; font-weight: 800; color: var(--yellow); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.footer-brand-name { font-family: 'Raleway', sans-serif; font-size: 20px; font-weight: 900; color: #fff; letter-spacing: 0.5px; margin-bottom: 10px; line-height: 1.2; }
.footer-brand-name span { color: var(--yellow); }
.footer-desc { font-size: 13.5px; line-height: 1.85; color: rgba(188,198,232,0.8); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,183,0,0.3); border-radius: 10px; color: rgba(255,255,255,0.65); font-size: 16px; text-decoration: none; transition: all 0.25s ease; }
.social-link:hover { background: var(--yellow); border-color: var(--yellow); color: var(--blue-dark); transform: translateY(-3px); box-shadow: 0 6px 18px rgba(255,183,0,0.3); }
.contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 13.5px; color: rgba(188,198,232,0.85); line-height: 1.65; }
.contact-icon { width: 32px; height: 32px; background: rgba(255,183,0,0.1); border: 1px solid rgba(255,183,0,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--yellow); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.contact-item a { color: rgba(188,198,232,0.85); text-decoration: none; transition: color 0.2s; }
.contact-item a:hover { color: var(--yellow); }
.pay-wrap { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.pay-tag { display: inline-flex; align-items: center; gap: 4px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 5px 10px; font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,0.7); letter-spacing: 0.3px; }
.pay-tag i { color: var(--yellow); font-size: 13px; }
.service-link { display: flex; align-items: center; gap: 8px; padding: 7px 0; font-size: 13.5px; color: rgba(188,198,232,0.8); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.04); transition: all 0.2s; }
.service-link:hover { color: var(--yellow); padding-left: 4px; }
.service-link i { font-size: 10px; color: var(--yellow); opacity: 0.7; transition: opacity 0.2s, transform 0.2s; }
.service-link:hover i { opacity: 1; transform: translateX(3px); }
.hours-row { display: flex; align-items: center; gap: 10px; margin-top: 16px; background: rgba(255,183,0,0.07); border: 1px solid rgba(255,183,0,0.18); border-radius: 10px; padding: 10px 14px; }
.hours-row i { color: var(--yellow); font-size: 20px; }
.hours-label { font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 800; color: #fff; letter-spacing: 0.3px; }
.hours-sub { font-size: 11.5px; color: rgba(255,255,255,0.45); margin-top: 1px; }
.footer-divider { border: none; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,183,0,0.25), transparent); margin: 0; }
.footer-bottom { padding: 18px 0; position: relative; z-index: 1; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.copyright { font-size: 12.5px; color: rgba(255,255,255,0.4); line-height: 1.65; }
.copyright strong { color: var(--yellow); font-weight: 700; }
.copyright a { color: rgba(255,183,0,0.7); text-decoration: none; transition: color 0.2s; }
.copyright a:hover { color: var(--yellow); }
.design-by { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 50px; padding: 5px 14px; font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,0.35); letter-spacing: 0.3px; text-decoration: none; transition: all 0.25s; font-family: 'Raleway', sans-serif; }
.design-by span { color: var(--yellow); font-weight: 900; }
.design-by:hover { background: rgba(255,183,0,0.08); border-color: rgba(255,183,0,0.2); color: rgba(255,255,255,0.6); }
.design-by i { font-size: 13px; color: var(--yellow); }

/* Floating WhatsApp */
.wa-float { position: fixed; left: 18px; bottom: 24px; background: #25D366; color: #fff; text-decoration: none; border-radius: 50px; padding: 11px 20px; font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 13.5px; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 4px 20px rgba(37,211,102,0.45); z-index: 999; transition: all 0.22s; letter-spacing: 0.3px; animation: waGlow 2.2s infinite; }
.wa-float:hover { background: #1db954; color: #fff; transform: translateY(-3px); }
.wa-float i { font-size: 18px; }
@keyframes waGlow { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); } 50% { box-shadow: 0 4px 32px rgba(37,211,102,0.75); } }

/* Floating call button */
.call-float { position: fixed; right: 18px; bottom: 24px; width: 56px; height: 56px; border-radius: 50%; background: var(--blue); border: 3px solid var(--yellow); color: var(--yellow); font-size: 22px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(26,46,110,0.5); text-decoration: none; z-index: 999; transition: all 0.22s; animation: callGlow 2.2s infinite; }
.call-float:hover { background: var(--yellow); color: var(--blue-dark); transform: scale(1.1); }
@keyframes callGlow { 0%,100% { box-shadow: 0 0 0 0 rgba(255,183,0,0.5); } 50% { box-shadow: 0 0 0 10px rgba(255,183,0,0); } }

/* =============================================================
   ANIMATIONS
   ============================================================= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.5s ease forwards; }
.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; animation-fill-mode: forwards; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 991px) {
  .main-section { padding: 36px 16px; }
  .call-section { padding: 48px 0 0; }
  .call-float-badge { display: none; }
  .call-contact-pill { max-width: 100%; }
}
@media (max-width: 768px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .about-img-wrap::before { display: none; }
  .about-img-wrap { padding: 0; }
  .call-taxi-img { max-height: 240px; }
  .call-img-wrap { min-height: 260px; }
  .wa-float { font-size: 0; padding: 16px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .wa-float i { font-size: 22px; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-top { padding: 40px 0 28px; }
  .brand-main { font-size: 16px; }
  .brand-sub { font-size: 10px; }
  .logo-img { height: 42px; }
}
@media (max-width: 576px) {
  .main-section { padding: 24px 12px; }
}

/* Contact sub text (footer) */
.contact-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* Stats sup symbol */
.stat-sup {
  color: var(--yellow);
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 18px;
}

/* Reviews section — heading color override */
.review-heading-white { color: #fff !important; }

/* Reviews intro paragraph */
.review-intro-text {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Rating bar label width */
.rbar-label { width: 16px; display: inline-block; }

/* Call pill value small variant */
.call-pill-value-sm {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
}