/* ============================================================
   Go 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 {
  color: #fff !important;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 14px 0;
}
.main-nav .navbar-brand i { color: var(--accent); margin-right: 6px; }
.main-nav .navbar-brand span { color: var(--accent); }

.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 { color: var(--accent) !important; }
.main-nav .dropdown-menu {
  border: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  margin-top: 0;
}
.main-nav .dropdown-item {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--primary);
  padding: 9px 20px;
}
.main-nav .dropdown-item:hover { background: var(--accent); color: #fff; }
.main-nav .navbar-toggler { border-color: rgba(255,255,255,0.4); }
.main-nav .navbar-toggler-icon { filter: brightness(2); }

/* 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; }
.bg-dark-navy { background: var(--primary); }

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.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 Phone Card */
.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; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 65px 0;
  color: #fff;
  text-align: center;
}
.page-hero h1 { font-size: 2.3rem; font-weight: 800; margin-bottom: 10px; }
.page-hero p { font-size: 1.05rem; opacity: 0.85; }
.breadcrumb-custom {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.88rem;
}
.breadcrumb-custom a { color: var(--accent); }
.breadcrumb-custom span { color: rgba(255,255,255,0.6); }

/* ============================================================
   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 .read-more {
  display: inline-block;
  margin-top: 15px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
}
.service-card .read-more i { transition: transform 0.3s; }
.service-card:hover .read-more i { transform: translateX(4px); }

/* ============================================================
   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; }

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.14);
}
.pricing-card.featured { border: 2px solid var(--accent); }
.pricing-card .pc-header {
  background: var(--primary);
  color: #fff;
  padding: 25px 20px;
  text-align: center;
}
.pricing-card.featured .pc-header { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.pricing-card .pc-header .badge-featured {
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.75rem;
  padding: 3px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 700;
}
.pricing-card .pc-header h4 { font-size: 1.15rem; font-weight: 800; margin-bottom: 5px; }
.pricing-card .pc-header .vehicle-icon { font-size: 2.5rem; margin-bottom: 8px; }
.pricing-card .pc-body { padding: 25px; }
.pricing-card .price-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.pricing-card .price-row:last-child { border-bottom: none; }
.pricing-card .price-row .label { color: var(--text-muted); }
.pricing-card .price-row .val { font-weight: 700; color: var(--primary); }
.pricing-card .price-row .val.accent { color: var(--accent); font-size: 1.05rem; }
.pricing-card .book-btn {
  display: block;
  text-align: center;
  margin-top: 20px;
}

/* ============================================================
   VEHICLE CARDS
   ============================================================ */
.vehicle-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.13);
}
.vehicle-card .vc-image {
  background: linear-gradient(135deg, #eef2ff, #dce3f5);
  padding: 40px 20px;
  text-align: center;
  font-size: 5.5rem;
  line-height: 1;
}
.vehicle-card .vc-body { padding: 22px; }
.vehicle-card .vc-body h5 { font-size: 1.05rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.vehicle-card .vc-spec {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.vehicle-card .spec-badge {
  background: #f0f4fb;
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.vehicle-card .spec-badge i { color: var(--accent); margin-right: 4px; }

/* ============================================================
   ROUTE LIST
   ============================================================ */
.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); }

/* ============================================================
   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);
}

/* ============================================================
   TERMS & CONDITIONS BOX
   ============================================================ */
.terms-box {
  background: #fff8e8;
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 22px 25px;
}
.terms-box h5 { color: var(--primary); font-weight: 800; margin-bottom: 12px; }
.terms-box ul { padding-left: 18px; }
.terms-box ul li { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 6px; }

/* ============================================================
   INFO SECTION (About / Service Detail)
   ============================================================ */
.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 { list-style: none; padding: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}
.check-list li:last-child { border-bottom: none; }
.check-list li i { color: var(--accent); margin-top: 3px; }

.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; }

/* ============================================================
   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; }

.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  transition: background 0.3s;
}
.social-links a:hover { background: var(--accent); color: #fff; }

.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); }

/* ============================================================
   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; }
  .page-hero h1 { font-size: 1.7rem; }
  .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; }
}

/* ============================================================
   VEHICLE IMAGES (real photos)
   ============================================================ */
.vc-image {
  background: #eef2ff;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.vehicle-card:hover .vc-image img { transform: scale(1.05); }

/* Fleet hero 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(30,58,95,0.92));
  color: #fff;
  padding: 20px 15px 12px;
  font-weight: 700;
  font-size: 0.95rem;
}
.fleet-img-card .fleet-label span {
  color: var(--accent);
  font-size: 0.82rem;
  display: block;
  font-weight: 600;
}

/* ============================================================
   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;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.audio-widget .audio-pill:hover { background: rgba(30,58,95,1); }
.audio-widget .audio-pill .om-icon { color: var(--accent); font-size: 1rem; }
.audio-widget .audio-pill .audio-text {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
}
.audio-widget .audio-pill .audio-text small { color: rgba(255,255,255,0.65); display: block; }
.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 info block */
.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; }

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

/* Pricing card vehicle icon — image version */
.pricing-card .pc-header .vehicle-icon {
  width: 90px;
  height: 60px;
  margin: 0 auto 10px;
  overflow: hidden;
  border-radius: 10px;
}
.pricing-card .pc-header .vehicle-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
