@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800;900&display=swap');

/* ============================================
   BALAJI TAXI — Master Stylesheet
   v1.0 — built for Elementor + standalone HTML
============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:        #FF6B1A;
  --orange-d:      #E55A0E;
  --orange-l:      #FF8A47;
  --cyan:          #00BCE5;
  --cyan-d:        #00A3CC;
  --cyan-l:        #4DD0EE;
  --navy:          #1A2547;
  --navy-d:        #111B3A;
  --navy-mid:      #2A3970;
  --green:         #16A34A;
  --green-l:       #DCFCE7;
  --yellow:        #FFF7E6;
  --yellow-d:      #FFE9A8;
  --highlight-bg:  #FFE45C;
  --soft:          #6B7BA4;
  --text:          #1A2547;
  --text-light:    #5A6890;
  --border:        #E5E9F2;
  --off:           #F4F7FB;
  --white:         #ffffff;
  --r:             14px;
  --r-sm:          10px;
  --f:             'Plus Jakarta Sans', sans-serif;
  --shadow-card:   0 6px 24px rgba(27,35,88,.06);
  --shadow-card-h: 0 14px 40px rgba(27,35,88,.10);
}

body { font-family: var(--f); color: var(--text); background: var(--white); line-height: 1.5; }
a { color: inherit; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================
   1. TOP BAR (orange announcement strip)
============================================ */
.bt-topbar {
  background: var(--orange);
  color: #fff;
  font-family: var(--f);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}
.bt-topbar a { color: #fff; text-decoration: none; }
.bt-topbar a:hover { opacity: .88; }
.bt-topbar-left { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.bt-topbar-phone { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.bt-topbar-phone svg { width: 13px; height: 13px; }
.bt-topbar-msg { display: inline-flex; align-items: center; gap: 6px; opacity: .96; }
.bt-topbar-msg svg { width: 12px; height: 12px; opacity: .9; }
.bt-topbar-social { display: flex; align-items: center; gap: 14px; }
.bt-topbar-social a { display: inline-flex; align-items: center; justify-content: center; opacity: .95; transition: opacity .2s, transform .2s; }
.bt-topbar-social a:hover { opacity: 1; transform: translateY(-1px); }
.bt-topbar-social svg { width: 15px; height: 15px; fill: #fff; }
@media (max-width: 720px) {
  .bt-topbar { font-size: 12px; }
  .bt-topbar-msg { display: none; }
}

/* ============================================
   2. NAVBAR
============================================ */
nav.bt-nav {
  background: #fff;
  height: 72px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--f);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  position: relative;
  z-index: 100;
}
.bt-nav-logo img { height: 52px; display: block; }
.bt-nav-logo-fb { font-size: 22px; font-weight: 800; color: var(--navy); display: none; }
.bt-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.bt-nav-links > li { position: relative; }
.bt-nav-links a, .bt-nav-links button {
  text-decoration: none;
  font-family: var(--f);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.bt-nav-links a.active,
.bt-nav-links a:hover,
.bt-nav-links button:hover { color: var(--cyan); }
.bt-nav-links .has-arrow { display: inline-flex; align-items: center; gap: 5px; }
.bt-nav-links .has-arrow::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px,-1px);
  opacity: .6;
}
.bt-nav-cta {
  background: var(--cyan);
  color: #fff !important;
  border-radius: 50px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .2s, transform .15s, box-shadow .2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,188,229,.32);
}
.bt-nav-cta:hover { background: var(--cyan-d); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,188,229,.42); }
.bt-nav-cta svg { width: 13px; height: 13px; fill: currentColor; }


/* Submenu */
.bt-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  box-shadow: 0 16px 40px rgba(27,35,88,.12);
  min-width: 220px;
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, transform .2s, visibility 0s linear .2s;
  z-index: 200;
}
.bt-nav-links > li:hover .bt-submenu,
.bt-nav-links > li.open .bt-submenu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .2s, transform .2s, visibility 0s linear 0s;
}
.bt-submenu li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
}
.bt-submenu li a:hover { background: rgba(0,188,229,.08); color: var(--cyan); }

