﻿/* ============================================
   MUKESH ROAD CARRIERS (MRC) - Premium Logistics Portal CSS
   MRC red + dark theme
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary: #dc2626;
  --primary-dark: #b91c1c;
  --primary-light: #f87171;
  --primary-ultra-light: #fee2e2;
  --secondary: #1a1a2e;
  --secondary-light: #16213e;
  --accent: #fca5a5;
  --text-dark: #0f0f1a;
  --text-body: #3d3d56;
  --text-muted: #7c7c9a;
  --text-light: #b0b0c3;
  --border: #e8e8f0;
  --surface: #fafafa;
  --white: #ffffff;
  --success: #10b981;
  --warning: #f59e0b;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.18);
  --shadow-orange: 0 8px 30px rgba(220, 38, 38, 0.25);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --font-display: "DM Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--primary);
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}

/* ============================================
   TOP BAR
============================================ */
.topbar {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar a {
  color: rgba(255, 255, 255, 0.75);
}
.topbar a:hover {
  color: var(--primary-light);
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar-badge {
  background: rgba(220, 38, 38, 0.18);
  color: var(--primary-light);
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(220, 38, 38, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Ensure topbar is visible and responsive on small screens */
.topbar {
  position: relative;
  z-index: 1040;
}

@media (max-width: 991.98px) {
  .topbar {
    font-size: 0.72rem;
    padding: 8px 0;
  }
  .topbar .row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }
  .topbar .col-md-7, .topbar .col-md-5 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  .topbar-item {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 4px 8px;
    align-items: center;
    justify-content: center;
  }
  .topbar a { white-space: nowrap; display:inline-block; }
  .topbar-badge {
    padding: 4px 10px;
    font-size: 0.72rem;
    display: inline-block;
  }
}

@media (min-width: 992px) {
  /* Desktop: keep original alignment */
  .topbar .col-md-7 { text-align: left; }
  .topbar .col-md-5 { text-align: right; }
}

/* ============================================
   NAVBAR
============================================ */
.main-navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  transition: var(--transition);
  z-index: 1000;
}
.main-navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 8px 0;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-logo {
  max-height: 86px;
  width: auto;
  display: block;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}
.logo-x {
  color: var(--primary);
}
.navbar-nav .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 12px !important;
  border-radius: var(--radius-sm);
  position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
  background: var(--primary-ultra-light);
}

/* Mobile Navbar Collapse Styling */
.navbar-collapse {
  position: relative;
  z-index: 1000;
}

.navbar-collapse.show {
  max-height: none;
  overflow-y: auto;
  background: white;
  padding: 12px 0;
}

.btn-outline-nav {
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-outline-nav:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-primary-nav {
  background: var(--primary);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-orange);
}
.btn-primary-nav:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.35);
}
.btn-call-mobile {
  background: var(--primary);
  color: white;
  border-radius: var(--radius-sm);
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
}
.toggler-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  margin: 4px 0;
  border-radius: 2px;
  transition: var(--transition);
}
.navbar-toggler {
  border: none;
  padding: 6px;
  background: var(--surface);
  border-radius: var(--radius-sm);
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* Mega Menu */
.mega-dropdown .dropdown-menu {
  width: min(700px, 90vw);
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 0;
  border-top: 3px solid var(--primary);
  left: -150px;
  top: 45px;
}
.service-nav-menu{
  width: min(800px, 90vw) !important;
}


.mega-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.mega-link,
.route-link-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-body);
  transition: var(--transition);
}
.mega-link:hover,
.route-link-mini:hover {
  background: var(--primary-ultra-light);
  color: var(--primary);
}
.mega-icon {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Icons */
.icon-xs {
  width: 14px;
  height: 14px;
}
.icon-sm {
  width: 16px;
  height: 16px;
}
.icon-md {
  width: 20px;
  height: 20px;
}
.icon-lg {
  width: 24px;
  height: 24px;
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
  background: linear-gradient(135deg, #111827 0%, #151a2f 48%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 88px 0 72px;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(220, 38, 38, 0.16) 0%, transparent 42%),
    radial-gradient(
      ellipse 70% 55% at 82% 28%,
      rgba(220, 38, 38, 0.14) 0%,
      transparent 62%
    );
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffd4b0;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 20px;
  margin-bottom: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2.45rem, 4.45vw, 4.55rem);
  color: var(--white);
  line-height: 1.02;
  margin-bottom: 22px;
  max-width: 760px;
}
.hero-title .highlight {
  color: var(--primary);
}
.hero-subtitle {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px;
  max-width: 650px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.hero-stat-item {
  text-align: left;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.hero-stat-num span {
  color: var(--primary);
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Route Search Card */
.route-search-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}
.route-search-card h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.route-search-card h4 span {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}
.hero-booking-panel {
  background: white;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 2;
}
.hero-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}
.hero-panel-head span {
  display: block;
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero-panel-head h4 {
  margin: 0;
  font-size: 1.12rem;
}
.hero-panel-badge {
  color: var(--success);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}
.hero-lane-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  margin: -2px 0 12px;
}
.hero-lane-line span {
  height: 1px;
  flex: 1;
  background: var(--border);
}

/* Route Search Bar */
.route-search-bar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  margin-top: 1.5rem;
  padding: 1.4rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}
.route-search-field {
  flex: 1 1 220px;
  min-width: 220px;
  position: relative;
}
.route-search-field .input-icon {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
}
.route-search-field .form-control-premium {
  width: 100%;
  padding: 14px 18px 14px 44px;
  min-height: 52px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.route-search-field .form-control-premium::placeholder {
  color: rgba(255, 255, 255, 0.72);
}
.route-search-field .form-control-premium:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.22);
}
.route-search-field .form-control-premium:read-only {
  color: #fff;
}
.route-search-bar .route-search-submit {
  padding: 0 28px;
  height: 52px;
  align-self: stretch;
}

