/* ==========================================================================
   AVNI ROAD LINES (ARL) - CORPORATE LOGISTICS STYLESHEET
   Brand Colors Matched to ARL Official Logo (Deep Navy, Royal Blue, Sky Blue, Silver)
   Specializing in Bolero Pickup & Mini Tempo Services
   Coverage: Ghaziabad • Noida • Greater Noida
   ========================================================================== */

:root {
  /* Logo Identity Palette */
  --arl-navy-dark: #071529;
  --arl-navy-primary: #0a1f3d;
  --arl-navy-card: #0d284f;
  --arl-blue-royal: #1a4f9c;
  --arl-blue-highway: #0284c7;
  --arl-blue-cyan: #38bdf8;
  --arl-blue-light: #e0f2fe;
  
  /* Neutral & Supporting */
  --arl-white: #ffffff;
  --arl-bg-surface: #f8fafc;
  --arl-bg-subtle: #f1f5f9;
  --arl-border: #cbd5e1;
  --arl-border-light: #e2e8f0;
  
  /* Text */
  --arl-text-main: #0f172a;
  --arl-text-secondary: #475569;
  --arl-text-muted: #64748b;
  --arl-text-inverse: #ffffff;
  
  /* Action Accents */
  --arl-whatsapp: #25d366;
  --arl-whatsapp-hover: #1eb956;
  --arl-call-blue: #0284c7;
  --arl-accent-amber: #f59e0b;
  
  /* Shadows & Radius */
  --shadow-xs: 0 1px 3px rgba(10, 31, 61, 0.05);
  --shadow-sm: 0 4px 14px rgba(10, 31, 61, 0.07);
  --shadow-md: 0 8px 24px rgba(10, 31, 61, 0.1);
  --shadow-lg: 0 16px 36px rgba(10, 31, 61, 0.14);
  --shadow-xl: 0 20px 45px rgba(7, 21, 41, 0.22);
  
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  color: var(--arl-text-main);
  background-color: var(--arl-bg-surface);
  line-height: 1.5;
  overflow-x: hidden;
  padding-bottom: 70px;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

/* ================= TYPOGRAPHY & UTILITIES ================= */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-cyan { color: var(--arl-blue-cyan); }
.text-blue { color: var(--arl-blue-highway); }
.text-white { color: #ffffff; }

/* SEO hidden text for crawlers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--arl-blue-light);
  color: var(--arl-blue-royal);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.section-heading {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--arl-navy-primary);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.section-subtext {
  font-size: 1.02rem;
  color: var(--arl-text-secondary);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* ================= CORPORATE NAVIGATION HEADER (COMPACT & NO-WRAP) ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--arl-border-light);
  box-shadow: 0 4px 18px rgba(7, 21, 41, 0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  flex-wrap: nowrap;
  gap: 1rem;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(10, 31, 61, 0.15);
  border: 2px solid var(--arl-blue-highway);
  background: #ffffff;
}

.brand-titles {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--arl-navy-primary);
  line-height: 1.1;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--arl-blue-highway);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 1.15rem;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-menu a {
  text-decoration: none;
  color: var(--arl-navy-primary);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
  position: relative;
  padding: 0.2rem 0;
}

.nav-menu a:hover {
  color: var(--arl-blue-highway);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--arl-blue-highway);
  transition: width 0.25s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.52rem 1rem;
  border-radius: var(--radius-xs);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--arl-navy-primary);
  color: #ffffff;
  border: 1px solid var(--arl-blue-royal);
  box-shadow: 0 4px 12px rgba(10, 31, 61, 0.2);
}

.btn-primary:hover {
  background: var(--arl-blue-royal);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 31, 61, 0.3);
}

.btn-whatsapp {
  background: var(--arl-whatsapp);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: var(--arl-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.btn-call {
  background: var(--arl-blue-highway);
  color: #ffffff;
}

.btn-call:hover {
  background: #0369a1;
  transform: translateY(-2px);
}

.mobile-hamburger {
  display: block;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: var(--arl-navy-primary);
  cursor: pointer;
  padding: 0.3rem;
}

@media (min-width: 1140px) {
  .nav-menu { display: flex; }
  .mobile-hamburger { display: none; }
}

@media (max-width: 1139px) {
  .nav-menu { display: none; }
  .mobile-hamburger { display: block; }
}

.mobile-drawer {
  display: none;
  background: #ffffff;
  border-top: 1px solid var(--arl-border-light);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
}

.mobile-drawer.active {
  display: block;
}

.mobile-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.mobile-drawer a {
  text-decoration: none;
  color: var(--arl-navy-primary);
  font-weight: 600;
  font-size: 0.98rem;
  display: block;
  padding: 0.3rem 0;
}

/* ================= HERO SECTION - TRUE 100% VIEWPORT CALIBRATION ================= */
.hero-section {
  position: relative;
  background: linear-gradient(145deg, var(--arl-navy-dark) 0%, var(--arl-navy-primary) 55%, #0e2b54 100%);
  color: #ffffff;
  padding: 1.2rem 0 0.85rem;
  overflow: hidden;
  border-bottom: 3px solid var(--arl-blue-highway); /* Distinct bottom blue line as requested */
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .hero-section {
    min-height: calc(100vh - 58px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hero-section .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hero-header-block {
    margin-bottom: 0.65rem;
    flex-shrink: 0;
  }

  .hero-split-grid {
    flex: 1;
    align-items: stretch;
    margin-bottom: 0.5rem;
  }

  .hero-explore-indicator {
    flex-shrink: 0;
    margin-top: 0.35rem;
  }
}

.hero-backdrop-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(rgba(56, 189, 248, 0.12) 1px, transparent 1px),
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px, 80px 80px;
  pointer-events: none;
}

/* Compact Header Block with Keywords and Animation */
.hero-header-block {
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 2;
}

/* CSS Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-1 {
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-2 {
  opacity: 0;
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.animate-fade-3 {
  opacity: 0;
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.18s forwards;
}

.hero-headline {
  font-size: clamp(1.45rem, 1.85vw, 1.95rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.35rem;
  letter-spacing: -0.3px;
}

.hero-headline span.gradient-text {
  color: var(--arl-blue-cyan);
  background: linear-gradient(90deg, #38bdf8, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead-text {
  font-size: 0.88rem;
  color: #cbd5e1;
  margin: 0.15rem 0 0.5rem;
  line-height: 1.4;
}

.hero-lead-text strong {
  color: var(--arl-blue-cyan);
}

/* Symmetrical Grid: Left Form | Right Dual Videos */
.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero-split-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.5rem;
    align-items: stretch;
  }
}

/* ================= INQUIRY CARD (COMPACT VIEWPORT HEIGHT) ================= */
.booking-card {
  background: #ffffff;
  color: var(--arl-text-main);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--arl-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.booking-card-head {
  margin-bottom: 0.65rem;
  border-bottom: 1px solid var(--arl-border-light);
  padding-bottom: 0.35rem;
}

.booking-card-head h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--arl-navy-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.booking-card-head p {
  font-size: 0.78rem;
  color: var(--arl-text-muted);
  margin-top: 0.1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.field-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--arl-navy-primary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.field-group label i {
  color: var(--arl-blue-highway);
}

.field-select, .field-input {
  width: 100%;
  padding: 0.45rem 0.65rem;
  border: 1.5px solid var(--arl-border);
  border-radius: var(--radius-xs);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  background-color: #ffffff;
  color: var(--arl-text-main);
  transition: var(--transition);
}

.field-select:focus, .field-input:focus {
  outline: none;
  border-color: var(--arl-blue-highway);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

/* Local Coverage Hubs Strip inside Inquiry Card */
.card-coverage-strip {
  margin-top: 0.6rem;
  padding: 0.48rem 0.65rem;
  background: #f8fafc;
  border: 1px solid var(--arl-border);
  border-radius: var(--radius-xs);
}

.card-coverage-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.35rem;
}

.card-coverage-header .coverage-title {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--arl-navy-primary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.card-coverage-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.cov-chip {
  background: #ffffff;
  color: var(--arl-navy-primary);
  border: 1px solid var(--arl-border);
  padding: 0.18rem 0.44rem;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.69rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1.2;
}

.cov-chip i {
  font-size: 0.6rem;
  color: var(--arl-blue-highway);
}

.cov-chip:hover {
  background: #e0f2fe;
  border-color: var(--arl-blue-highway);
  color: var(--arl-blue-royal);
  transform: translateY(-1px);
}

.cov-chip.highlight-depot {
  background: #f0fdf4;
  border-color: #86efac;
  color: #166534;
  font-weight: 700;
}

.cov-chip.highlight-depot i {
  color: #16a34a;
}

.cov-chip.active-chip {
  background: var(--arl-navy-primary);
  border-color: var(--arl-navy-primary);
  color: #ffffff;
}

.cov-chip.active-chip i {
  color: var(--arl-blue-cyan);
}

.booking-action-box {
  margin-top: 0.65rem;
  background: var(--arl-bg-subtle);
  border: 1.5px dashed var(--arl-border);
  border-radius: var(--radius-xs);
  padding: 0.75rem 0.85rem;
}

.booking-summary-text {
  font-size: 0.76rem;
  color: var(--arl-text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.booking-summary-text strong {
  color: var(--arl-navy-primary);
}

.btn-send-whatsapp {
  width: 100%;
  background: var(--arl-whatsapp);
  color: #ffffff;
  padding: 0.7rem 0.95rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  border-radius: var(--radius-xs);
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  transition: var(--transition);
}

.btn-send-whatsapp:hover {
  background: var(--arl-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.booking-call-direct {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--arl-text-secondary);
}

.booking-call-direct a {
  color: var(--arl-blue-highway);
  font-weight: 700;
  text-decoration: none;
}

.booking-call-direct a:hover {
  text-decoration: underline;
}

/* ================= DUAL MEDIA STACK (BOTH VIDEOS VISIBLE IN 100% VIEWPORT) ================= */
.hero-media-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
  justify-content: space-between;
}

.hero-stacked-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: var(--arl-navy-dark);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hero-stacked-card .media-frame {
  width: 100%;
  height: 205px; /* Increased height so video is not cut */
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-stacked-card .media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-stacked-card:nth-child(2) .media-frame img {
  object-position: center 58%; /* Centers movers & furniture loading action perfectly */
}

/* Strategic Watermark Concealer Badge */
.watermark-cover-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: var(--arl-navy-dark);
  color: #ffffff;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  font-size: 0.68rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(56, 189, 248, 0.4);
  z-index: 10;
  letter-spacing: 0.3px;
}

.watermark-cover-badge i {
  color: var(--arl-blue-cyan);
}

.hero-card-footer-strip {
  background: rgba(10, 31, 61, 0.95);
  padding: 0.38rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-footer-strip span {
  font-size: 0.74rem;
  font-weight: 700;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-card-footer-strip span i {
  color: var(--arl-blue-cyan);
}

.hero-card-footer-strip a {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--arl-blue-cyan);
  text-decoration: none;
}

/* ================= ANIMATED "EXPLORE MORE" INDICATOR ================= */
.hero-explore-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.75rem;
  position: relative;
  z-index: 5;
}

.explore-more-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  color: #cbd5e1;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.explore-more-btn span {
  color: var(--arl-blue-cyan);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.explore-more-btn:hover span {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
}

.explore-indicator-arrow {
  font-size: 0.82rem;
  color: var(--arl-blue-cyan);
  animation: bounceArrow 1.5s infinite;
}

@keyframes bounceArrow {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(5px);
    opacity: 1;
  }
}

/* ================= FLEET SECTION ================= */
.section-fleet {
  padding: 4.5rem 0;
  background: #ffffff;
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fleet-vehicle-card {
  background: #ffffff;
  border: 1.5px solid var(--arl-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.fleet-vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--arl-blue-highway);
}

.vehicle-img-wrap {
  width: 100%;
  height: 250px;
  position: relative;
  background: var(--arl-bg-subtle);
  overflow: hidden;
}

.vehicle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fleet-vehicle-card:hover .vehicle-img-wrap img {
  transform: scale(1.04);
}

.vehicle-type-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--arl-navy-primary);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 5;
}

.vehicle-card-body {
  padding: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vehicle-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--arl-navy-primary);
  margin-bottom: 0.35rem;
}

.vehicle-desc {
  font-size: 0.88rem;
  color: var(--arl-text-secondary);
  margin-bottom: 1.15rem;
}

.vehicle-spec-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  background: var(--arl-bg-surface);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-xs);
  border: 1px solid var(--arl-border-light);
  margin-bottom: 1.15rem;
}

.spec-cell {
  display: flex;
  flex-direction: column;
}

.spec-cell span:first-child {
  font-size: 0.7rem;
  color: var(--arl-text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

.spec-cell span:last-child {
  font-size: 0.9rem;
  color: var(--arl-navy-primary);
  font-weight: 800;
}

.vehicle-features-list {
  list-style: none;
  margin-bottom: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.vehicle-features-list li {
  font-size: 0.86rem;
  color: var(--arl-text-main);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.vehicle-features-list li i {
  color: var(--arl-whatsapp);
}

.vehicle-card-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;
}

.vehicle-card-actions .btn {
  flex: 1;
}

/* ================= SPECIALIZED SERVICES SECTION ================= */
.section-services {
  padding: 4.5rem 0;
  background: var(--arl-bg-surface);
}

.services-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .services-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid-layout {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-item-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--arl-border-light);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--arl-blue-highway);
}

.service-thumbnail-wrap {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--arl-navy-dark);
}

.service-thumbnail-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-item-card:hover .service-thumbnail-wrap img {
  transform: scale(1.05);
}

.service-content-box {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-content-box h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--arl-navy-primary);
  margin-bottom: 0.45rem;
}

.service-content-box p {
  font-size: 0.88rem;
  color: var(--arl-text-secondary);
  line-height: 1.5;
  margin-bottom: 1.15rem;
  flex: 1;
}

.service-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.15rem;
}