/* Hamburger */
.bt-nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.bt-nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .2s; }
.bt-nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bt-nav-hamburger.active span:nth-child(2) { opacity: 0; }
.bt-nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .bt-nav-hamburger { display: flex; }
  .bt-nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: #fff; padding: 14px 5%; gap: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    display: none;
  }
  .bt-nav-links.open { display: flex; }
  .bt-nav-links > li { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .bt-nav-links > li:last-child { border-bottom: none; }
  .bt-submenu { position: static; transform: none !important; box-shadow: none; border: none; padding: 8px 0 0 12px; opacity: 1; visibility: visible; pointer-events: auto; display: none; }
  .bt-nav-links > li.open .bt-submenu { display: block; }
  .bt-nav-cta { display: none; }
}

/* ============================================
   3. TRUST STRIP (yellow/cream bar)
============================================ */
.bt-trust {
  background: var(--yellow);
  border-bottom: 1px solid #F5E8C4;
  padding: 12px 5%;
  width: 100%;
}
.bt-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  font-family: var(--f);
  font-size: 13.5px;
  font-weight: 600;
  color: #6B4F18;
}
.bt-trust-item { display: inline-flex; align-items: center; gap: 8px; }
.bt-trust-stars { color: #F59E0B; letter-spacing: 1px; font-size: 13px; }
.bt-trust-icon { font-size: 14px; }
.bt-trust-divider { width: 4px; height: 4px; background: #C9A559; border-radius: 50%; }
@media (max-width: 720px) {
  .bt-trust-inner { gap: 14px; font-size: 12px; }
  .bt-trust-divider { display: none; }
}

/* ============================================
   4. HERO
============================================ */
.bt-hero {
  background: #F7FAFD;
  padding: 56px 5% 72px;
  width: 100%;
  font-family: var(--f);
  position: relative;
  overflow: hidden;
}
.bt-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.bt-hero-left { padding-top: 8px; }
.bt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-l);
  border: 1px solid #BBF5C9;
  color: #166534;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.bt-hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: bt-blink 1.6s infinite;
}
@keyframes bt-blink { 0%,100%{opacity:1} 50%{opacity:.35} }

.bt-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.8vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.2px;
  color: var(--text);
  margin-bottom: 22px;
}
.bt-hero h1 .bt-h-blue { color: var(--cyan); }
.bt-hero h1 .bt-h-price {
  background: var(--highlight-bg);
  color: var(--cyan-d);
  padding: 0 12px;
  border-radius: 6px;
  font-style: italic;
  font-weight: 700;
  display: inline-block;
  line-height: 1.05;
}
.bt-hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 530px;
  margin-bottom: 26px;
}
.bt-hero-sub strong { color: var(--text); font-weight: 700; }
.bt-hero-sub .bt-emph { color: var(--text); font-weight: 600; }

