/* =========================================================
   CAB STAR — MAIN STYLESHEET
   Premium Taxi Booking Website
   ========================================================= */

:root{
  --primary-dark:  #083C4A;
  --primary-hover: #062D38;
  --secondary:     #B76E79;   /* Rose Gold */
  --secondary-light:#D9A9A0;  /* Rose Gold - lighter shade for gradients/hover */
  --white:         #FFFFFF;
  --bg-light:      #FFF8F3;
  --border-color:  #E8D8CC;
  --text-color:    #1D2D35;

  --radius: 20px;
  --shadow: 0 8px 30px rgba(0,0,0,.08);
  --shadow-hover: 0 14px 40px rgba(8,60,74,.16);

  --font-main: 'Poppins', sans-serif;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  font-family: var(--font-main);
  color: var(--text-color);
  background: var(--white);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6{
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
}

p{ margin: 0; }
a{ text-decoration: none; color: inherit; transition: all .25s ease; }
ul{ margin: 0; padding: 0; list-style: none; }
img{ max-width: 100%; display: block; }

.accent-text{ color: var(--secondary); }

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar{
  background: var(--primary-dark);
  color: var(--white);
  font-size: .85rem;
  padding: 8px 0;
}
.top-bar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.top-left{ display:flex; align-items:center; gap:8px; font-weight:500; white-space: nowrap;}
.top-left i{ color: var(--secondary); }
.top-left a{ color:var(--white); font-weight:700; margin-left:4px; }
.top-center{
  letter-spacing: 2px;
  font-weight: 600;
  text-align: center;
  flex: 1;
}
.top-right{ display:flex; align-items:center; gap:12px; white-space: nowrap;}
.top-right .follow-label{ opacity:.85; margin-right:4px; }
.top-right a{
  width: 26px; height: 26px;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  color: var(--white);
  font-size: .8rem;
}
.top-right a:hover{ background: var(--secondary); }

/* =========================================================
   HEADER
   ========================================================= */
.main-header{
  background: var(--white);
  padding: 14px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  position: sticky; top: 0; z-index: 999;
}
.main-header .navbar{ align-items:center; }
.navbar-brand{ display:flex; align-items:center; gap:10px; }
.logo-img{ height: 52px; width:auto; }
.brand-text{ display:flex; flex-direction:column; line-height:1; }
.brand-name{
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: .5px;
}
.brand-tagline{
  font-size: .58rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 3px;
}

.main-nav{ gap: 6px; }
.main-nav .nav-link{
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--text-color);
  padding: 10px 14px !important;
  position: relative;
}
.main-nav .nav-link.active,
.main-nav .nav-link:hover{ color: var(--secondary); }
.main-nav .dropdown-menu{
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
}
.main-nav .dropdown-item{
  font-size: .85rem;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 500;
}
.main-nav .dropdown-item:hover{ background: var(--bg-light); color: var(--secondary); }

.btn-call-now{
  background: var(--primary-dark);
  color: var(--white);
  border-radius: 50px;
  padding: 8px 22px 8px 8px;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--secondary);
  transition: all .25s ease;
}
.btn-call-now:hover{ background: var(--primary-hover); transform: translateY(-2px); }
.call-icon{
  background: var(--secondary);
  width: 36px; height:36px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color: var(--white);
}
.call-text{ font-size:.7rem; line-height:1.2; color:#cfe0e5; }
.call-text strong{ color: var(--white); font-size:.95rem; }

/* =========================================================
   HERO SECTION — Full Background Image Slideshow
   ========================================================= */
.hero-section{
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 70px 0 130px;
}
.hero-bg-slideshow{ position:absolute; inset:0; z-index:0; overflow:hidden; }
.hero-bg-slide{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.6s ease-in-out;
}
.hero-bg-slide.active{
  opacity: 1;
  animation: heroZoomIn 6s ease-in-out forwards;
}
/* Alternate slides zoom in vs zoom out for a natural cinematic Ken Burns feel */
.hero-bg-slide:nth-child(even).active{ animation-name: heroZoomOut; }

@keyframes heroZoomIn{
  from{ transform: scale(1); }
  to{ transform: scale(1.15); }
}
@keyframes heroZoomOut{
  from{ transform: scale(1.15); }
  to{ transform: scale(1); }
}
@media (prefers-reduced-motion: reduce){
  .hero-bg-slide.active{ animation: none; transform: scale(1); }
}

.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(8,60,74,.92) 0%, rgba(8,60,74,.78) 45%, rgba(8,60,74,.45) 100%);
}
.hero-content{ position:relative; z-index:2; }

