/* ==========================================================================
   Cityline Travels - Premium Styling stylesheet
   Theme: Travel, Professional Bus Rental & Corporate Transport
   Primary Colors: Navy Blue (#0B203E) & Amber Gold (#DCA01C)
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- Root Variables --- */
:root {
  --primary-color: #0B203E;
  --primary-dark: #061224;
  --primary-light: #163660;
  --accent-color: #DCA01C;
  --accent-hover: #F2B32C;
  --accent-light: #FFF8E7;
  --text-dark: #2D3748;
  --text-light: #718096;
  --bg-light: #F7FAFC;
  --bg-white: #FFFFFF;
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --box-shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --box-shadow-md: 0 10px 15px rgba(0, 0, 0, 0.05), 0 4px 6px rgba(0, 0, 0, 0.05);
  --box-shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  --box-shadow-glow: 0 0 20px rgba(220, 160, 28, 0.35);
  --font-family-sans: 'Inter', sans-serif;
  --font-family-heading: 'Outfit', sans-serif;
}

/* --- Global Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family-sans);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: 700;
  color: var(--primary-color);
}

a {
  text-decoration: none;
  transition: var(--transition-fast);
}

/* --- Hide Default Browser Scrollbar --- */
::-webkit-scrollbar {
  display: none;
}
html {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* ==========================================================================
   Preloader Section
   ========================================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-container {
  text-align: center;
  position: relative;
  width: 300px;
  height: 120px;
}

.loader-bus {
  width: 80px;
  height: auto;
  position: absolute;
  bottom: 25px;
  left: 0;
  animation: driveBus 2.5s infinite linear;
}

.loader-road {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  bottom: 22px;
  border-radius: 2px;
  overflow: hidden;
}

.loader-road::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 80px;
  background: var(--accent-color);
  box-shadow: 0 0 10px var(--accent-color);
  animation: driveTrail 2.5s infinite linear;
}

.loader-text {
  color: var(--bg-white);
  font-family: var(--font-family-heading);
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-top: 100px;
  font-weight: 500;
}

.loader-text span {
  color: var(--accent-color);
}

@keyframes driveBus {
  0% { left: -100px; }
  100% { left: 320px; }
}

@keyframes driveTrail {
  0% { left: -180px; width: 80px; }
  50% { width: 140px; }
  100% { left: 320px; width: 80px; }
}

/* ==========================================================================
   Navigation Bar (Glassmorphic)
   ========================================================================== */
.custom-navbar {
  background: rgba(11, 32, 62, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  transition: var(--transition-slow);
}

.custom-navbar.scrolled {
  background: var(--primary-dark);
  box-shadow: var(--box-shadow-lg);
  padding: 8px 0;
}

.navbar-brand img {
  height: 55px;
  transition: var(--transition-fast);
}

.navbar-brand span {
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-left: 10px;
}

.navbar-brand span span {
  color: var(--accent-color);
  margin-left: 0;
}

.custom-navbar .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  padding: 8px 16px !important;
  font-size: 0.95rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: var(--accent-color) !important;
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  background-color: var(--accent-color);
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  padding: 10px 24px !important;
  box-shadow: var(--box-shadow-sm);
}

.nav-cta:hover {
  background-color: var(--accent-hover) !important;
  color: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-glow);
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-icon {
  width: 30px;
  height: 3px;
  background-color: var(--bg-white);
  display: block;
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url('../images/hero_bus_mumbai.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 18, 36, 0.92) 0%, rgba(11, 32, 62, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--bg-white);
}

.hero-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--bg-white);
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  max-width: 800px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-feature-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-feature-item i {
  color: var(--accent-color);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-premium {
  padding: 14px 30px;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family-heading);
  transition: var(--transition-slow);
}

.btn-primary-gold {
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: 2px solid var(--accent-color);
}