.service-tags-row span {
  background: var(--arl-bg-subtle);
  color: var(--arl-navy-primary);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-xs);
  border: 1px solid var(--arl-border-light);
}

/* ================= SPOTLIGHT STRIP (NCR CONNECTIVITY) ================= */
.section-spotlight {
  padding: 2.25rem 0;
  background: #ffffff;
}

.spotlight-container-box {
  background: linear-gradient(135deg, var(--arl-navy-dark) 0%, var(--arl-navy-primary) 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 920px) {
  .spotlight-container-box {
    grid-template-columns: 1.22fr 1fr;
    align-items: center;
  }
}

.spotlight-img-box {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  position: relative;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.spotlight-img-box img,
.spotlight-banner-img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
}

.spotlight-text-box {
  padding: 2rem;
  color: #ffffff;
}

.spotlight-text-box h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.spotlight-text-box p {
  font-size: 0.92rem;
  color: #cbd5e1;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.spotlight-actions-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ================= NCR COVERAGE REGIONS ================= */
.section-coverage {
  padding: 4.5rem 0;
  background: #ffffff;
}

.coverage-main-card {
  background: linear-gradient(140deg, var(--arl-navy-dark) 0%, var(--arl-navy-primary) 100%);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2rem;
  color: #ffffff;
  box-shadow: var(--shadow-xl);
}

.coverage-intro-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.coverage-intro-block h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.coverage-intro-block p {
  color: #cbd5e1;
  font-size: 1rem;
}

.coverage-columns-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .coverage-columns-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.coverage-column-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.coverage-column-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.hub-indicator-tag {
  display: inline-block;
  background: var(--arl-blue-highway);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-xs);
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.coverage-column-card h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--arl-blue-cyan);
  margin-bottom: 0.85rem;
}