.bt-hero-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; margin-bottom: 30px; }
.bt-hero-feat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}
.bt-hero-feat::before {
  content: '✓';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bt-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.bt-btn-primary {
  background: linear-gradient(90deg, #FF8A3D 0%, #FF6B1A 100%)!important;
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--f);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
box-shadow: 0 8px 22px rgb(224 57 0 / 36%) !important;
  transition: transform .15s, box-shadow .2s, background .2s;
}
.bt-btn-primary:hover { transform: translateY(-2px); background: var(--cyan-d); box-shadow: 0 12px 28px rgba(0,188,229,.5); }
.bt-btn-primary::after { content: '→'; font-size: 16px; }
.bt-btn-outline {
  background: #fff;
  color: var(--text) !important;
  border: 1.5px solid #ff5722;
  border-radius: 50px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--f);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .15s;
}
.bt-btn-outline:hover { background: #F1FAFE; transform: translateY(-1px); }
.bt-btn-outline svg { width: 14px; height: 14px; fill: #ff5722; }

.bt-hero-social-proof {
  display: flex; align-items: center; gap: 12px;
  margin-top: 8px;
}
.bt-avatars { display: flex; }
.bt-avatars > div {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  color: #fff;
}
.bt-avatars > div:first-child { margin-left: 0; }
.bt-avatars > div:nth-child(1) { background: #FF6B1A; }
.bt-avatars > div:nth-child(2) { background: #00BCE5; }
.bt-avatars > div:nth-child(3) { background: #16A34A; }
.bt-avatars > div:nth-child(4) { background: #F59E0B; }
.bt-hero-sp-text { font-size: 13px; color: var(--text-light); }
.bt-hero-sp-text strong { color: var(--text); font-weight: 800; }

/* Hero Right — Booking Form Card */
.bt-hero-right { position: relative; }
.bt-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 26px 24px;
  box-shadow: 0 14px 40px rgba(27,35,88,.08);
  position: relative;
  overflow: hidden;
}
.bt-form-ribbon {
  background: #FFE9A8;
  color: #92520C;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 6px 12px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}
.bt-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.bt-form-card-sub {
  font-size: 13.5px;
  color: var(--text-light);
  margin-bottom: 18px;
}
.bt-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.bt-form-group { display: flex; flex-direction: column; }
.bt-form-group.full { grid-column: 1 / -1; }
.bt-form-group label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  margin-top: 10px;
}
.bt-form-group .bt-input-wrap { position: relative; }
.bt-form-group .bt-input-icon {
  position: absolute;
  left: 12px; top: 25px;
  transform: translateY(-50%);
  font-size: 13px;
  color: var(--text-light);
  pointer-events: none;
	z-index: 9;
}
.bt-form-group input,
.bt-form-group select {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 11px 12px 11px 32px;
  font-family: var(--f);
  font-size: 13.5px;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.bt-form-group input::placeholder { color: #A0A8BC; }
.bt-form-group input:focus,
.bt-form-group select:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,188,229,.12); }
.bt-form-group input[type="date"],
.bt-form-group input[type="time"] { padding-left: 12px; }
.bt-form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%236B7BA4' d='M5 6L0 0h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 30px; }
.bt-form-submit {
  width: 100%;
background: linear-gradient(90deg, #FF8A3D 0%, #FF6B1A 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px;
  font-family: var(--f);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  box-shadow:0 8px 22px rgb(224 57 0 / 36%);
  transition: background .2s, transform .15s;
}
.bt-form-submit:hover { background: var(--cyan-d); transform: translateY(-1px); }
.bt-form-submit svg { width: 16px; height: 16px; fill: #fff; }
.bt-form-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.bt-form-note::before { content: '🛡'; opacity: .7; }

@media (max-width: 980px) {
  .bt-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .bt-hero-features { grid-template-columns: 1fr; }
}

/* ============================================
   Shared Section Heading
============================================ */
.bt-section {
  padding: 80px 5%;
  width: 100%;
  font-family: var(--f);
}
.bt-section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.bt-stag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.bt-sh {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.5px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.bt-ss {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================
   5. POPULAR ROUTES
============================================ */
.bt-routes { background: #fff; padding: 60px 5% 80px; }
.bt-routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.bt-route-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 22px 20px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.bt-route-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-l));
}
.bt-route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-h); border-color: var(--cyan-l); }
.bt-route-from {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.bt-route-pair {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.bt-route-pair .bt-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: rgba(0,188,229,.1);
  color: var(--cyan);
  border-radius: 50%;
  font-size: 12px;
  font-family: var(--f);
  font-weight: 700;
}
.bt-route-start {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 4px;
}
.bt-route-price {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 16px;
}
.bt-route-price .bt-currency { font-weight: 600; margin-right: 1px; }
.bt-route-meta {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: var(--text-light);
  border-top: 1px dashed var(--border);
  padding-top: 12px;
}
.bt-route-meta span { display: inline-flex; align-items: center; gap: 5px; }

@media (max-width: 980px) { .bt-routes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bt-routes-grid { grid-template-columns: 1fr; } }

/* ============================================
   6. PROMISES / Three Promises (Why)
============================================ */
.bt-promises { background: #F4F7FB; }
.bt-promises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.bt-promise-card {
  background: #fff;
  border-radius: var(--r);
  padding: 30px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid var(--border);
}
.bt-promise-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-h); }
.bt-promise-num {
  position: absolute;
  top: 26px; right: 26px;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: rgba(0,188,229,.15);
  line-height: 1;
}
.bt-promise-icon {
  width: 48px; height: 48px;
  background: var(--cyan);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.bt-promise-icon svg { width: 24px; height: 24px; fill: #fff; }
.bt-promise-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.bt-promise-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
}

@media (max-width: 900px) { .bt-promises-grid { grid-template-columns: 1fr; } }

/* ============================================
   7. HOW IT WORKS
============================================ */
.bt-how { background: #F4F7FB; padding-top: 0; }
.bt-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.bt-how-card {
  background: #fff;
  border-radius: var(--r);
  padding: 32px 28px 30px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.bt-how-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-h); }
.bt-how-step {
  width: 36px; height: 36px;
  background: var(--cyan);
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--f);
  box-shadow: 0 4px 14px rgba(0,188,229,.34);
}
.bt-how-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.bt-how-card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.7;
}

@media (max-width: 800px) { .bt-how-grid { grid-template-columns: 1fr; } }

/* ============================================
   8. FLEET
============================================ */
.bt-fleet { background: #fff; }
.bt-fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.bt-fleet-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 22px 20px;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.bt-fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-h); border-color: var(--cyan-l); }
.bt-fleet-img {
  height: 90px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
}
.bt-fleet-img img { max-height: 100%; max-width: 90%; object-fit: contain; }
.bt-fleet-img .bt-fleet-fb { font-size: 60px; line-height: 1; }
.bt-fleet-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.bt-fleet-meta {
  font-size: 12.5px;
  color: var(--text-light);
  margin-bottom: 14px;
}
.bt-fleet-price {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cyan);
}
.bt-fleet-price .bt-onwards {
  font-family: var(--f);
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  margin-left: 4px;
}

@media (max-width: 980px) { .bt-fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .bt-fleet-grid { grid-template-columns: 1fr; } }

/* ============================================
   9. TESTIMONIALS / Customer Reviews
============================================ */
.bt-testi { background: #fff; }
.bt-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.bt-testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px 24px 22px;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.bt-testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-h); border-color: var(--cyan-l); }
.bt-testi-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.bt-testi-stars { color: #F59E0B; letter-spacing: 2px; font-size: 14px; }
.bt-testi-quote-icon { color: var(--text-light); opacity: .35; font-size: 28px; font-family: 'Playfair Display', serif; line-height: 0.8; font-weight: 700; }
.bt-testi-quote {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
  min-height: 88px;
}
.bt-testi-author { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.bt-testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}
.bt-testi-name { font-size: 13.5px; font-weight: 700; color: var(--text); }
.bt-testi-role { font-size: 12px; color: var(--text-light); }
.bt-testi-google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--text-light);
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}
.bt-testi-google svg { width: 13px; height: 13px; }