.hero-badge{
  display:inline-flex;
  align-items:center;
  background: rgba(255,255,255,.1);
  border: 1px dashed var(--secondary);
  color: var(--secondary-light);
  font-weight:700;
  font-size:.78rem;
  letter-spacing: 2px;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
}
.hero-heading{
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--white);
}
.hero-heading-shine{
  background: linear-gradient(100deg, #FFFFFF 30%, var(--secondary-light) 45%, #FFFFFF 55%, #FFFFFF 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroTextShine 4s linear infinite;
}
@keyframes heroTextShine{
  0%{ background-position: 200% center; }
  100%{ background-position: -50% center; }
}
@media (prefers-reduced-motion: reduce){
  .hero-heading-shine{ animation: none; -webkit-text-fill-color: var(--white); }
}
.hero-tagline{
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary-light);
  margin-bottom: 10px;
}

/* --- Hero Logo (replaces text heading on homepage) --- */
.hero-logo-wrap{
  position: relative;
  display: inline-block;
  max-width: 320px;
  width: 60%;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 12px;
}
.hero-logo-img{
  width: 100%;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.45));
}
.hero-logo-wrap::after{
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 45%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.65) 50%, transparent 100%);
  transform: skewX(-22deg);
  animation: shineSweep 4s ease-in-out infinite;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce){
  .hero-logo-wrap::after{ animation: none; display:none; }
}
.hero-sub{
  font-size: 1.05rem;
  font-weight: 500;
  color: #E8EEF0;
  margin-bottom: 24px;
  max-width: 560px;
}
.hero-stats-row{
  display:flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}
