/* ============================================================
   Tirumala Tirupati Taxi — Main Stylesheet
   Brand Colors: Navy Blue (#1e3a5f) + Golden Amber (#f5a623)
   ============================================================ */

:root {
  --primary: #1e3a5f;
  --primary-dark: #0d1b2a;
  --accent: #f5a623;
  --accent-dark: #d4891a;
  --light: #f8f9fa;
  --text: #333333;
  --text-muted: #666666;
  --border: #e0e0e0;
  --success: #28a745;
}

/* ---- Base ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', 'Lato', sans-serif;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Lato', 'Open Sans', sans-serif; }
a { text-decoration: none; transition: all 0.3s; }
img { max-width: 100%; height: auto; }

/* ---- Utility ---- */
.text-accent    { color: var(--accent); }
.text-primary-c { color: var(--primary); }
.bg-primary-c   { background-color: var(--primary); }
.bg-accent      { background-color: var(--accent); }
.fw-700         { font-weight: 700; }

/* ============================================================
   NAVBAR
   ============================================================ */
.main-nav {
  background: var(--primary);
  padding: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  z-index: 1050;
}
.main-nav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}
.main-nav .navbar-brand img {
  height: 88px;
  transition: height 0.3s;
  flex-shrink: 0;
}
.main-nav.scrolled .navbar-brand img { height: 62px; }
.brand-name {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.2px;
}
.brand-name span { color: var(--accent); display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }

.main-nav .nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  padding: 20px 14px !important;
  text-transform: uppercase;
  transition: color 0.3s;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active-nav { color: var(--accent) !important; }
.main-nav .navbar-toggler { border-color: rgba(255,255,255,0.5); }
.main-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Book Now Button in Nav */
.btn-book-now {
  background: var(--accent);
  color: #fff !important;
  border-radius: 5px;
  padding: 9px 22px !important;
  font-weight: 700;
  font-size: 0.85rem !important;
  text-transform: uppercase;
  margin-left: 10px;
}
.btn-book-now:hover { background: var(--accent-dark); color: #fff !important; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-accent {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  padding: 12px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 5px;
  transition: all 0.3s;
  letter-spacing: 0.3px;
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245,166,35,0.4);
}
.btn-outline-w {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 12px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 5px;
  transition: all 0.3s;
}
.btn-outline-w:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-primary-c {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  padding: 12px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 5px;
  transition: all 0.3s;
}
.btn-primary-c:hover { background: var(--primary-dark); color: #fff; border-color: var(--primary-dark); }

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding: 75px 0; }
.section-sm { padding: 50px 0; }
.section-title { text-align: center; margin-bottom: 55px; }
.section-title h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-title p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}
.section-title .divider {
  width: 55px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 15px auto 18px;
}
.bg-soft { background: #f0f4fb; }

/* ============================================================
   HERO
   ============================================================ */
.hero-home {
  background: linear-gradient(135deg, #0d1b2a 0%, #1e3a5f 55%, #2a5298 100%);
  padding: 100px 0 90px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-home::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-home::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(245,166,35,0.10) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-home .badge-pill {
  background: rgba(245,166,35,0.2);
  color: var(--accent);
  border: 1px solid rgba(245,166,35,0.5);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 18px;
}
.hero-home h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-home h1 span { color: var(--accent); }
.hero-home p.lead {
  font-size: 1.15rem;
  opacity: 0.88;
  margin-bottom: 35px;
  max-width: 560px;
}
.hero-quick-info {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-quick-info .info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 600;
}
.hero-quick-info .info-item i { color: var(--accent); font-size: 1.1rem; }

.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 35px;
  text-align: center;
  color: #fff;
}
.hero-card .phone-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  margin: 10px 0;
}
.hero-card .phone-number a { color: var(--accent); }
.hero-card h5 { font-weight: 700; font-size: 1rem; opacity: 0.9; }
.hero-card .availability {
  background: rgba(40,167,69,0.2);
  border: 1px solid rgba(40,167,69,0.5);
  color: #6fcf97;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-block;
  margin-top: 10px;
}
.hero-card .service-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  text-align: left;
}
.hero-card .service-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
}
.hero-card .service-list li:last-child { border-bottom: none; }
.hero-card .service-list li i { color: var(--accent); margin-right: 8px; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 4px 25px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  border-bottom: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.13);
  border-bottom-color: var(--accent);
}
.service-card .icon-wrap {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, rgba(245,166,35,0.12), rgba(30,58,95,0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.service-card .icon-wrap i { font-size: 2rem; color: var(--accent); }
.service-card h4 { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); }

/* Service card with image */
.service-card-img { padding: 0; overflow: hidden; }
.service-card-img .sc-img { width: 100%; height: 160px; overflow: hidden; }
.service-card-img .sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card-img:hover .sc-img img { transform: scale(1.07); }
.service-card-img .sc-body { padding: 22px 20px; text-align: center; }
.service-card-img .icon-wrap { margin-bottom: 12px; }
@media (max-width: 575px) {
  .service-card-img .sc-img { height: 120px; }
  .service-card-img .sc-body { padding: 16px 14px; }
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--primary); }
.why-section .section-title h2 { color: #fff; }
.why-section .section-title p { color: rgba(255,255,255,0.7); }
.why-section .divider { background: var(--accent); }

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  height: 100%;
  transition: background 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.1); }