@media (max-width: 900px) { .bt-testi-grid { grid-template-columns: 1fr; } }

/* ============================================
   10. FAQ
============================================ */
.bt-faq { background: #fff; }
.bt-faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bt-faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color .2s, box-shadow .2s;
  overflow: hidden;
}
.bt-faq-item.open { border-color: var(--cyan-l); box-shadow: 0 8px 28px rgba(27,35,88,.06); }
.bt-faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: var(--f);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
}
.bt-faq-toggle {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cyan);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  transition: transform .25s, background .2s;
}
.bt-faq-item.open .bt-faq-toggle { transform: rotate(45deg); background: var(--orange); }
.bt-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 22px;
}
.bt-faq-item.open .bt-faq-a { max-height: 320px; padding-bottom: 18px; }
.bt-faq-a p { font-size: 14px; color: var(--text-light); line-height: 1.75; }

/* ============================================
   11. CTA Banner (orange w/ countdown)
============================================ */
.bt-cta {
  background: var(--orange);
  background: linear-gradient(135deg, var(--orange-l) 0%, var(--orange) 50%, var(--orange-d) 100%);
  padding: 56px 5%;
  width: 100%;
  font-family: var(--f);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.bt-cta::before {
  content: ''; position: absolute;
  top: -150px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.bt-cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.bt-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.2);
  color: #fff;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.bt-cta-badge::before { content: '⚡'; }
.bt-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.5px;
  line-height: 1.18;
  margin-bottom: 12px;
}
.bt-cta h2 .bt-cta-hl {
  background: var(--highlight-bg);
  color: var(--orange-d);
  padding: 0 10px;
  border-radius: 6px;
  font-style: italic;
}
.bt-cta-sub {
  font-size: 14.5px;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 580px;
}
.bt-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.bt-cta-btn-dark {
  background: var(--navy-d);
  color: #fff !important;
  border-radius: 50px;
  padding: 13px 26px;
  font-family: var(--f);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .2s, transform .15s;
}
.bt-cta-btn-dark:hover { background: #000; transform: translateY(-1px); }
.bt-cta-btn-wa {
  background: var(--green);
  color: #fff !important;
  border-radius: 50px;
  padding: 13px 26px;
  font-family: var(--f);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .2s, transform .15s;
}
.bt-cta-btn-wa:hover { background: #15803D; transform: translateY(-1px); }

/* Countdown */
.bt-countdown-wrap {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r);
  padding: 18px 22px;
  backdrop-filter: blur(6px);
}
.bt-countdown-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  text-align: center;
  margin-bottom: 12px;
}
.bt-countdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.bt-cd-unit {
  background: var(--navy-d);
  color: #fff;
  border-radius: 10px;
  padding: 14px 8px;
  text-align: center;
}
.bt-cd-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.bt-cd-lbl {
  font-size: 10px;
  letter-spacing: .18em;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .bt-cta-inner { grid-template-columns: 1fr; }
}