.coverage-column-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.coverage-column-card ul li {
  font-size: 0.86rem;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.coverage-column-card ul li i {
  color: var(--arl-blue-cyan);
  font-size: 0.78rem;
}

/* Frequent Routes Bar */
.daily-routes-bar {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.daily-routes-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 1.15rem;
}

.daily-routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.daily-route-item {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-xs);
  text-align: center;
  font-size: 0.84rem;
  font-weight: 600;
}

.daily-route-item span {
  display: block;
  font-size: 0.74rem;
  color: var(--arl-blue-cyan);
}
/* ================= GHAZIABAD & NEARBY LOCALITIES DIRECTORY ================= */
.section-localities {
  padding: 4.5rem 0;
  background: var(--arl-bg-surface);
  border-top: 1px solid var(--arl-border-light);
  border-bottom: 1px solid var(--arl-border-light);
}

.localities-master-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 992px) {
  .localities-master-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.locality-cat-card {
  background: #ffffff;
  border: 1px solid var(--arl-border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.locality-cat-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(2, 132, 199, 0.4);
}

.locality-cat-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--arl-border-light);
}

.locality-cat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  background: linear-gradient(135deg, var(--arl-navy-primary), var(--arl-blue-royal));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.locality-cat-header h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--arl-navy-primary);
  margin-bottom: 0.15rem;
}