.why-card .icon-box {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(245,166,35,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card .icon-box i { font-size: 1.4rem; color: var(--accent); }
.why-card h5 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 5px; }
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.72); margin: 0; }

/* ============================================================
   FLEET STRIP
   ============================================================ */
.fleet-img-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  height: 220px;
  position: relative;
}
.fleet-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fleet-img-card .fleet-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,27,42,0.92));
  color: #fff;
  padding: 20px 15px 12px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ============================================================
   POPULAR ROUTES
   ============================================================ */
.route-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-left: 4px solid var(--accent);
  transition: transform 0.2s;
}
.route-item:hover { transform: translateX(4px); }
.route-item i { color: var(--accent); font-size: 1.1rem; }
.route-item span { font-weight: 600; color: var(--primary); font-size: 0.92rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.07);
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-size: 6rem;
  color: rgba(245,166,35,0.12);
  position: absolute;
  top: -10px; left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card .stars { color: var(--accent); font-size: 1rem; margin-bottom: 12px; }
.testimonial-card p { font-style: italic; color: var(--text-muted); font-size: 0.92rem; line-height: 1.8; }
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.testimonial-card .author-avatar {
  width: 45px; height: 45px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}
.testimonial-card .author-name { font-weight: 700; color: var(--primary); font-size: 0.92rem; }
.testimonial-card .author-loc { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band { background: var(--accent); padding: 40px 0; }
.stat-item { text-align: center; color: #fff; }
.stat-item .stat-num { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.stat-item .stat-label { font-size: 0.88rem; font-weight: 600; opacity: 0.9; margin-top: 5px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 70px 0;
  text-align: center;
  color: #fff;
}
.cta-banner h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 15px; }
.cta-banner p { font-size: 1.05rem; opacity: 0.85; margin-bottom: 30px; }
.cta-phone {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  margin-bottom: 25px;
}
.cta-phone a { color: var(--accent); }

/* ============================================================
   PRICING TABLES
   ============================================================ */
.price-table-wrap {
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.price-table thead tr { background: var(--primary); }
.price-table thead th {
  color: var(--accent);
  padding: 14px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.price-table tbody tr:hover { background: #f0f4fb; }
.price-table tbody td { padding: 12px 18px; font-size: 0.92rem; color: var(--text); vertical-align: middle; }
.price-table tbody td:first-child { font-weight: 700; color: var(--primary); }
.price-table tfoot td { padding: 10px 18px; font-size: 0.8rem; color: var(--text-muted); background: #f8f9fa; }
.p-badge {
  background: var(--accent);
  color: #fff;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.77rem;
  font-weight: 700;
}
.price-note {
  background: #fff8e8;
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: #5a3a00;
  margin-top: 1.5rem;
}
.price-note a { color: var(--primary); font-weight: 700; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info-box {
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  padding: 35px;
  height: 100%;
}
.contact-info-box h4 { font-weight: 800; color: var(--accent); margin-bottom: 25px; font-size: 1.2rem; }
.ci-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.ci-item .ci-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: rgba(245,166,35,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-item .ci-icon i { font-size: 1.1rem; color: var(--accent); }
.ci-item .ci-text .ci-label { font-size: 0.8rem; opacity: 0.7; }
.ci-item .ci-text .ci-value { font-weight: 700; font-size: 0.95rem; }
.ci-item .ci-text a { color: #fff; }
.ci-item .ci-text a:hover { color: var(--accent); }

.contact-form-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
  padding: 35px;
}
.contact-form-box h4 { font-weight: 800; color: var(--primary); margin-bottom: 25px; }
.form-label { font-weight: 600; font-size: 0.88rem; color: var(--primary); }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.9rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,58,95,0.12);
}
.btn-wa-submit {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 13px 30px;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-wa-submit:hover { background: #1ebe5d; transform: translateY(-1px); }

.contact-call-btn {
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 8px;
}
.contact-call-btn:hover { background: var(--accent-dark); color: #fff; }
.contact-wa-btn {
  background: #25D366;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 8px;
}
.contact-wa-btn:hover { background: #1ebe5d; color: #fff; }

/* ============================================================
   INFO HIGHLIGHTS (About section)
   ============================================================ */
.info-highlight {
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  padding: 30px;
}
.info-highlight h4 { color: var(--accent); font-weight: 800; margin-bottom: 15px; }
.check-list-light { list-style: none; padding: 0; }
.check-list-light li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text);
}
.check-list-light li:last-child { border-bottom: none; }
.check-list-light li i { color: var(--success); margin-top: 3px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-card {
  background: #fff;
  border-radius: 10px;
  padding: 22px 25px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-left: 4px solid var(--accent);
  transition: box-shadow 0.2s;
}
.faq-card:last-child { margin-bottom: 0; }
.faq-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.faq-card .faq-q {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 800;
  font-size: 0.97rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.faq-card .faq-q i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.faq-card .faq-a { font-size: 0.9rem; color: var(--text-muted); margin: 0; padding-left: 28px; line-height: 1.75; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 65px 0 0;
}
footer h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
footer p { font-size: 0.9rem; line-height: 1.8; }
footer a { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
footer a:hover { color: var(--accent); }

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.footer-links li i { color: var(--accent); font-size: 0.75rem; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-item i { color: var(--accent); margin-top: 3px; font-size: 0.95rem; }
.footer-contact-item span { font-size: 0.88rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}
.float-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  color: #fff;
  font-size: 1.9rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.float-whatsapp a:hover { transform: scale(1.1); box-shadow: 0 8px 25px rgba(0,0,0,0.4); }

.float-call {
  position: fixed;
  bottom: 95px;
  right: 28px;
  z-index: 9999;
}
.float-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: var(--accent);
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.float-call a:hover { transform: scale(1.1); }

/* ============================================================
   DEVOTIONAL AUDIO PLAYER
   ============================================================ */
.audio-widget {
  position: fixed;
  bottom: 28px;
  left: 20px;
  z-index: 9998;
}
.audio-widget .audio-pill {
  background: rgba(30,58,95,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245,166,35,0.4);
  border-radius: 30px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.audio-widget .audio-play-btn {
  background: var(--accent);
  border: none;
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  cursor: pointer;
  transition: background 0.3s;
  flex-shrink: 0;
}
.audio-widget .audio-play-btn:hover { background: var(--accent-dark); }
.audio-widget .audio-info { display: flex; flex-direction: column; line-height: 1.3; }
.audio-widget .audio-title { font-size: 0.78rem; font-weight: 700; color: #fff; }
.audio-widget .audio-sub { font-size: 0.68rem; color: rgba(255,255,255,0.6); }
.audio-widget .audio-close-btn {
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer; padding: 0 2px;
  font-size: 0.75rem; line-height: 1;
  transition: color 0.2s;
}
.audio-widget .audio-close-btn:hover { color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .main-nav .nav-link { padding: 10px 14px !important; }
  .hero-home { padding: 70px 0 60px; }
  .hero-home h1 { font-size: 2.2rem; }
}
@media (max-width: 767px) {
  .hero-home { padding: 55px 0 50px; }
  .hero-home h1 { font-size: 1.75rem; }
  .hero-home p.lead { font-size: 1rem; }
  .hero-quick-info { gap: 15px; }
  .section { padding: 50px 0; }
  .section-title { margin-bottom: 35px; }
  .section-title h2 { font-size: 1.6rem; }
  .cta-banner h2 { font-size: 1.6rem; }
  .cta-phone { font-size: 1.5rem; }
  .stat-item .stat-num { font-size: 1.8rem; }
  .contact-info-box, .contact-form-box { margin-bottom: 25px; }
}
@media (max-width: 480px) {
  .btn-accent, .btn-outline-w, .btn-primary-c { padding: 10px 20px; font-size: 0.88rem; }
}

/* 5-column fleet grid */
@media (min-width: 992px) {
  .col-lg-2-4 { flex: 0 0 auto; width: 20%; }
}

/* ============================================================
   MOBILE FIRST IMPROVEMENTS
   ============================================================ */
@media (max-width: 575px) {
  .brand-name { font-size: 0.82rem; }
  .hero-card { padding: 22px 18px; }
  .hero-card .phone-number { font-size: 1.3rem; }
  .fleet-img-card { height: 160px; }
  .fleet-img-card .fleet-label { font-size: 0.82rem; padding: 14px 10px 8px; }
  .price-table-wrap { border-radius: 8px; }
  .contact-info-box { padding: 24px 18px; }
  .contact-form-box { padding: 24px 18px; }
  .why-card { padding: 16px; }
  .testimonial-card { padding: 22px 18px; }
  .section-title h2 { font-size: 1.45rem; }
  .stats-band .stat-num { font-size: 1.6rem; }
  .cta-banner h2 { font-size: 1.4rem; }
  .cta-phone { font-size: 1.3rem; }
}

/* Ensure price tables scroll on mobile */
.price-table-wrap {
  -webkit-overflow-scrolling: touch;
}

/* Route items compact on mobile */
@media (max-width: 575px) {
  .route-item { padding: 10px 14px; font-size: 0.88rem; }
  .faq-card { padding: 16px 18px; }
  .faq-card .faq-a { padding-left: 20px; }
}
