/* ============================================================
   TIARA LOGISTICS — style.css
   Premium Corporate Freight & Logistics Theme
   Primary: #1a2744 | Accent: #f5821f
   ============================================================ */

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --navy:         #1a2744;
  --navy-dark:    #111c35;
  --navy-light:   #253459;
  --orange:       #f5821f;
  --orange-dark:  #d96d0a;
  --orange-light: #ff9d4d;
  --white:        #ffffff;
  --off-white:    #f8f9fc;
  --gray-100:     #f4f5f8;
  --gray-200:     #e8eaf0;
  --gray-400:     #9aa0b8;
  --gray-600:     #5a6178;
  --gray-800:     #2d3248;
  --text:         #2d3248;
  --text-light:   #5a6178;
  --shadow-sm:    0 2px 12px rgba(26,39,68,.08);
  --shadow-md:    0 8px 32px rgba(26,39,68,.14);
  --shadow-lg:    0 20px 60px rgba(26,39,68,.18);
  --shadow-orange:0 8px 32px rgba(245,130,31,.30);
  --radius:       10px;
  --radius-lg:    18px;
  --transition:   .3s ease;
  --font-head:    'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }

img { max-width: 100%; height: auto; }

/* ── Page Loader ──────────────────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
#page-loader.loaded { opacity: 0; visibility: hidden; }

.loader-inner { text-align: center; }

.loader-logo {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 4px;
  margin-bottom: 24px;
}
.loader-logo span { color: var(--orange); }

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-progress {
  height: 100%;
  background: var(--orange);
  border-radius: 99px;
  animation: loaderAnim 1.2s ease forwards;
}
@keyframes loaderAnim {
  0%   { width: 0; }
  100% { width: 100%; }
}

/* ── Navbar ───────────────────────────────────────────────── */
#mainNav {
  background: var(--navy);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--transition), background var(--transition);
}
#mainNav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  background: var(--navy-dark);
}

.navbar-brand { padding: 14px 0; }

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 8px;
  margin-right: 10px;
  font-size: 1rem;
  color: var(--white);
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
}
.logo-accent { color: var(--orange); }

.nav-link {
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85) !important;
  padding: 28px 16px !important;
  letter-spacing: .5px;
  position: relative;
  transition: color var(--transition) !important;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white) !important;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.dropdown-menu {
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 12px 0;
  box-shadow: var(--shadow-lg);
  min-width: 240px;
}
.dropdown-item {
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  font-family: var(--font-body);
  padding: 10px 20px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.dropdown-item i { color: var(--orange); width: 16px; text-align: center; font-size: .8rem; }
.dropdown-item:hover { background: rgba(245,130,31,.12); color: var(--white); padding-left: 26px; }
.dropdown-item.view-all { color: var(--orange); font-weight: 600; }
.dropdown-divider { border-color: rgba(255,255,255,.08); margin: 6px 0; }

/* CTA Button */
.btn-accent {
  background: var(--orange);
  color: var(--white) !important;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 8px;
  border: none;
  letter-spacing: .5px;
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow-orange);
}
.btn-accent:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(245,130,31,.4);
  color: var(--white) !important;
}
.btn-accent::after { display: none !important; }

/* ── Section Utilities ────────────────────────────────────── */
section { padding: 90px 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-label::before {
  content: '—— ';
  opacity: .5;
}
.section-label::after {
  content: ' ——';
  opacity: .5;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-title span { color: var(--orange); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}

.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,.7); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  letter-spacing: .3px;
  transition: all var(--transition);
  box-shadow: var(--shadow-orange);
}
.btn-primary-custom:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(245,130,31,.4);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  padding: 13px 30px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.4);
  letter-spacing: .3px;
  transition: all var(--transition);
}
.btn-outline-custom:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  padding: 13px 30px;
  border-radius: 8px;
  border: 2px solid var(--navy);
  transition: all var(--transition);
}
.btn-navy:hover {
  background: transparent;
  color: var(--navy);
  transform: translateY(-3px);
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,130,31,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 20%, rgba(37,52,89,.8) 0%, transparent 70%),
    linear-gradient(135deg, #0d1829 0%, #1a2744 40%, #1d3060 70%, #142038 100%);
}