.locality-cat-header p {
  font-size: 0.78rem;
  color: var(--arl-text-secondary);
  line-height: 1.35;
  margin: 0;
}

.locality-pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.loc-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.loc-pill-btn i {
  color: var(--arl-blue-highway);
  font-size: 0.78rem;
}

.loc-pill-btn:hover {
  background: #e0f2fe;
  border-color: var(--arl-blue-highway);
  color: var(--arl-blue-royal);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.15);
}

.loc-pill-btn.highlight-depot-pill {
  background: #f0fdf4;
  border-color: #86efac;
  color: #166534;
  font-weight: 800;
}

.loc-pill-btn.highlight-depot-pill i {
  color: #16a34a;
}

.loc-pill-btn.highlight-depot-pill:hover {
  background: #dcfce7;
  border-color: #22c55e;
  color: #14532d;
}

.locality-card-footer-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.4;
  background: #f8fafc;
  padding: 8px 12px;
  border-radius: 8px;
  border-left: 3px solid var(--arl-blue-highway);
  margin-top: auto;
}

.locality-card-footer-note i {
  color: var(--arl-blue-highway);
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.localities-bottom-cta {
  margin-top: 2.25rem;
  background: linear-gradient(135deg, var(--arl-navy-dark) 0%, var(--arl-navy-primary) 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  border: 1px solid rgba(56, 189, 248, 0.3);
  box-shadow: var(--shadow-lg);
}

.localities-bottom-cta h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.localities-bottom-cta p {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin: 0;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ================= WHY CHOOSE US ================= */
.section-why {
  padding: 4.5rem 0;
  background: var(--arl-bg-surface);
}

.why-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .why-split-grid {
    grid-template-columns: 1fr 1.05fr;
  }
}

.media-container-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: var(--arl-navy-dark);
}

.media-aspect-box {
  width: 100%;
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}

.media-aspect-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-features-stack {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin: 1.25rem 0 1.75rem;
}

.why-feature-row {
  display: flex;
  gap: 0.85rem;
}

.why-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-xs);
  background: var(--arl-blue-light);
  color: var(--arl-blue-royal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.why-feature-body h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--arl-navy-primary);
  margin-bottom: 0.15rem;
}