.btn-primary-gold:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-glow);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  border: 2px solid #25D366;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  border-color: #128C7E;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.35);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background-color: var(--bg-white);
  color: var(--primary-color);
  border-color: var(--bg-white);
  transform: translateY(-3px);
}

/* ==========================================================================
   Section Headers & Common Layout Elements
   ========================================================================== */
.section-padding {
  padding: 100px 0;
}

.section-bg-alt {
  background-color: #EDF2F7;
}

.section-header {
  margin-bottom: 60px;
  position: relative;
}

.section-badge {
  background: var(--accent-light);
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
}

.section-title span {
  color: var(--accent-color);
}

.section-divider {
  width: 70px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
  margin: 0 auto;
}

.section-header.text-start .section-divider {
  margin: 0;
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-img-wrapper {
  position: relative;
  z-index: 10;
}

.about-img-main {
  width: 100%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-lg);
  object-fit: cover;
  height: 450px;
}

.about-experience-card {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--primary-color);
  color: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-lg);
  border-left: 5px solid var(--accent-color);
  max-width: 230px;
  z-index: 20;
}

.experience-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  font-family: var(--font-family-heading);
}

.experience-text {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 30px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--font-family-heading);
}

.stat-text {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-card {
  background: var(--bg-white);
  padding: 30px 25px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-sm);
  border: 1px solid rgba(0,0,0,0.03);
  height: 100%;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--accent-color);
  transition: var(--transition-fast);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-lg);
}

.why-card:hover::before {
  height: 100%;
}

.why-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-sm);
  background-color: var(--accent-light);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.why-card:hover .why-icon-box {
  background-color: var(--primary-color);
  color: var(--accent-color);
}

.why-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ==========================================================================
   Our Services Section (Interactive Tabs)
   ========================================================================== */
.services-tabs-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

.btn-tab-filter {
  padding: 10px 24px;
  border: 1px solid rgba(11, 32, 62, 0.15);
  background-color: var(--bg-white);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-tab-filter:hover,
.btn-tab-filter.active {
  background-color: var(--primary-color);
  color: var(--accent-color);
  border-color: var(--primary-color);
  box-shadow: var(--box-shadow-md);
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition-slow);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-lg);
}

.service-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
  background-color: var(--primary-dark);
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  opacity: 0.85;
}

.service-card:hover .service-img {
  transform: scale(1.1);
  opacity: 1;
}

.service-capacity-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: var(--box-shadow-sm);
  z-index: 10;
}