@media (max-width: 767.98px) {
  .route-search-bar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .route-search-field,
  .route-search-bar .route-search-submit {
    width: 100%;
    min-width: 0;
  }
  .route-search-field{
    flex: none;
  }
  .route-search-bar .route-search-submit {
    align-self: stretch;
  }
}
  

.hero-panel-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}
.hero-panel-checks span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--surface);
  border-radius: 7px;
  padding: 8px 6px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}
.hero-panel-checks i {
  color: var(--primary);
  flex-shrink: 0;
}
.form-group {
  margin-bottom: 16px;
}
.form-label-sm {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}
.form-control-premium {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px 11px 40px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}
select.form-control-premium {
  color: var(--text-dark);
  background: var(--surface);
}
select.form-control-premium option {
  color: var(--text-dark);
  background: white;
}
select.form-control-premium option:checked,
select.form-control-premium option:focus {
  color: var(--text-dark);
  background: var(--primary-ultra-light);
}
.form-control-premium:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.input-icon-wrap {
  position: relative;
}
.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
}
.btn-search-route {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-orange);
  margin-top: 20px;
}
.btn-search-route:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}
.search-separator {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
}
.search-separator span {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.search-separator em {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: normal;
}

/* ============================================
   SECTION STYLES
============================================ */
section {
  padding: 80px 0;
}
.section-header {
  margin-bottom: 52px;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: var(--primary-ultra-light);
  border: 1px solid rgba(220, 38, 38, 0.2);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
}
.section-title em {
  font-style: normal;
  color: var(--primary);
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================
   SERVICES SECTION
============================================ */
.services-section {
  background: var(--surface);
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  border-color: rgba(220, 38, 38, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--primary-ultra-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary);
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--primary);
  color: white;
}
.service-icon-wrap svg,
.route-icon svg,
.truck-card-icon svg,
.feature-card-icon svg {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  stroke: currentColor;
}
.service-card-media {
  margin-bottom: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}
.blog-img-wrap img {
  transition: transform 0.35s ease;
}
.blog-card:hover .blog-img-wrap img {
  transform: scale(1.04);
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card h5 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ============================================
   ROUTES SECTION
============================================ */
.route-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  cursor: pointer;
}
.route-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.12);
  transform: translateY(-2px);
}
.route-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-ultra-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.route-info {
  flex: 1;
}
.route-cities {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.route-cities .arrow {
  color: var(--primary);
}
.route-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.route-price {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  flex-shrink: 0;
  text-align: right;
}
.route-price small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ============================================
   TRUCK TYPES SECTION
============================================ */
.trucks-section {
  background: var(--secondary);
}
.trucks-section .section-title {
  color: white;
}
.trucks-section .section-label {
  background: rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.3);
}
.trucks-section .section-desc {
  color: rgba(255, 255, 255, 0.55);
}
.truck-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.truck-card:hover {
  background: rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.4);
  transform: translateY(-4px);
}
.truck-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(220, 38, 38, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary-light);
}
.truck-card-media {
  width: 100%;
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.truck-card-media img {
  width: 100%;
  height: 100%;
  background-size: cover;
  display: block;
  padding: 8px;
}
.truck-card h6 {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.truck-capacity-badge {
  display: inline-block;
  background: rgba(220, 38, 38, 0.2);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.truck-card p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}
.truck-price {
  color: var(--primary-light);
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 8px;
}
.popular-tag {
  position: absolute;
  top: -1px;
  right: 12px;
  background: var(--primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 0 0 6px 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   INDUSTRIES SECTION
============================================ */
.industry-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--transition);
  cursor: pointer;
  margin: 6px;
}
.industry-chip:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: var(--shadow-orange);
}
.industry-chip i {
  color: var(--primary);
  width: 16px;
  height: 16px;
}
.industry-chip:hover i {
  color: white;
}

/* ============================================
   WHY CHOOSE US
============================================ */
.why-us-section {
  background: var(--surface);
}
.why-table-wrap {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.why-table-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--secondary);
  padding: 20px 24px;
}
.why-table-head .col-label {
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-size: 0.95rem;
  text-align: center;
}
.why-table-head .col-label:first-child {
  text-align: left;
}
.why-table-head .col-label.highlight {
  color: var(--primary);
}
.why-table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: var(--transition);
}
.why-table-row:last-child {
  border-bottom: none;
}
.why-table-row:hover {
  background: var(--primary-ultra-light);
}
.why-table-row .feature-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}
.check-col {
  text-align: center;
}
.check-yes {
  color: var(--success);
  font-size: 1.2rem;
}
.check-no {
  color: #343a40;
  font-size: 1.2rem;
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(220, 38, 38, 0.2);
  box-shadow: var(--shadow-md);
}
.feature-card-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-ultra-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.feature-card h6 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.feature-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   STATS COUNTER
============================================ */
.stats-section {
  background: var(--primary);
  padding: 60px 0;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  line-height: 1;
  display: block;
}
.stat-plus {
  color: rgba(255, 255, 255, 0.7);
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  align-self: stretch;
  margin: 0 auto;
}