.why-feature-body p {
  font-size: 0.86rem;
  color: var(--arl-text-secondary);
}

/* ================= TESTIMONIALS SECTION ================= */
.section-testimonials {
  padding: 4.5rem 0;
  background: #ffffff;
}

.testimonials-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid-layout {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card-item {
  background: var(--arl-bg-surface);
  border: 1px solid var(--arl-border-light);
  border-radius: var(--radius-sm);
  padding: 1.6rem;
  transition: var(--transition);
}

.review-card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--arl-blue-highway);
}

.star-rating-row {
  color: #f59e0b;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.review-card-item p {
  font-size: 0.9rem;
  color: var(--arl-text-secondary);
  line-height: 1.55;
  margin-bottom: 1.15rem;
  font-style: italic;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--arl-navy-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.92rem;
}

.reviewer-meta h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--arl-navy-primary);
}

.reviewer-meta span {
  font-size: 0.74rem;
  color: var(--arl-text-muted);
}

/* ================= FAQ SECTION ================= */
.section-faq {
  padding: 5rem 0;
  background: var(--arl-bg-surface);
}

.faq-container-list {
  max-width: 860px;
  margin: 2.25rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-collapsible-item {
  background: #ffffff;
  border: 1.5px solid var(--arl-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.faq-collapsible-item:hover {
  border-color: #38bdf8;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.08);
}

.faq-collapsible-item.active {
  border-color: #0284c7;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.12);
}

.faq-toggle-btn {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--arl-navy-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease;
}

.faq-toggle-btn:hover {
  color: #0284c7;
}

.faq-collapsible-item.active .faq-toggle-btn {
  color: #0284c7;
  border-bottom: 1px solid #f1f5f9;
}

.faq-indicator-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: #f0f9ff;
  color: #0284c7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  transition: all 0.25s ease;
}

.faq-collapsible-item.active .faq-indicator-icon {
  background: #0284c7;
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-content-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.25s ease;
  padding: 0 1.5rem;
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.65;
}

.faq-collapsible-item.active .faq-content-drawer {
  max-height: 300px;
  padding: 1.15rem 1.5rem 1.4rem;
}

/* ================= CONTACT SECTION ================= */
.section-contact {
  padding: 5rem 0;
  background: #ffffff;
}

.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

@media (min-width: 992px) {
  .contact-split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.contact-details-box {
  background: var(--arl-bg-surface);
  border: 1.5px solid var(--arl-border-light);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 20px rgba(7, 21, 41, 0.05);
  display: flex;
  flex-direction: column;
}

.contact-details-box h3 {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--arl-navy-primary);
  margin-top: 0.5rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.5px;
}

.contact-details-box p.contact-desc {
  color: var(--arl-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.contact-rows-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 2rem;
}

.contact-row-entry {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  background: #ffffff;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--arl-border-light);
  transition: all 0.2s ease;
}

.contact-row-entry:hover {
  border-color: #38bdf8;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.08);
}

.contact-entry-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 10px;
  background: #f0f9ff;
  border: 1px solid rgba(2, 132, 199, 0.2);
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-entry-info h5 {
  font-size: 0.76rem;
  color: var(--arl-text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 2px;
}

.contact-entry-info a, .contact-entry-info p {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--arl-navy-primary);
  text-decoration: none;
  margin: 0;
}

.contact-entry-info a:hover {
  color: #0284c7;
}

.map-embed-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  box-shadow: 0 4px 20px rgba(7, 21, 41, 0.06);
  border: 1.5px solid var(--arl-border-light);
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  display: block;
}

/* ================= CORPORATE FOOTER ================= */
.site-corporate-footer {
  background: #071529;
  color: #94a3b8;
  padding: 4rem 0 7.5rem; /* Generous bottom clearance (7.5rem) so floating bars/widgets NEVER overlap footer text! */
  font-size: 0.88rem;
  border-top: 2px solid rgba(2, 132, 199, 0.3);
  position: relative;
  font-family: 'Poppins', -apple-system, sans-serif;
}

.footer-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-content-grid {
    grid-template-columns: 1.4fr 1.05fr 1fr 1.15fr;
    gap: 2rem;
  }
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
}

.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.footer-logo-img {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  border-radius: 50%;
  background: #ffffff;
  padding: 2px;
  border: 2px solid #0284c7;
  object-fit: contain;
}

.footer-brand-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  line-height: 1.1;
  display: block;
}