.service-body {
  padding: 25px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-text {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-rate {
  font-family: var(--font-family-heading);
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-rate span {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.service-card-btn {
  width: 100%;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  background-color: var(--accent-light);
  border: 1px dashed var(--accent-color);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.service-card-btn:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-style: solid;
}

/* ==========================================================================
   Pricing & Estimator Calculator Section
   ========================================================================== */
.pricing-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}

.pricing-header {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 30px;
  text-align: center;
}

.pricing-header h3 {
  color: var(--bg-white);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.pricing-header p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.table-pricing {
  margin-bottom: 0;
}

.table-pricing th {
  background-color: rgba(11, 32, 62, 0.03);
  color: var(--primary-color);
  font-weight: 700;
  padding: 18px 24px;
  border-bottom: 2px solid rgba(0,0,0,0.08);
}

.table-pricing td {
  padding: 16px 24px;
  vertical-align: middle;
}

.table-pricing tbody tr {
  transition: var(--transition-fast);
}

.table-pricing tbody tr:hover {
  background-color: var(--accent-light);
}

.price-value {
  color: var(--accent-color);
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Estimator Box */
.estimator-wrapper {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: var(--box-shadow-lg);
  border-right: 5px solid var(--accent-color);
}

.estimator-wrapper h3 {
  color: var(--bg-white);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.estimator-wrapper p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.form-label-custom {
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-select-custom, .form-input-custom {
  background-color: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: var(--bg-white) !important;
  padding: 12px 18px !important;
  border-radius: var(--border-radius-sm) !important;
  transition: var(--transition-fast) !important;
}

.form-select-custom option {
  background-color: var(--primary-dark);
  color: var(--bg-white);
}

.form-select-custom:focus, .form-input-custom:focus {
  background-color: rgba(255,255,255,0.12) !important;
  border-color: var(--accent-color) !important;
  box-shadow: var(--box-shadow-glow) !important;
}

.estimator-result-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(220, 160, 28, 0.4);
  border-radius: var(--border-radius-sm);
  padding: 25px;
  margin-top: 30px;
}

.result-heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.result-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--font-family-heading);
  line-height: 1;
}

.result-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 15px;
  margin-bottom: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 10px;
}

/* ==========================================================================
   Fleet Features Checklist (Why Our Fleet)
   ========================================================================== */
.feature-list-box {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: var(--box-shadow-sm);
}

.feature-check-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.feature-check-icon {
  width: 25px;
  height: 25px;
  background-color: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.feature-check-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* ==========================================================================
   How Booking Works Section
   ========================================================================== */
.process-timeline {
  position: relative;
  margin-top: 50px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  width: 70%;
  height: 4px;
  background: rgba(11, 32, 62, 0.08);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 3px solid rgba(11, 32, 62, 0.08);
  color: var(--primary-color);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition-slow);
  position: relative;
}

.process-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 26px;
  height: 26px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow-sm);
}

.process-step:hover .process-icon-box {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-glow);
}

.process-step h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-light);
  max-width: 200px;
  margin: 0 auto;
}

/* ==========================================================================
   Areas We Serve Section
   ========================================================================== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.area-card {
  background: var(--bg-white);
  padding: 18px 24px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--box-shadow-sm);
  border: 1px solid rgba(0,0,0,0.02);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-fast);
}

.area-card i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.area-card span {
  font-weight: 600;
  color: var(--primary-color);
}

.area-card:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.area-card:hover i {
  color: var(--bg-white);
}

.area-card:hover span {
  color: var(--bg-white);
}

/* ==========================================================================
   FAQs Section
   ========================================================================== */
.faq-accordion .accordion-item {
  border: none;
  background-color: var(--bg-white);
  margin-bottom: 15px;
  border-radius: var(--border-radius-md) !important;
  box-shadow: var(--box-shadow-sm);
  overflow: hidden;
}

.faq-accordion .accordion-button {
  padding: 22px 30px;
  font-family: var(--font-family-heading);
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.05rem;
  background-color: transparent;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--accent-color);
  background-color: rgba(11, 32, 62, 0.02);
}

.faq-accordion .accordion-button::after {
  background-size: 1.1rem;
  transition: var(--transition-fast);
}

.faq-accordion .accordion-body {
  padding: 0 30px 25px 30px;
  color: var(--text-light);
  font-size: 0.95rem;
  background-color: transparent;
}

/* ==========================================================================
   Contact Us & Maps Section
   ========================================================================== */