/* ============================================
   PROCESS TIMELINE
============================================ */
.process-section {
  background: white;
}
.process-steps {
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: calc(16.66% - 1px);
  right: calc(16.66% - 1px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-bubble {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.35);
  position: relative;
}
.step-bubble::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(220, 38, 38, 0.2);
}
.process-step h6 {
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.process-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-section {
  background: var(--surface);
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
  height: 100%;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.testimonial-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--primary-ultra-light);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  color: var(--primary);
  opacity: 0.3;
}
.testimonial-stars {
  color: var(--warning);
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-dark);
}
.author-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-section {
  background: white;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(220, 38, 38, 0.25);
}
.faq-item.open {
  border-color: var(--primary);
}
.faq-question {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
  gap: 12px;
  user-select: none;
  transition: var(--transition);
}
.faq-question:hover {
  color: var(--primary);
}
.faq-item.open .faq-question {
  color: var(--primary);
  background: var(--primary-ultra-light);
}
.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-toggle {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 22px;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 22px 18px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   BLOG SECTION
============================================ */
.blog-section {
  background: var(--surface);
}
.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.blog-img-wrap {
  height: 180px;
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-light) 100%
  );
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}
.blog-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-body {
  padding: 20px;
}
.blog-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
}
.blog-title {
  font-size: 0.98rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-title a:hover {
  color: var(--primary);
}
.blog-excerpt {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.blog-read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ============================================
   GET QUOTE SECTION
============================================ */
.quote-section {
  background: var(--secondary);
}
.quote-section .section-title {
  color: white;
}
.quote-section .section-desc {
  color: rgba(255, 255, 255, 0.6);
}
.quote-form-wrap {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.quote-form-wrap .form-control-premium {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: white;
}
.quote-form-wrap .form-control-premium::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.quote-form-wrap .form-control-premium:focus {
  border-color: var(--primary);
  background: rgba(220, 38, 38, 0.08);
}
.quote-form-wrap .form-label-sm {
  color: rgba(255, 255, 255, 0.55);
}
.quote-form-wrap .input-icon {
  color: rgba(220, 38, 38, 0.7);
}
.btn-submit-quote {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
}
.btn-submit-quote:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ============================================
   CTA BANNER
============================================ */
.cta-section {
  background: var(--primary);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 100% at 80% 50%,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 60%
  );
}
.cta-section h2 {
  color: white;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 500px;
}
.btn-cta-white {
  background: white;
  color: var(--primary);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  color: var(--primary);
}
.btn-cta-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-cta-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* ============================================
   FLOATING ELEMENTS
============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 88px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}
@media (max-width: 991px) {
  .whatsapp-float {
    display: none;
  }
}

/* ============================================
   MOBILE STICKY BAR
============================================ */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: 8px 0 12px;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}
.sticky-bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.sticky-bar-btn:hover {
  color: var(--primary);
}
.sticky-bar-btn.quote-btn {
  background: var(--primary);
  color: white;
  border-radius: var(--radius-sm);
  margin: 0 8px;
}
.sticky-bar-btn.whatsapp-btn {
  color: #25d366;
}