.stat-chip{
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 10px 20px;
  display:flex;
  flex-direction:column;
  line-height:1.3;
}
.stat-label{ font-size:.6rem; font-weight:600; letter-spacing:1px; color:#cfe0e5; }
.stat-value{ font-size:1.05rem; font-weight:800; color: var(--secondary-light); }
.stat-chip-link{
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
}
.stat-chip-link:hover{
  background: var(--secondary);
  border-color: var(--secondary-light);
  transform: translateY(-3px);
}
.stat-chip-link .stat-label i{ margin-right: 4px; }
.stat-chip-link:hover .stat-value,
.stat-chip-link:hover .stat-label{ color: var(--white); }

.hero-icons-row{
  display:flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 30px;
}
.hero-icons-row li{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
}
.icon-badge{
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(4px);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--secondary-light);
  font-size: 1rem;
}
.icon-text{ white-space: nowrap; }
.hero-buttons{ display:flex; flex-wrap:wrap; gap:16px; }
.btn-call, .btn-whatsapp{
  border-radius: 50px;
  padding: 14px 30px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .5px;
  display:inline-flex;
  align-items:center;
  justify-content: center;
  gap:10px;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-call{
  background: linear-gradient(135deg, var(--secondary) 0%, #9E5C66 100%);
  color: var(--white);
  border-color: var(--secondary-light);
  box-shadow: 0 10px 24px rgba(183,110,121,.4);
}
.btn-call:hover{ background: linear-gradient(135deg, #9E5C66 0%, var(--secondary) 100%); transform: translateY(-3px); box-shadow: 0 14px 28px rgba(183,110,121,.5); }
.btn-whatsapp{
  background: linear-gradient(135deg, #2be374 0%, #1fb955 100%);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(37,211,102,.4);
}
.btn-whatsapp:hover{ background: linear-gradient(135deg, #1fb955 0%, #2be374 100%); transform: translateY(-3px); box-shadow: 0 14px 28px rgba(37,211,102,.5); }

/* =========================================================
   ROUTE PAGE HERO — Exact original reference layout
   (Light background, car image on right, floating stat cards)
   Used only on route.php — homepage keeps its own full-bg hero.
   ========================================================= */
.route-hero-section{
  background: linear-gradient(180deg, var(--bg-light) 0%, #FFFFFF 100%);
  padding: 60px 0 130px;
  position: relative;
  overflow: hidden;
}
/* Scoped overrides so the shared badge/heading/icon components
   look right on this LIGHT background instead of the photo-overlay style */
.route-hero-section .hero-badge{
  background: var(--white);
  border: 1px dashed var(--secondary);
  color: var(--secondary);
  backdrop-filter: none;
}
.route-hero-section .hero-heading{ color: var(--primary-dark); }
.route-hero-section .hero-sub{ color: var(--text-color); max-width: none; }
.route-hero-section .icon-badge{
  background: var(--white);
  border: 1px solid var(--border-color);
  color: var(--secondary);
}
.route-hero-section .icon-text{ color: var(--primary-dark); }

.hero-img-wrap{ position: relative; }
.hero-img{ width: 100%; border-radius: var(--radius); }
.floating-card{
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.fc-label{ font-size: .62rem; font-weight: 600; letter-spacing: 1px; color: #7d8b90; }
.fc-value{ font-size: 1.05rem; font-weight: 800; color: var(--primary-dark); }
.card-distance{ top: 8%; left: -4%; }
.card-time{ top: 8%; right: -4%; }
.card-distance .fc-value, .card-time .fc-value{ color: var(--secondary); }

.maps-chip-center{
  display: flex;
  justify-content: center;
  margin: 24px auto 0;
  width: fit-content;
}

/* =========================================================
   BOOKING FORM — 3 Tabs, floats over hero bottom edge
   ========================================================= */
.booking-form-section{
  position: relative;
  z-index: 5;
  margin-top: -90px;
  padding-bottom: 50px;
}
.booking-form-card{
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-color);
  padding: 10px 28px 26px;
}
.booking-tabs{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -1px -1px 20px;
  padding: 6px;
  background: var(--bg-light);
  border-radius: 16px 16px 0 0;
}
.tab-item{
  flex: 1 1 auto;
  text-align:center;
  padding: 12px 16px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .3px;
  color: var(--primary-dark);
  border-radius: 12px;
  cursor: pointer;
  transition: all .25s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
}
.tab-item i{ font-size: .9rem; }
.tab-item:hover{ background: rgba(183,110,121,.1); }
.tab-item.active{
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(183,110,121,.35);
}

.booking-tab-pane{ display:none; }
.booking-tab-pane.active{ display:block; animation: fadeInForm .4s ease; }
@keyframes fadeInForm{ from{ opacity:0; transform: translateY(6px);} to{ opacity:1; transform: translateY(0);} }

.booking-form label{
  display:block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--primary-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.input-icon{
  position: relative;
  display:flex;
  align-items:center;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.input-icon:focus-within{
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(183,110,121,.15);
}
.input-icon i{ color: var(--secondary); font-size: .85rem; margin-right:10px; }
.input-icon input,
.input-icon select{
  border: none;
  background: transparent;
  outline: none;
  padding: 13px 0;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-color);
  width: 100%;
  font-family: var(--font-main);
}
.btn-search-cab{
  width: 100%;
  background: var(--primary-dark);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 13px 10px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .3px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  transition: background .25s ease, transform .25s ease;
}
.btn-search-cab:hover{ background: var(--primary-hover); transform: translateY(-2px); }

/* =========================================================
   PREMIUM SHINE / SHIMMER ANIMATION
   Applied to key CTA elements for a premium "shining" look
   ========================================================= */
.hero-badge,
.btn-call,
.btn-whatsapp,
.btn-book-now,
.btn-search-cab,
.btn-view-more,
.btn-call-now{
  position: relative;
  overflow: hidden;
}
.hero-badge::after,
.btn-call::after,
.btn-whatsapp::after,
.btn-book-now::after,
.btn-search-cab::after,
.btn-view-more::after,
.btn-call-now::after{
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 45%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.55) 50%, transparent 100%);
  transform: skewX(-22deg);
  animation: shineSweep 3.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shineSweep{
  0%   { left: -75%; }
  35%  { left: 130%; }
  100% { left: 130%; }
}
@media (prefers-reduced-motion: reduce){
  .hero-badge::after, .btn-call::after, .btn-whatsapp::after,
  .btn-book-now::after, .btn-search-cab::after, .btn-view-more::after,
  .btn-call-now::after{ animation: none; display:none; }
}

/* =========================================================
   SECTION HEADING
   ========================================================= */
.section-heading{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  margin-bottom: 40px;
  text-align:center;
}
.section-heading h2{
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: .5px;
  white-space: nowrap;
}
.sh-line{
  height: 2px;
  width: 60px;
  background: var(--secondary);
  border-radius: 2px;
}
.section-heading.text-start{
  justify-content:flex-start;
  margin-bottom: 24px;
}
.section-heading.text-start .sh-line{ display:none; }

/* =========================================================
   VEHICLE CARDS
   ========================================================= */
.vehicle-section{ padding: 80px 0; background: var(--white); }
.vehicle-card{
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  text-align:center;
  height:100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.vehicle-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.vehicle-img{ width:100%; max-height:150px; object-fit:contain; margin-bottom:14px; }
.vehicle-card h3{ font-size:1.3rem; letter-spacing:1px; }
.seat-note{ font-size:.8rem; color:#7d8b90; font-weight:500; margin-bottom:14px; }
.vehicle-specs{
  display:flex;
  justify-content:center;
  gap: 16px;
  flex-wrap:wrap;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--border-color);
}
.vehicle-specs li{
  font-size:.78rem;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:6px;
  color: var(--text-color);
}
.vehicle-specs i{ color: var(--secondary); }
.vehicle-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.btn-book-now{
  background: var(--primary-dark);
  color: var(--white);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .5px;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.btn-book-now:hover{ background: var(--primary-hover); }
.vehicle-price{ text-align:right; line-height:1.2; }
.price{ font-size:1.2rem; font-weight:800; color: var(--secondary); display:block; }
.price-note{ font-size:.62rem; font-weight:600; color:#7d8b90; letter-spacing:.5px; }

/* =========================================================
   FEATURE STRIP
   ========================================================= */
.feature-strip{
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}
.feature-strip-list{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content: center;
  gap: 34px;
}
.feature-strip-list li{
  font-size:.85rem;
  font-weight:700;
  color: var(--primary-dark);
  display:flex;
  align-items:center;
  gap:10px;
}
.feature-strip-list i{ color: var(--secondary); font-size:1.1rem; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-choose-section{ padding: 80px 0; background: var(--white); }
.why-icon{
  width: 84px; height:84px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  background: var(--bg-light);
  display:flex; align-items:center; justify-content:center;
  font-size: 1.8rem;
  color: var(--secondary);
  transition: all .3s ease;
}
.why-choose-section .col-6:hover .why-icon,
.why-choose-section .col-lg-2:hover .why-icon{
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
  transform: translateY(-6px);
}
.why-choose-section p{
  font-size:.85rem;
  font-weight:600;
  color: var(--text-color);
}

/* =========================================================
   INFORMATION SECTION
   ========================================================= */
.info-section{ padding: 20px 0 80px; background: var(--bg-light); }
.info-card{
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  height: 100%;
  position: relative;
}
.info-card h3{
  font-size: 1.1rem;
  margin-bottom: 18px;
  display:flex;
  align-items:center;
  gap:8px;
}
.info-card h3 i{ color: var(--secondary); }
.info-card ul li{
  font-size:.85rem;
  font-weight:500;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-color);
  display:flex;
  align-items:center;
  gap:8px;
}
.info-card ul li i{ color: var(--secondary); font-size:.75rem; }
.info-card-center{ text-align:center; background: var(--primary-dark); }
.info-card-center h3{ color: var(--white); justify-content:center; }
.info-card-center p{ color:#cfe0e5; font-size:.85rem; margin-bottom:18px; }
.check-list{ text-align:left; }
.check-list li{
  color: var(--white);
  border-bottom: 1px dashed rgba(255,255,255,.2);
  font-size:.82rem;
}
.check-list i{ color: var(--secondary); }

/* Pickup / Drop cards — full-box background photo with dark overlay */
.info-card-bg{
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  isolation: isolate;
}
.info-card-bg::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(8,60,74,.94) 0%, rgba(8,60,74,.82) 55%, rgba(183,110,121,.55) 100%);
  z-index: -1;
}
.info-card-bg h3{ color: var(--white); }
.info-card-bg h3 i{ color: var(--secondary-light); }
.info-card-bg ul li{
  color: var(--white);
  border-bottom: 1px dashed rgba(255,255,255,.22);
}
.info-card-bg ul li i{ color: var(--secondary-light); }

/* =========================================================
   BOOKING PROCESS
   ========================================================= */
.booking-process-section{ padding: 80px 0; background: var(--white); }
.step-item{ text-align:center; position:relative; }
.step-circle{
  width: 34px; height:34px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  font-weight:800;
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 14px;
  font-size:.9rem;
}
.step-icon{
  width: 74px; height:74px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  color: var(--primary-dark);
}
.step-item h4{ font-size:1rem; margin-bottom:8px; }
.step-item p{ font-size:.8rem; color:#7d8b90; }
.step-arrow{
  align-items:center;
  justify-content:center;
  color: var(--secondary);
  font-size: 1.3rem;
  padding-top: 45px;
}

/* =========================================================
   REVIEWS + FAQ
   ========================================================= */
.reviews-faq-section{ padding: 80px 0; background: var(--bg-light); }
.review-card{
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 18px;
  position: relative;
}
.quote-icon{ color: var(--border-color); font-size:1.4rem; margin-bottom:10px; }
.review-card p{ font-size:.88rem; margin-bottom:14px; }
.review-footer{ display:flex; align-items:center; justify-content:space-between; }
.stars i{ color: var(--secondary); font-size:.85rem; }
.reviewer-name{ font-weight:700; font-size:.85rem; color: var(--primary-dark); }
.btn-view-more{
  display:inline-block;
  background: var(--primary-dark);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 50px;
  font-weight:700;
  font-size:.8rem;
  letter-spacing:.5px;
  margin-top: 8px;
}
.btn-view-more:hover{ background: var(--primary-hover); }

.faq-accordion .accordion-item{
  border: 1px solid var(--border-color);
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-accordion .accordion-button{
  font-weight: 600;
  font-size: .88rem;
  color: var(--primary-dark);
  background: var(--white);
  padding: 16px 20px;
}
.faq-accordion .accordion-button:not(.collapsed){
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: none;
}
.faq-accordion .accordion-button:focus{ box-shadow:none; }
.faq-accordion .accordion-button::after{
  filter: none;
}
.faq-accordion .accordion-body{
  font-size: .85rem;
  color: var(--text-color);
  padding: 16px 20px;
  background: var(--white);
}

/* =========================================================
   FOOTER — Full Background Photo Wrapper
   (covers both the CTA strip and the columns footer below)
   ========================================================= */
.site-footer-bg{
  position: relative;
  background-color: var(--primary-dark); /* fallback if bg photo fails to load */
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
.site-footer-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,60,74,.55) 0%, rgba(8,60,74,.88) 30%, rgba(6,45,56,.97) 65%, rgba(6,45,56,1) 100%);
  z-index: 1;
}

/* =========================================================
   FOOTER CTA STRIP
   ========================================================= */
.footer-cta{
  position: relative;
  z-index: 2;
  padding: 55px 0;
}
.footer-cta-inner{
  position: relative;
  z-index: 2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--primary-dark);
  border: 2px solid var(--secondary);
  border-radius: 60px;
  padding: 20px 36px;
  box-shadow: var(--shadow-hover);
}
.fc-item{
  display:flex;
  align-items:center;
  gap: 12px;
  color: var(--white);
  font-size:.75rem;
  font-weight:500;
}
.fc-item i{
  width: 42px; height:42px;
  border-radius:50%;
  background: rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  font-size: 1.2rem;
  color: var(--secondary);
}
.fc-item strong{ font-size:1rem; color:var(--white); }
.fc-brand{ display:flex; align-items:center; gap:16px; }
.fc-brand img{ height:88px; }
.fc-brand .brand-name{ color: var(--white); font-size: 2.2rem; }
.fc-brand .brand-tagline{ font-size: .85rem; letter-spacing: 3px; }

/* =========================================================
   FOOTER
   ========================================================= */
.main-footer{ position: relative; z-index: 2; background: rgba(6,45,56,.96); color:#cfe0e5; padding: 20px 0 40px; }
.main-footer h4{
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: .5px;
}
.main-footer p{ font-size:.82rem; line-height:1.7; }
.main-footer ul li{ margin-bottom: 10px; }
.main-footer ul li a{ font-size:.82rem; color:#cfe0e5; }
.main-footer ul li a:hover{ color: var(--secondary); padding-left: 4px; }
.contact-info-list li{ display:flex; align-items:center; gap:8px; }
.contact-info-list i{ color: var(--secondary); width:16px; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px;
  padding: 18px 0;
  text-align:center;
  font-size: .78rem;
  color: #9fb4ba;
}

/* =========================================================
   SCROLL ANIMATIONS (simple fade/slide via JS toggled class)
   ========================================================= */
[data-aos]{ opacity:0; transition: all .8s ease; }
[data-aos="fade-right"]{ transform: translateX(-40px); }
[data-aos="fade-left"]{ transform: translateX(40px); }
[data-aos].aos-animate{ opacity:1; transform: translate(0,0); }

/* =========================================================
   MOBILE STICKY BOTTOM BAR (Call / SMS / Facebook)
   ========================================================= */
.mobile-sticky-bar{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  display: flex;
  background: var(--primary-dark);
  border-top: 2px solid var(--secondary);
  box-shadow: 0 -6px 20px rgba(0,0,0,.18);
}
.msb-item{
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 4px 8px;
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .3px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.msb-item:last-child{ border-right: none; }
.msb-item i{ font-size: 1.15rem; color: var(--secondary-light); }
.msb-item:active{ background: rgba(255,255,255,.08); }

/* =========================================================
   ABOUT US PAGE
   ========================================================= */

/* --- Page Banner --- */
.page-banner{
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 90px 0 70px;
  overflow: hidden;
}
.page-banner-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8,60,74,.93) 0%, rgba(8,60,74,.82) 50%, rgba(183,110,121,.55) 100%);
}
.page-banner-content{ position: relative; z-index: 2; text-align: center; }
.page-banner-title{
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  margin: 14px 0;
}
.breadcrumb-nav{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: #cfe0e5;
}
.breadcrumb-nav a{ color: var(--secondary-light); }
.breadcrumb-nav a:hover{ text-decoration: underline; }
.breadcrumb-nav i{ font-size: .65rem; color: #cfe0e5; }

/* --- Google Maps Chip (replaces static distance/time badges) --- */
.maps-chip{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  background: var(--secondary);
  color: var(--white);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .3px;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 10px 24px rgba(183,110,121,.4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.maps-chip:hover{ color: var(--white); transform: translateY(-3px); box-shadow: 0 14px 28px rgba(183,110,121,.5); }
.maps-chip i{ font-size: 1rem; }
.maps-chip-light{
  background: var(--white);
  color: var(--primary-dark);
  margin-top: 18px;
  box-shadow: var(--shadow);
}
.maps-chip-light:hover{ color: var(--primary-dark); }

/* --- ON CALL price badge (route pages) --- */
.price-oncall{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem !important;
  color: var(--secondary) !important;
}
.price-oncall i{ font-size: .85rem; }
.maps-link{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary-dark) !important;
  text-decoration: underline;
}
.maps-link i{ color: var(--secondary); }

/* --- Who We Are --- */
.about-section{ padding: 80px 0; background: var(--white); }
.about-img-wrap{ position: relative; }
.about-img{
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-experience-badge{
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 18px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-hover);
  border: 3px solid var(--white);
}
.ae-number{ display:block; font-size: 2rem; font-weight: 800; line-height: 1; }
.ae-label{ display:block; font-size: .68rem; font-weight: 600; letter-spacing: .5px; margin-top: 6px; }

.about-heading{
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 16px 0 18px;
}
.about-text{
  font-size: .92rem;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-checklist{ margin: 20px 0 28px; }
.about-checklist li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--primary-dark);
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-color);
}
.about-checklist i{ color: var(--secondary); }

/* --- Stats Counter --- */
.stats-section{
  background: var(--primary-dark);
  padding: 55px 0;
}
.stat-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
}
.stat-box i{ font-size: 1.8rem; color: var(--secondary-light); margin-bottom: 4px; }
.stat-box-number{ font-size: 2.1rem; font-weight: 800; }
.stat-box-label{ font-size: .78rem; font-weight: 600; color: #cfe0e5; letter-spacing: .3px; }

/* --- Mission & Vision --- */
.mission-vision-section{ padding: 80px 0; background: var(--bg-light); }
.mv-card{
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.mv-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.mv-icon{
  width: 64px; height:64px;
  border-radius: 16px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  display: flex; align-items:center; justify-content:center;
  font-size: 1.6rem;
  color: var(--secondary);
  margin-bottom: 18px;
}
.mv-card h3{ font-size: 1.2rem; margin-bottom: 12px; }
.mv-card p{ font-size: .88rem; color: var(--text-color); line-height: 1.7; }

/* =========================================================
   ALL ROUTES HUB PAGE
   ========================================================= */
.routes-accordion > .accordion-item{
  border: 1px solid var(--border-color);
  border-radius: 16px !important;
  margin-bottom: 14px;
  overflow: hidden;
}
.routes-accordion .accordion-button{
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--bg-light);
  padding: 18px 22px;
}
.routes-accordion .accordion-button:not(.collapsed){
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: none;
}
.routes-accordion .accordion-button i{ color: var(--secondary); }
.routes-accordion .accordion-button:not(.collapsed) i{ color: var(--secondary-light); }
.routes-accordion .accordion-body{ background: var(--white); padding: 20px; }

.routes-city-accordion .accordion-item{
  border: 1px solid var(--border-color);
  border-radius: 10px !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.city-toggle{
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-color);
  background: var(--white);
  padding: 12px 16px;
}
.city-toggle:not(.collapsed){
  background: var(--bg-light);
  color: var(--primary-dark);
  box-shadow: none;
}
.city-toggle i{ color: var(--secondary); font-size: .8rem; }

.route-links-list{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px 16px;
  padding: 6px 4px;
}
.route-links-list li{ list-style: none; }
.route-links-list a{
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
}
.route-links-list a::before{
  content: '\f0da';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--secondary);
  font-size: .7rem;
}
.route-links-list a:hover{ color: var(--secondary); padding-left: 4px; }

/* =========================================================
   FLEET PAGE
   ========================================================= */
.fleet-detail-img{
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  margin-bottom: 16px;
}
.fleet-tagline{
  font-size: .8rem;
  font-weight: 500;
  color: var(--secondary);
}
.mv-card-bestfor{
  font-size: .82rem;
  color: var(--text-color);
  line-height: 1.6;
  background: var(--bg-light);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 16px 0;
}
.fleet-book-btn{
  width: 100%;
  justify-content: center;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-info-card{
  display: block;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px;
  text-align: center;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.contact-info-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.contact-info-icon{
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  display: flex; align-items:center; justify-content:center;
  font-size: 1.5rem;
  color: var(--secondary);
}
.contact-info-card h3{ font-size: 1rem; margin-bottom: 6px; }
.contact-info-card p{ font-size: .82rem; color: var(--text-color); word-break: break-word; }

.contact-form label{
  display:block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--primary-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.input-icon-textarea{ align-items: flex-start; padding-top: 12px; }
.input-icon-textarea i{ margin-top: 3px; }
.input-icon-textarea textarea{
  border: none;
  background: transparent;
  outline: none;
  padding: 0 0 12px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-color);
  width: 100%;
  font-family: var(--font-main);
  resize: vertical;
}
.contact-map-wrap{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.social-follow-text{ font-size: .9rem; font-weight: 600; color: var(--primary-dark); margin-bottom: 14px; }
.social-follow-icons{ display: flex; justify-content: center; gap: 14px; }
.social-follow-icons a{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: var(--white);
  display: flex; align-items:center; justify-content:center;
  font-size: 1.1rem;
  transition: background .25s ease, transform .25s ease;
}
.social-follow-icons a:hover{ background: var(--secondary); transform: translateY(-3px); }