.contact-info-wrapper {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 40px;
  height: 100%;
  box-shadow: var(--box-shadow-lg);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.contact-info-wrapper h3 {
  color: var(--bg-white);
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.contact-item:hover .contact-item-icon {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.contact-item-details h5 {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-item-details p, .contact-item-details a {
  color: var(--bg-white);
  font-weight: 500;
  margin-bottom: 0;
  font-size: 0.98rem;
}

.contact-item-details a:hover {
  color: var(--accent-color);
}

.contact-form-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: var(--box-shadow-lg);
  border: 1px solid rgba(0,0,0,0.03);
}

.contact-form-card h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.form-control-custom {
  border: 1px solid rgba(0,0,0,0.08);
  background-color: var(--bg-light);
  padding: 12px 18px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
  color: var(--text-dark);
}

.form-control-custom:focus {
  border-color: var(--accent-color);
  background-color: var(--bg-white);
  box-shadow: 0 0 12px rgba(220,160,28,0.15);
  outline: none;
}

.form-select-form {
  border: 1px solid rgba(0,0,0,0.08);
  background-color: var(--bg-light);
  padding: 12px 18px;
  border-radius: var(--border-radius-sm);
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-select-form:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 12px rgba(220,160,28,0.15);
  outline: none;
}

.btn-form-submit {
  width: 100%;
  padding: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer-section {
  background-color: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
  border-top: 4px solid var(--accent-color);
}

.footer-widget-logo {
  margin-bottom: 20px;
}

.footer-widget-logo img {
  height: 60px;
}

.footer-desc {
  font-size: 0.9rem;
  margin-bottom: 25px;
  line-height: 1.7;
}

.footer-title {
  color: var(--bg-white);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact-info {
  list-style: none;
  padding-left: 0;
}

.footer-contact-info li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.footer-contact-info i {
  color: var(--accent-color);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 30px;
  margin-top: 50px;
  font-size: 0.85rem;
}

/* ==========================================================================
   Floating Interactions & Buttons
   ========================================================================== */
.floating-ctas {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.6rem;
  box-shadow: var(--box-shadow-lg);
  transition: var(--transition-slow);
  position: relative;
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

.float-whatsapp {
  background-color: #25D366;
}

.float-whatsapp::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 1px solid #25D366;
  border-radius: 50%;
  animation: pulseGreen 1.8s infinite;
  opacity: 0;
}

.float-call {
  background-color: var(--accent-color);
}

.float-call::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  animation: pulseGold 1.8s infinite;
  opacity: 0;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

@keyframes pulseGold {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ==========================================================================
   Responsive Utilities & Overrides
   ========================================================================== */
@media (max-width: 991.98px) {
  .custom-navbar .navbar-collapse {
    background: var(--primary-dark);
    margin-top: 15px;
    padding: 15px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .custom-navbar .nav-link {
    padding: 10px 15px !important;
  }
  
  .nav-cta {
    display: inline-block;
    margin-top: 10px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  
  .about-img-main {
    height: 350px;
    margin-bottom: 40px;
  }
  
  .about-experience-card {
    right: 10px;
    bottom: 10px;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .process-step {
    margin-bottom: 30px;
  }
  
  .process-step p {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-section {
    padding-top: 80px;
  }
  
  .hero-title {
    font-size: 2.1rem;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .estimator-wrapper {
    padding: 25px;
  }
  
  .pricing-header h3 {
    font-size: 1.5rem;
  }
  
  .contact-form-card, .contact-info-wrapper {
    padding: 25px;
  }
  
  .floating-ctas {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  
  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   Floating Bus Scroll Tracker (Vertical Road + Driving Bus)
   ========================================================================== */
#scroll-bus-tracker {
  position: fixed;
  right: 42px; /* Placed exactly above/aligned with floating WhatsApp button */
  top: 20%;
  height: 50vh;
  width: 10px;
  z-index: 9998;
  display: flex;
  justify-content: center;
}

.tracker-road {
  position: relative;
  height: 100%;
  width: 4px;
  background: rgba(11, 32, 62, 0.15); /* Main road track */
  border-radius: 4px;
}

/* Center road line (white/yellow dashed stripes) */
.tracker-road::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 0;
  border-left: 2px dashed rgba(220, 160, 28, 0.4);
}

.tracker-progress {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 0%; /* Driven dynamically by scroll percent */
  background: var(--accent-color);
  box-shadow: 0 0 10px rgba(220, 160, 28, 0.5);
  border-radius: 4px;
}

.tracker-bus-icon {
  position: absolute;
  top: 0%; /* Driven dynamically by scroll percent */
  left: 50%;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transform: translate(-50%, -50%) rotate(90deg); /* Facing down by default */
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), top 0.1s ease-out;
}