/* ============================================
   BREADCRUMB
============================================ */
.breadcrumb-nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb-item {
  font-size: 0.82rem;
}
.breadcrumb-item a {
  color: var(--text-muted);
}
.breadcrumb-item a:hover {
  color: var(--primary);
}
.breadcrumb-item.active {
  color: var(--text-dark);
  font-weight: 500;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
}

/* ============================================
   FOOTER
============================================ */
.footer-app-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-app-banner .app-badge-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}
.footer-app-banner h3 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.footer-app-banner p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
.app-store-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}
.app-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.app-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.25);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin: 6px;
}
.footer-main {
  background:
    radial-gradient(circle at 12% 18%, rgba(220, 38, 38, 0.16), transparent 30%),
    linear-gradient(135deg, #090915 0%, #111124 48%, #0b0b16 100%);
  padding: 60px 0 40px;
}
.footer-brand .logo-wrap {
  align-items: center;
  padding: 6px 8px 6px 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 330px;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-list a,
.footer-contact-list span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-contact-list a:hover {
  color: var(--primary-light);
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  line-height: 1.55;
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}
.footer-bottom {
  background: #080810;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom p,
.footer-bottom a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom a {
  margin-left: 16px;
}
.footer-bottom a:hover {
  color: var(--primary-light);
}

/* ============================================
   ROUTE PAGE SPECIFIC
============================================ */
.route-hero {
  background: var(--secondary);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.route-info-strip {
  background: white;
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.route-strip-item {
  flex: 1;
  min-width: 140px;
  padding: 0 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.route-strip-item:last-child {
  border-right: none;
}
.strip-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.strip-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}
.strip-value.price {
  color: var(--primary);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table th {
  background: var(--secondary);
  color: white;
  padding: 12px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: left;
}
.pricing-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-body);
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table tr:hover td {
  background: var(--primary-ultra-light);
}
.pricing-table td:last-child {
  color: var(--primary);
  font-weight: 700;
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes countUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.animate-fadeup {
  opacity: 1 !important;
  transform: translateY(0) !important;
  animation: none !important;
}
.animate-fadeup-delay-1 {
  animation-delay: 0 !important;
}
.animate-fadeup-delay-2 {
  animation-delay: 0 !important;
}
.animate-fadeup-delay-3 {
  animation-delay: 0 !important;
}
.anim-on-scroll {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.anim-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   UTILITIES
============================================ */
.text-primary {
  color: var(--primary) !important;
}
.bg-primary-soft {
  background: var(--primary-ultra-light);
}
.rounded-xl {
  border-radius: var(--radius-xl);
}
.divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}
.tag-chip {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 4px 12px;
  border-radius: 20px;
  margin: 3px;
}
.tag-chip:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.sticky-quote-sidebar {
  position: sticky;
  top: 84px;
}
.lead-form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--primary);
}
.lead-form-card h5 {
  font-size: 1rem;
  margin-bottom: 18px;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 991px) {
  section {
    padding: 60px 0;
  }
  .main-navbar {
    padding: 10px 0;
  }
  .main-navbar > .container-fluid {
    position: relative;
  }
  .navbar-collapse {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    flex-basis: 100%;
    margin-top: 0;
    background: white;
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 18px 50px rgba(15, 15, 26, 0.16);
    max-height: calc(100vh - 170px);
    max-height: calc(100dvh - 170px);
    overflow-y: auto !important;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(220, 38, 38, 0.45) rgba(0, 0, 0, 0.06);
  }
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    max-height: calc(100dvh - 210px);
    overflow-y: auto !important;
    padding: 10px;
  }
  .navbar-collapse::-webkit-scrollbar {
    width: 6px;
  }
  .navbar-collapse::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 999px;
  }
  .navbar-collapse::-webkit-scrollbar-thumb {
    background: rgba(220, 38, 38, 0.5);
    border-radius: 999px;
  }
  .navbar-nav {
    gap: 4px !important;
  }
  .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 10px 12px !important;
    background: var(--primary-ultra-light);
  }
  .navbar-nav .dropdown-toggle::after {
    margin-left: auto;
  }
  .mega-dropdown .dropdown-menu {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    width: 100% !important;
    min-width: 0;
    max-height: 42vh;
    max-height: 42dvh;
    overflow-y: auto;
    overflow-x: hidden;
    margin: 3px 0 8px;
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    border-radius: var(--radius);
    box-shadow: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(220, 38, 38, 0.45) rgba(0, 0, 0, 0.05);
  }
  .mega-dropdown .dropdown-menu::-webkit-scrollbar {
    width: 5px;
  }
  .mega-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(220, 38, 38, 0.5);
    border-radius: 999px;
  }
  .mega-dropdown .dropdown-menu .row {
    padding: 8px !important;
  }
  .mega-dropdown .dropdown-menu .col-md-4 {
    margin-bottom: 4px !important;
  }
  .mega-link,
  .route-link-mini {
    align-items: flex-start;
    min-height: 38px;
    padding: 8px 10px;
    line-height: 1.32;
  }
  .nav-cta {
    width: 100%;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }
  .nav-cta .btn-primary-nav {
    width: 100%;
    justify-content: center;
  }
  .hero-section {
    padding: 64px 0 48px;
    min-height: auto;
  }
  .hero-subtitle {
    max-width: 100%;
    margin-bottom: 28px;
  }
  .hero-badge {
    margin-bottom: 18px;
  }
  .hero-proof-grid {
    max-width: 100%;
  }
  .hero-booking-panel {
    margin-top: 10px;
  }
  .route-search-card {
    margin-top: 30px;
    padding: 24px;
  }
  .route-search-card h4 {
    margin-bottom: 16px;
  }
  .hero-stats {
    gap: 24px;
  }
  body {
    padding-bottom: 64px;
  }
  .process-steps::before {
    display: none;
  }
  .route-info-strip {
    gap: 16px;
  }
  .route-strip-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    min-width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .route-strip-item:last-child {
    border-bottom: none;
  }
}
@media (max-width: 767px) {
  .hero-section {
    padding: 44px 0 34px;
  }
  .hero-title {
    font-size: 2.18rem;
    line-height: 1.08;
  }
  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.65;
  }
  .hero-actions .btn-primary-nav,
  .hero-actions .btn-outline-nav {
    width: 100%;
    justify-content: center;
  }
  .hero-booking-panel {
    padding: 18px;
    border-radius: 12px;
  }
  .hero-panel-head {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
  }
  .hero-panel-checks {
    grid-template-columns: 1fr;
  }
  .route-search-card {
    padding: 18px;
  }
  .route-search-card h4 {
    margin-bottom: 14px;
  }
  .why-table-wrap {
    overflow-x: auto;
  }
  .why-table-head,
  .why-table-row {
    min-width: 400px;
  }
  .quote-form-wrap {
    padding: 20px;
  }
  .footer-main {
    padding: 40px 0 24px;
  }
  .mega-dropdown .dropdown-menu {
    width: 100%;
  }
  .service-nav-menu {
    width: 100% !important;
  }

}

@media (max-width: 375px){
  .route-cities{
    gap: 4px;
  }
}

@media (min-width: 992px) {
  .mega-dropdown:hover .dropdown-menu {
    display: block;
  }
}