/* Animated grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Decorative dots */
.hero-dots {
  position: absolute;
  top: 60px;
  right: 60px;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(rgba(245,130,31,.3) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: .5;
}

/* Orange diagonal accent */
.hero-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(245,130,31,.06) 100%);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Animated truck silhouette */
.hero-truck-silhouette {
  position: absolute;
  right: 5%;
  bottom: 0;
  opacity: .04;
  font-size: 22rem;
  color: var(--white);
  line-height: 1;
}

.hero-content { position: relative; z-index: 2; padding: 120px 0 80px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,130,31,.15);
  border: 1px solid rgba(245,130,31,.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--orange-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge i { font-size: .7rem; }

.hero-headline {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-headline .highlight {
  color: var(--orange);
  position: relative;
}
.hero-headline .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  opacity: .4;
}

.hero-subtext {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.7);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}
.hero-stat-item {}
.hero-stat-value {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: .4; transform: scaleY(.7); }
}

/* ── Company Intro ────────────────────────────────────────── */
.intro-section { background: var(--white); }

.intro-text-wrap {}
.intro-text-wrap p { color: var(--text-light); font-size: 1.05rem; line-height: 1.9; }

.intro-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.intro-stat-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.intro-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.intro-stat-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
  transform: translateY(-4px);
}
.intro-stat-card:hover::before { transform: scaleX(1); }

.intro-stat-value {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.intro-stat-suffix { font-size: 1.6rem; }
.intro-stat-label {
  font-size: .8rem;
  color: var(--text-light);
  margin-top: 8px;
  letter-spacing: .5px;
  font-weight: 500;
}

/* ── Why Choose Us ───────────────────────────────────────── */
.why-section { background: var(--gray-100); }

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.why-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-orange);
}
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 22px;
  box-shadow: var(--shadow-orange);
}
.why-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.why-card p { color: var(--text-light); font-size: .95rem; line-height: 1.7; }

/* ── Service Cards ───────────────────────────────────────── */
.services-section { background: var(--white); }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  height: 100%;
  border: 1.5px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(245,130,31,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
  margin-bottom: 18px;
  transition: all var(--transition);
}
.service-card:hover .service-card-icon {
  background: var(--orange);
  color: var(--white);
}

.service-card h5 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-light);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.service-card .learn-more {
  font-size: .85rem;
  font-weight: 600;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-card:hover .learn-more { gap: 10px; }

/* ── Stats Counter ───────────────────────────────────────── */
.stats-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

.stat-counter-card {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}
.stat-counter-card::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.1);
}
.stat-counter-card:last-child::after { display: none; }

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stat-suffix { font-size: clamp(1.5rem, 3vw, 2.5rem); }
.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 12px;
  display: block;
}

/* ── Process Timeline ────────────────────────────────────── */
.process-section { background: var(--gray-100); }

.process-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 30px;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 57px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--gray-200);
}
.process-track::after {
  content: '';
  position: absolute;
  top: 57px;
  left: 5%;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 1.5s ease;
}
.process-track.animated::after { width: 90%; }

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.step-bubble {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 3px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gray-400);
  margin-bottom: 20px;
  transition: all var(--transition);
  position: relative;
}
.process-step.active .step-bubble {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(245,130,31,.2);
}

.step-num {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 22px;
  height: 22px;
  background: var(--navy);
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h5 {
  font-size: .95rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.process-step p {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Industries ──────────────────────────────────────────── */
.industries-section { background: var(--white); }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.industry-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 30px 16px;
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: default;
}
.industry-card:hover {
  background: var(--navy);
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.industry-card:hover .industry-icon { background: var(--orange); color: var(--white); }
.industry-card:hover h6 { color: var(--white); }

.industry-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
  margin: 0 auto 14px;
  transition: all var(--transition);
}
.industry-card h6 {
  font-size: .85rem;
  letter-spacing: .5px;
  margin: 0;
  transition: color var(--transition);
}

/* ── Fleet Swiper ────────────────────────────────────────── */
.fleet-section { background: var(--gray-100); }

.fleet-swiper { padding-bottom: 50px !important; }

.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.fleet-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.fleet-card-visual {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,.12);
  position: relative;
  overflow: hidden;
}
.fleet-card-visual::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
}
.fleet-icon-large {
  position: absolute;
  font-size: 5rem;
  color: rgba(255,255,255,.07);
}
.fleet-icon-main {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  color: var(--orange);
  background: rgba(245,130,31,.1);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-card-body { padding: 22px; }
.fleet-card-body h5 { font-size: 1rem; margin-bottom: 8px; }
.fleet-card-body p { font-size: .875rem; color: var(--text-light); line-height: 1.6; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-section { background: var(--navy); position: relative; overflow: hidden; }
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(245,130,31,.05) 0%, transparent 70%);
}