.footer-brand-tagline {
  font-size: 0.72rem;
  color: #38bdf8;
  font-weight: 600;
  display: block;
  letter-spacing: 0.2px;
}

.footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0.65rem 0 0.85rem;
}

.footer-badge-pill {
  font-size: 0.72rem;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 6px;
  padding: 3px 8px;
  white-space: nowrap;
}

.footer-links-column h5 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.15rem;
  letter-spacing: 0.2px;
  position: relative;
  padding-bottom: 0.45rem;
}

.footer-links-column h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: #0284c7;
  border-radius: 2px;
}

.footer-links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links-column li {
  list-style: none;
}

.footer-links-column a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.footer-links-column a i {
  font-size: 0.75rem;
  color: #0284c7;
}

.footer-links-column a:hover {
  color: #38bdf8;
  transform: translateX(3px);
}

.footer-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.footer-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  width: fit-content;
}

.footer-btn-call {
  background: rgba(56, 189, 248, 0.12);
  color: #ffffff;
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.footer-btn-call:hover {
  background: #0284c7;
  color: #ffffff;
}

.footer-btn-whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #4ade80;
  border: 1px solid rgba(37, 211, 102, 0.35);
}

.footer-btn-whatsapp:hover {
  background: #25d366;
  color: #ffffff;
}