/* ============================================
   12. FOOTER
============================================ */
footer.bt-footer {
  background: var(--navy-d);
  color: rgba(255,255,255,.7);
  padding: 56px 5% 0;
  font-family: var(--f);
  width: 100%;
}
.bt-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.bt-footer-brand img { height: 56px; margin-bottom: 16px; }
.bt-footer-brand .bt-footer-logo-fb { font-size: 22px; font-weight: 800; color: #fff; display: none; }
.bt-footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  max-width: 340px;
}
.bt-footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.bt-footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.bt-footer-col ul li {
  font-size: 13.5px;
  color: rgba(255,255,255,.62);
  display: flex; align-items: center;
  gap: 7px;
}
.bt-footer-col ul li a {
  color: rgba(255,255,255,.62);
  text-decoration: none;
  transition: color .2s;
}
.bt-footer-col ul li a:hover { color: var(--cyan-l); }
.bt-footer-col ul li .bt-fi { width: 14px; opacity: .65; display: inline-block; flex-shrink: 0; }

.bt-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.bt-footer-copy { font-size: 12.5px; color: rgba(255,255,255,.4); }
.bt-footer-bottom-links { display: flex; list-style: none; gap: 22px; padding: 0; }
.bt-footer-bottom-links li a {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}
.bt-footer-bottom-links li a:hover { color: var(--cyan-l); }

@media (max-width: 800px) {
  .bt-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .bt-footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   Floating WhatsApp button (utility)
============================================ */
.bt-wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(22,163,74,.45);
  z-index: 9999;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.bt-wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 38px rgba(22,163,74,.55); }
.bt-wa-float svg { width: 26px; height: 26px; fill: #fff; }

/* Elementor full-width fix */
.elementor-widget-balaji_topbar,
.elementor-widget-balaji_navbar,
.elementor-widget-balaji_trust,
.elementor-widget-balaji_hero,
.elementor-widget-balaji_routes,
.elementor-widget-balaji_promises,
.elementor-widget-balaji_how,
.elementor-widget-balaji_fleet,
.elementor-widget-balaji_testi,
.elementor-widget-balaji_faq,
.elementor-widget-balaji_cta,
.elementor-widget-balaji_footer {
  width: 100% !important;
  max-width: 100% !important;
}