.testimonial-swiper { padding-bottom: 60px !important; }

.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(245,130,31,.3);
}

.testimonial-stars { color: var(--orange); font-size: .9rem; margin-bottom: 16px; letter-spacing: 2px; }

.testimonial-text {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  padding-left: 24px;
}
.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 3rem;
  color: var(--orange);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: .6;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: var(--white);
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}
.author-company { font-size: .8rem; color: rgba(255,255,255,.5); }

/* Swiper nav */
.swiper-pagination-bullet { background: rgba(255,255,255,.3); opacity: 1; width: 8px; height: 8px; }
.swiper-pagination-bullet-active { background: var(--orange); width: 24px; border-radius: 4px; }

.swiper-button-next, .swiper-button-prev {
  color: var(--orange);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(245,130,31,.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: .9rem; font-weight: 700; }

/* Fleet swiper specific */
.fleet-pagination .swiper-pagination-bullet { background: var(--gray-400); }
.fleet-pagination .swiper-pagination-bullet-active { background: var(--orange); }

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.1) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
.cta-section::after {
  content: '\f0d1';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10rem;
  color: rgba(255,255,255,.08);
  line-height: 1;
}

.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
}
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  padding: 16px 36px;
  border-radius: 8px;
  transition: all var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.btn-cta-white:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
}

/* ── Contact Form ────────────────────────────────────────── */
.contact-section { background: var(--gray-100); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.form-label {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-control, .form-select {
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .95rem;
  color: var(--text);
  background: var(--gray-100);
  transition: all var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,130,31,.12);
  background: var(--white);
  outline: none;
}
.form-control::placeholder { color: var(--gray-400); }

textarea.form-control { resize: vertical; min-height: 130px; }

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #4caf50;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  color: #2e7d32;
  font-weight: 600;
}
.form-success.show { display: block; }

/* Contact Info Cards */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1.5px solid var(--gray-200);
  transition: all var(--transition);
  height: 100%;
}
.contact-info-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
  transform: translateY(-4px);
}
.contact-info-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}
.contact-info-body h6 {
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}
.contact-info-body p, .contact-info-body a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}
.contact-info-body a:hover { color: var(--orange); }

/* ── Map ─────────────────────────────────────────────────── */
.map-section { padding: 0; }
.map-wrap {
  position: relative;
  overflow: hidden;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(20%) contrast(1.05);
}

/* ── Page Banner ─────────────────────────────────────────── */
.page-banner {
  background: var(--navy);
  padding: 100px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
 /* background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(245,130,31,.1) 0%, transparent 70%),
    linear-gradient(135deg, #0d1829 0%, #1a2744 60%, #1d3060 100%);*/
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-banner-content { position: relative; z-index: 1; }

.page-banner h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}
.breadcrumb-item { font-size: .9rem; color: rgba(255,255,255,.55); }
.breadcrumb-item a { color: var(--orange); }
.breadcrumb-item.active { color: rgba(255,255,255,.55); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,130,31,.15);
  border: 1px solid rgba(245,130,31,.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--orange-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
/* ===== IMAGE SECTIONS ===== */
.content-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,39,68,0.2);
}
.content-image-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.content-image-wrap:hover img { transform: scale(1.04); }
.content-image-wrap .img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #f5821f;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* ── About Page ──────────────────────────────────────────── */
.story-section { background: var(--white); }
.story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.story-img img { width: 100%; display: block; }
.story-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-family: var(--font-head);
  box-shadow: var(--shadow-orange);
}
.story-badge .num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.story-badge .txt { font-size: .75rem; opacity: .9; }

.story-section p { color: var(--text-light); line-height: 1.9; }