.footer-bottom-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: #64748b;
}

.footer-bottom-strip a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-bottom-strip a:hover {
  color: #38bdf8;
}

/* ================= FLOATING PERSISTENT QUICK CONTACT & CALL/WHATSAPP POPUP ================= */
.arl-floating-contact-wrapper {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 999999 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 12px !important;
  pointer-events: none;
}

.arl-floating-popup-card,
.arl-floating-buttons-stack {
  pointer-events: auto;
}

/* Floating Popup Card (Speech Bubble / Toast) */
.arl-floating-popup-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  width: 320px;
  max-width: calc(100vw - 48px);
  box-shadow: 0 16px 40px rgba(7, 21, 41, 0.22), 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1.5px solid rgba(2, 132, 199, 0.25);
  position: relative;
  animation: arlCardSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: all 0.3s ease;
  font-family: 'Poppins', -apple-system, sans-serif;
}

.arl-floating-popup-card.closed {
  display: none !important;
}

.arl-floating-popup-card.collapsed-for-footer {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(18px) scale(0.92) !important;
  pointer-events: none !important;
}

@keyframes arlCardSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.arl-popup-close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 24px;
  height: 24px;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.arl-popup-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.arl-popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0369a1;
  background: #e0f2fe;
  padding: 3px 8px;
  border-radius: 20px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.arl-live-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  animation: arlLiveDot 1.4s infinite;
}

@keyframes arlLiveDot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.arl-popup-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #071529;
  margin-bottom: 4px;
  line-height: 1.25;
}

.arl-popup-desc {
  font-size: 0.78rem;
  color: #475569;
  margin-bottom: 12px;
  line-height: 1.4;
}

.arl-popup-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.arl-popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.arl-popup-btn-call {
  background: #071529;
  color: #ffffff;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.arl-popup-btn-call:hover {
  background: #0284c7;
  color: #ffffff;
}

.arl-popup-btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.arl-popup-btn-whatsapp:hover {
  background: #1eb956;
  color: #ffffff;
}

/* Floating Buttons Stack */
.arl-floating-buttons-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.arl-float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50px;
  position: relative;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(7, 21, 41, 0.28);
}

.arl-float-btn:hover {
  transform: translateY(-3px) scale(1.04);
}

/* Floating Call Button */
.arl-float-call {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #071529 0%, #1a4f9c 100%);
  color: #ffffff;
  border: 2px solid rgba(56, 189, 248, 0.45);
  font-size: 1.15rem;
}

.arl-ring-icon {
  animation: arlPhoneShake 2.4s ease-in-out infinite;
}

@keyframes arlPhoneShake {
  0%, 80%, 100% { transform: rotate(0deg); }
  82% { transform: rotate(14deg); }
  84% { transform: rotate(-14deg); }
  86% { transform: rotate(10deg); }
  88% { transform: rotate(-10deg); }
  90% { transform: rotate(0deg); }
}

/* Floating WhatsApp Button */
.arl-float-whatsapp {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  border: 2px solid #ffffff;
  font-size: 1.85rem;
}