.mv-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  border-top: 4px solid var(--orange);
  transition: all var(--transition);
}
.mv-card:hover {
  background: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.mv-card:hover h5, .mv-card:hover p { color: rgba(255,255,255,.85); }
.mv-card:hover .mv-icon { background: var(--orange); color: var(--white); }

.mv-icon {
  width: 52px;
  height: 52px;
  background: rgba(245,130,31,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
  margin-bottom: 16px;
  transition: all var(--transition);
}
.mv-card h5 { font-size: 1.1rem; margin-bottom: 12px; transition: color var(--transition); }
.mv-card p { font-size: .9rem; color: var(--text-light); line-height: 1.7; transition: color var(--transition); }

/* Values Grid */
.values-section { background: var(--gray-100); }

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.value-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
  transform: translateY(-5px);
}
.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: var(--shadow-orange);
}
.value-card h5 { margin-bottom: 12px; }
.value-card p { font-size: .9rem; color: var(--text-light); line-height: 1.7; }

/* Safety Section */
.safety-section { background: var(--navy); }
.safety-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.safety-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  line-height: 1.6;
}
.safety-list li:last-child { border: none; }
.safety-list li i {
  color: var(--orange);
  font-size: .9rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.trust-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  text-align: center;
  transition: all var(--transition);
}
.trust-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(245,130,31,.4);
  transform: translateY(-5px);
}
.trust-icon {
  width: 60px;
  height: 60px;
  background: rgba(245,130,31,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  margin: 0 auto 18px;
  transition: all var(--transition);
}
.trust-card:hover .trust-icon { background: var(--orange); color: var(--white); }
.trust-card h5 { color: var(--white); font-size: 1rem; margin-bottom: 10px; }
.trust-card p { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.6; }

/* ── Service Detail Pages ────────────────────────────────── */
.service-overview { background: var(--white); }

.overview-text p { color: var(--text-light); font-size: 1.05rem; line-height: 1.9; margin-bottom: 20px; }

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--text);
  line-height: 1.5;
}
.features-list li i {
  color: var(--orange);
  margin-top: 3px;
  font-size: .9rem;
  flex-shrink: 0;
}

.overview-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overview-visual-icon {
  font-size: 8rem;
  color: rgba(255,255,255,.07);
  position: absolute;
}
.overview-visual-main {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
}
.overview-visual-main .big-icon {
  font-size: 4rem;
  color: var(--orange);
  background: rgba(245,130,31,.1);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.overview-visual-main h4 { color: var(--white); margin-bottom: 10px; }
.overview-visual-main p { color: rgba(255,255,255,.6); font-size: .9rem; }

/* Benefits Section */
.benefits-section { background: var(--gray-100); }

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  transition: all var(--transition);
  border: 2px solid transparent;
  display: flex;
  gap: 18px;
}
.benefit-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
  transform: translateY(-4px);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(245,130,31,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: all var(--transition);
}
.benefit-card:hover .benefit-icon { background: var(--orange); color: var(--white); }
.benefit-body h5 { font-size: 1rem; margin-bottom: 8px; }
.benefit-body p { font-size: .88rem; color: var(--text-light); line-height: 1.6; margin: 0; }

/* Process Steps */
.process-steps-section { background: var(--white); }

.process-step-card {
  position: relative;
  padding-left: 70px;
  padding-bottom: 36px;
  border-left: 2px solid var(--gray-200);
  margin-left: 24px;
}
.process-step-card:last-child { border-left-color: transparent; padding-bottom: 0; }

.step-number {
  position: absolute;
  left: -24px;
  top: 0;
  width: 46px;
  height: 46px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.step-content h5 { font-size: 1.05rem; margin-bottom: 8px; color: var(--navy); }
.step-content p { color: var(--text-light); font-size: .92rem; line-height: 1.7; }

/* FAQ Accordion */
.faq-section { background: var(--gray-100); }

.accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: var(--radius) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.accordion-button {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: none;
  padding: 20px 24px;
  border-radius: var(--radius) !important;
}
.accordion-button:not(.collapsed) {
  background: var(--navy);
  color: var(--white);
  box-shadow: none;
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a2744'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f5821f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
  background: var(--white);
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: .93rem;
  line-height: 1.8;
}

/* ── Insurance Page ──────────────────────────────────────── */
.insurance-overview { background: var(--white); }

.insurance-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-left: 4px solid var(--orange);
  transition: all var(--transition);
}
.insurance-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }

.coverage-amount {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.disclaimer-box {
  background: #fff8f0;
  border: 1.5px solid rgba(245,130,31,.3);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.disclaimer-box h6 { color: var(--orange); font-weight: 700; margin-bottom: 12px; font-size: .85rem; letter-spacing: 1px; text-transform: uppercase; }
.disclaimer-box p { font-size: .88rem; color: var(--text-light); line-height: 1.8; }

/* ── Hours Table ─────────────────────────────────────────── */
.hours-table { width: 100%; }
.hours-table tr { border-bottom: 1px solid var(--gray-200); }
.hours-table tr:last-child { border: none; }
.hours-table td { padding: 12px 0; font-size: .95rem; }
.hours-table td:first-child { color: var(--navy); font-weight: 600; }
.hours-table td:last-child { color: var(--text-light); text-align: right; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--navy-dark); }

.footer-top { padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,.06); }

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-about {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.footer-links a i { font-size: .65rem; color: var(--orange); transition: transform var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-links a:hover i { transform: translateX(2px); }

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.fc-icon {
  width: 36px;
  height: 36px;
  background: rgba(245,130,31,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: .85rem;
  flex-shrink: 0;
}
.footer-contact-list span,
.footer-contact-list a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}
.footer-contact-list a:hover { color: var(--orange); }

.footer-bottom {
  padding: 22px 0;
  background: rgba(0,0,0,.2);
}
.footer-copyright {
  color: rgba(255,255,255,.35);
  font-size: .82rem;
  margin: 0;
}
.footer-legal {
  color: rgba(255,255,255,.3);
  font-size: .78rem;
  margin: 0;
}
.footer-legal a { color: rgba(255,255,255,.4); }
.footer-legal a:hover { color: var(--orange); }

/* ── Service Page Sidebar CTA ────────────────────────────── */
.sidebar-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.sidebar-cta h4 { color: var(--white); margin-bottom: 12px; }
.sidebar-cta p { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 24px; }

.service-nav {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-nav h6 {
  background: var(--navy);
  color: var(--white);
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 20px;
  margin: 0;
}
.service-nav ul {
  list-style: none;
  padding: 10px 0;
  margin: 0;
}
.service-nav ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: .88rem;
  color: var(--text);
  transition: all var(--transition);
}
.service-nav ul li a i { color: var(--orange); width: 16px; font-size: .8rem; }
.service-nav ul li a:hover, .service-nav ul li a.current {
  background: rgba(245,130,31,.08);
  color: var(--orange);
  padding-left: 26px;
}
.service-nav ul li { border-bottom: 1px solid var(--gray-100); }
.service-nav ul li:last-child { border: none; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
  section { padding: 70px 0; }
  .nav-link { padding: 12px 0 !important; }
  .nav-link::after { display: none; }

  .industry-grid { grid-template-columns: repeat(3, 1fr); }

  .process-track {
    flex-direction: column;
    align-items: stretch;
  }
  .process-track::before, .process-track::after { display: none; }
  .process-step {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    padding: 0 0 24px;
  }
  .step-bubble { margin-bottom: 0; flex-shrink: 0; }

  .intro-stat-grid { grid-template-columns: 1fr 1fr; }

  .features-list { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
  section { padding: 56px 0; }

  .hero-section { min-height: 80vh; }
  .hero-stats { gap: 24px; }
  .hero-truck-silhouette { display: none; }

  .industry-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-form-wrap { padding: 28px 20px; }

  .stat-counter-card::after { display: none; }

  .intro-stat-grid { grid-template-columns: 1fr 1fr; }

  .footer-top { padding: 50px 0 40px; }
}

@media (max-width: 575.98px) {
  .hero-headline { letter-spacing: -.5px; }
  .hero-cta { flex-direction: column; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Utility Classes ─────────────────────────────────────── */
.text-orange { color: var(--orange) !important; }
.bg-navy { background-color: var(--navy) !important; }
.bg-orange { background-color: var(--orange) !important; }
.bg-off-white { background-color: var(--off-white) !important; }

.divider-orange {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
  margin: 16px 0 28px;
}

/* AOS override for better performance */
[data-aos] { will-change: transform, opacity; }