/* Floating Tooltip Pill */
.arl-float-tooltip {
  position: absolute;
  right: 70px;
  background: #071529;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.arl-float-btn:hover .arl-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Radar Pulse Wave Animation */
.arl-pulse-ring {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.8;
  animation: arlPulseWave 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
  pointer-events: none;
}

.arl-pulse-ring.delay {
  animation-delay: 1s;
}

@keyframes arlPulseWave {
  0% { transform: scale(0.95); opacity: 0.9; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Mobile Fixed Bottom Quick Action Bar */
.arl-mobile-sticky-bar {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 74px !important;
  }

  .arl-floating-contact-wrapper {
    bottom: 74px !important;
    right: 14px !important;
  }

  .arl-floating-popup-card {
    width: 290px;
    padding: 12px 14px;
  }

  .arl-float-call {
    display: none !important;
  }

  .arl-float-whatsapp {
    width: 54px;
    height: 54px;
    font-size: 1.6rem;
  }

  .arl-mobile-sticky-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 60px !important;
    background: #ffffff !important;
    box-shadow: 0 -4px 18px rgba(7, 21, 41, 0.2) !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    z-index: 999999 !important;
    border-top: 1.5px solid rgba(2, 132, 199, 0.3) !important;
  }

  .arl-mobile-bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Poppins', -apple-system, sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: #ffffff;
  }

  .arl-mobile-call-btn {
    background: linear-gradient(135deg, #071529 0%, #0a1f3d 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .arl-mobile-call-btn i {
    color: #38bdf8;
    font-size: 1.05rem;
  }

  .arl-mobile-whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  }

  .arl-mobile-whatsapp-btn i {
    color: #ffffff;
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   BIDIRECTIONAL ROUTE EXCHANGE NETWORK STYLING
   ========================================================================== */
.section-route-exchange {
  padding: 4.5rem 0;
  background: #f8fafc;
  position: relative;
  border-top: 1px solid #e2e8f0;
}

.route-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.75rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 900px) {
  .route-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.route-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 0.5rem;
}

.route-filter-btn {
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1.5px solid #cbd5e1;
  background: #f8fafc;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: inherit;
}

.route-filter-btn:hover {
  background: #e0f2fe;
  color: #0369a1;
  border-color: #38bdf8;
  transform: translateY(-1px);
}

.route-filter-btn.active {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.route-exchange-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.route-exchange-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.12);
  border-color: #0284c7;
}

.route-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 0.85rem;
  align-self: flex-start;
}

.route-badge-popular {
  background: #eff6ff;
  color: #0284c7;
  border: 1px solid #bae6fd;
}

.route-badge-industrial {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.route-badge-residential {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.route-endpoints-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed #e2e8f0;
}

.route-point {
  flex: 1;
}

.route-point-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: #071529;
  line-height: 1.25;
  margin-bottom: 2px;
}

.route-point-sub {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.route-swap-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.route-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0.85rem;
}

.route-chip {
  font-size: 0.74rem;
  background: #f1f5f9;
  color: #334155;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.route-chip i {
  color: #0284c7;
}

.route-cargo-desc {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.45;
  margin-bottom: 1rem;
  background: #f8fafc;
  padding: 8px 10px;
  border-radius: 6px;
  border-left: 3px solid #0284c7;
}

.route-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid #f1f5f9;
  flex-wrap: wrap;
}

.route-rate-tag {
  font-size: 1.15rem;
  font-weight: 800;
  color: #071529;
}

.route-rate-tag small {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 600;
  display: block;
}

.route-card-actions {
  display: flex;
  gap: 6px;
}

.route-btn {
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
}

.route-btn-wa {
  background: #25d366;
  color: #ffffff;
}

.route-btn-wa:hover {
  background: #1eb857;
  color: #ffffff;
}

.route-btn-call {
  background: #071529;
  color: #ffffff;
}

.route-btn-call:hover {
  background: #0f274a;
  color: #ffffff;
}

.route-master-table-wrapper {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 1.25rem;
  overflow-x: auto;
  margin-top: 2rem;
}

.route-master-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.route-master-table th {
  background: #071529;
  color: #ffffff;
  padding: 12px 14px;
  font-size: 0.84rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.3px;
}

.route-master-table th:first-child {
  border-top-left-radius: 8px;
}

.route-master-table th:last-child {
  border-top-right-radius: 8px;
}

.route-master-table td {
  padding: 11px 14px;
  font-size: 0.84rem;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.route-master-table tr:hover {
  background: #f8fafc;
}

.route-master-table tr.highlight-row {
  background: #f0fdf4;
}

@media (max-width: 768px) {
  .route-featured-grid {
    grid-template-columns: 1fr;
  }
}

