/* ═══════════════════════════════════════════════════════════════════
   Woodland Hauling Transport — Main Stylesheet
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. Custom Properties ──────────────────────────────────────────── */
:root {
  --primary:        #1A7878;
  --primary-dark:   #0f5252;
  --primary-light:  #268e8e;
  --secondary:      #F7941D;
  --secondary-dark: #d97d0a;
  --accent:         #F9C74F;
  --teal:           #1A7878;
  --purple:         #7C3AED;
  --red:            #DC2626;
  --gold:           #D97706;
  --dark:           #0a2020;
  --text:           #2d3748;
  --text-muted:     #718096;
  --border:         #e2e8f0;
  --bg-light:       #F7FAFC;
  --bg-card:        #FFFFFF;
  --white:          #FFFFFF;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.12), 0 4px 10px rgba(0,0,0,0.08);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.16);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:  'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container:  1200px;
  --nav-h:      72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── 3. Container ───────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── 4. Section Utilities ───────────────────────────────────────────── */
.section {
  padding: 96px 0;
}
.section-light {
  background: var(--bg-light);
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary);
  background: rgba(247,148,29,0.1);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -.5px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── 5. Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  text-align: center;
}
.btn-primary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(247,148,29,0.35);
}
.btn-primary:hover {
  background: var(--secondary-dark);
  box-shadow: 0 6px 20px rgba(247,148,29,0.45);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-lg {
  padding: 15px 32px;
  font-size: 16px;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── 6. Navbar ──────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,32,32,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}
.logo-icon {
  width: 40px;
  height: 25px;
  color: var(--secondary);
}
.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-img--footer {
  height: 48px;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .5px;
  color: var(--secondary);
  text-transform: uppercase;
}
.logo-text strong {
  font-weight: 800;
  color: var(--white);
}
.logo-text em {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-top: -3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
  transform: translateX(-50%);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 28px);
}
.nav-cta {
  margin-left: 8px;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
  margin-left: auto;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── 7. Mobile Menu ─────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(10,32,32,0.98);
  backdrop-filter: blur(14px);
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open {
  max-height: 480px;
}
.mobile-menu ul {
  padding: 12px 0 24px;
}
.mobile-link {
  display: block;
  padding: 14px 28px;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}
.mobile-cta {
  color: var(--secondary) !important;
  font-weight: 700;
  border-bottom: none !important;
}

/* ── 8. Hero ────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  padding-top: var(--nav-h);
}

/* Full-cover background video layer */
.hero-bg-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-bg-video .hero-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-bg-video .hero-vid--active {
  opacity: 1;
}

/* Dark overlay + subtle dot pattern on top of video */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(10,32,32,0.55) 0%, rgba(10,32,32,0.72) 100%);
}

.hero-road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(10,32,32,0.8), transparent);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0%   { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(249,199,79,0.12);
  border: 1px solid rgba(249,199,79,0.25);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: .5px;
  animation: fadeInDown 0.8s ease forwards;
}
.maple { font-style: normal; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -1px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.1s ease both;
}
.text-gradient {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 36px;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
  display: block;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* .hero-visual, .hero-video-wrap, .hero-vid rules moved to .hero-bg-video above */
.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(247,148,29,0.15) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-scroll-btn {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 16px;
  animation: bounce 2s ease-in-out infinite;
  transition: var(--transition);
  z-index: 2;
}
.hero-scroll-btn:hover {
  background: rgba(255,255,255,0.2);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:none; } }
@keyframes fadeInUp   { from { opacity:0; transform:translateY(30px);  } to { opacity:1; transform:none; } }
@keyframes fadeInRight{ from { opacity:0; transform:translateX(40px);  } to { opacity:1; transform:none; } }

/* ── 9. Trusted Strip ───────────────────────────────────────────────── */
.trusted {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}
.trusted-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-bottom: 16px;
}
.trusted-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
}
.trusted-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: .3px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.trusted-item i { color: rgba(247,148,29,0.7); }
.trusted-item:hover { color: rgba(255,255,255,0.8); }

/* ── 10. Services ───────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: 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(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(27,58,107,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: var(--white); }
.service-icon--orange { background: rgba(247,148,29,0.1); color: var(--secondary); }
.service-card:hover .service-icon--orange { background: var(--secondary); color: var(--white); }
.service-icon--teal   { background: rgba(13,148,136,0.1); color: var(--teal); }
.service-card:hover .service-icon--teal   { background: var(--teal); color: var(--white); }
.service-icon--gold   { background: rgba(217,119,6,0.1); color: var(--gold); }
.service-card:hover .service-icon--gold   { background: var(--gold); color: var(--white); }
.service-icon--red    { background: rgba(220,38,38,0.1); color: var(--red); }
.service-card:hover .service-icon--red    { background: var(--red); color: var(--white); }
.service-icon--purple { background: rgba(124,58,237,0.1); color: var(--purple); }
.service-card:hover .service-icon--purple { background: var(--purple); color: var(--white); }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
  font-size: 11px;
  top: 1px;
}

/* ── 11. Stats Section ──────────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  animation-delay: var(--delay, 0s);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  display: inline-block;
  line-height: 1;
}
.stat-unit {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
}
.stat-label {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  letter-spacing: .3px;
}

/* ── 12. About ──────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap { position: relative; }
.about-img-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-scene { width: 100%; height: auto; display: block; }
.about-real-img { width: 100%; height: auto; display: block; object-fit: cover; aspect-ratio: 4/3; }
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.about-badge-float i {
  font-size: 24px;
  color: var(--secondary);
}
.about-badge-float strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.about-badge-float span {
  font-size: 12px;
  color: var(--text-muted);
}

.about-content .section-title { text-align: left; }
.about-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.about-value:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.about-value i {
  font-size: 18px;
  color: var(--secondary);
  margin-top: 2px;
  flex-shrink: 0;
}
.about-value strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.about-value span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── 13. Why Choose Us ──────────────────────────────────────────────── */
.why-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(27,58,107,0.4) 0%, transparent 70%);
}
.why-section .section-tag { background: rgba(247,148,29,0.15); }
.why-section .section-title,
.why-section .section-subtitle { color: var(--white); }
.why-section .section-subtitle { color: rgba(255,255,255,0.6); }
.why-section .section-header { position: relative; z-index: 1; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.why-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(247,148,29,0.4);
  transform: translateY(-4px);
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(247,148,29,0.15);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--secondary);
  color: var(--white);
}
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ── 14. Fleet ──────────────────────────────────────────────────────── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.fleet-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.fleet-img--dry   { background: linear-gradient(rgba(10,32,32,.45),rgba(10,32,32,.65)), url('../images/fleet-blue-freightliner.jpg') center/cover no-repeat; }
.fleet-img--reefer{ background: linear-gradient(rgba(10,32,32,.45),rgba(10,32,32,.65)), url('../images/fleet-black-volvo.jpg') center/cover no-repeat; }
.fleet-img--flat  { background: linear-gradient(rgba(10,32,32,.45),rgba(10,32,32,.65)), url('../images/fleet-blue-flatbed.jpg') center/cover no-repeat; }
.fleet-img--tank  { background: linear-gradient(rgba(10,32,32,.45),rgba(10,32,32,.65)), url('../images/fleet-white-containers.jpg') center/cover no-repeat; }

.fleet-img-icon {
  font-size: 56px;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}
.fleet-card:hover .fleet-img-icon {
  color: rgba(255,255,255,0.55);
  transform: scale(1.05);
}
.fleet-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--secondary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.fleet-card-body {
  padding: 20px;
}
.fleet-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.fleet-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}
.fleet-specs {
  width: 100%;
  border-collapse: collapse;
}
.fleet-specs td {
  font-size: 12px;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.fleet-specs td:first-child {
  color: var(--text-muted);
  width: 50%;
}
.fleet-specs td:last-child {
  font-weight: 600;
  color: var(--dark);
  text-align: right;
}
.fleet-specs tr:last-child td { border-bottom: none; }

/* ── 15. Coverage ───────────────────────────────────────────────────── */
.coverage-section {
  background: linear-gradient(180deg, var(--dark) 0%, #0f1f35 100%);
  position: relative;
}
.coverage-section .section-title,
.coverage-section .section-subtitle { color: var(--white); }
.coverage-section .section-subtitle { color: rgba(255,255,255,0.55); }

.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.canada-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.province {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.province.served {
  background: rgba(27,58,107,0.4);
  border-color: rgba(42,82,152,0.5);
}
.province.cross-border {
  background: rgba(247,148,29,0.15);
  border-color: rgba(247,148,29,0.4);
  grid-column: span 2;
}
.province:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  border-color: var(--secondary);
}
.prov-abbr {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.prov-name {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.2;
}
.prov-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--secondary);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: .5px;
}
.province.cross-border .prov-abbr { color: var(--secondary); }
.province.cross-border .fa-flag-usa { color: rgba(247,148,29,0.6); font-size: 18px; margin-top: 6px; }

.coverage-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 16px;
  transition: var(--transition);
}
.coverage-highlight:hover { border-color: rgba(247,148,29,0.3); }
.coverage-hl-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(27,58,107,0.5);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.coverage-hl-icon--orange { background: rgba(247,148,29,0.2); color: var(--secondary); }
.coverage-hl-icon--teal   { background: rgba(13,148,136,0.2); color: #2DD4BF; }
.coverage-highlight h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.coverage-highlight p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.coverage-lanes {
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.07);
}
.coverage-lanes h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.coverage-lanes ul { display: flex; flex-direction: column; gap: 8px; }
.coverage-lanes li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 10px;
}
.coverage-lanes li i { color: var(--secondary); font-size: 12px; }

/* ── 16. Testimonials ───────────────────────────────────────────────── */
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  min-width: calc((100% - 48px) / 3);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(27,58,107,0.08);
  line-height: 1;
}
.stars {
  display: flex;
  gap: 4px;
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  quotes: none;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--dark);
  font-weight: 700;
}
.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.t-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--primary);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.t-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}
.t-dots { display: flex; gap: 8px; align-items: center; }
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  padding: 0;
}
.t-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ── 17. Contact ────────────────────────────────────────────────────── */
.contact-section {
  background: var(--bg-light);
}
.contact-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(160deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
}
.contact-info-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3px;
}
.contact-detail a,
.contact-detail span {
  font-size: 14px;
  color: var(--white);
  line-height: 1.5;
}
.contact-detail a:hover { color: var(--accent); }

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  transition: var(--transition);
}
.social-link:hover { background: var(--secondary); color: var(--white); }

.contact-cta-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.contact-cta-card i {
  font-size: 32px;
  color: var(--secondary);
  margin-bottom: 12px;
}
.contact-cta-card h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.contact-cta-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

/* ── 18. Form ───────────────────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .2px;
}
.required { color: var(--secondary); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a0aec0; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,58,107,0.12);
}
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.select-wrap { position: relative; }
.select-wrap select { padding-right: 40px; appearance: none; cursor: pointer; }
.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 12px;
  pointer-events: none;
}

.radio-group {
  display: flex;
  gap: 16px;
  padding: 4px 0;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
  user-select: none;
}
.radio-label input[type="radio"] { display: none; }
.radio-custom {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: var(--transition);
}
.radio-label input:checked + .radio-custom {
  border-color: var(--primary);
  background: var(--primary);
}
.radio-label input:checked + .radio-custom::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.field-error {
  font-size: 12px;
  color: var(--red);
  min-height: 16px;
  display: block;
}

.char-count {
  font-size: 11px;
  color: var(--text-muted);
  text-align: right;
}

.form-message {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
}
.form-message i { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.form-message strong { display: block; font-size: 15px; margin-bottom: 3px; }
.form-message span { display: block; opacity: 0.85; line-height: 1.4; }
.form-message--success {
  background: rgba(13,148,136,0.08);
  border: 1px solid rgba(13,148,136,0.3);
  color: #065F46;
}
.form-message--success i { color: var(--teal); }
.form-message--error {
  background: rgba(220,38,38,0.07);
  border: 1px solid rgba(220,38,38,0.25);
  color: #7f1d1d;
}
.form-message--error i { color: var(--red); }

.btn-submit { width: 100%; justify-content: center; }
.submit-loading { display: flex; align-items: center; gap: 10px; }

.spinner {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255,255,255,0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── 19. Footer ─────────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
}
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 5px 10px;
  border-radius: 100px;
  letter-spacing: .3px;
}
.cert-badge i { color: var(--accent); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--secondary); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item i {
  color: var(--secondary);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item a,
.footer-contact-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--secondary); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social-link:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--secondary); }
.footer-logo { margin-bottom: 0; }

/* ── 20. FAB Call Button ────────────────────────────────────────────── */
.fab-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(247,148,29,0.5);
  transition: var(--transition);
  animation: fabPulse 3s ease-in-out infinite;
}
.fab-call:hover {
  background: var(--secondary-dark);
  transform: scale(1.1);
  animation: none;
}
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(247,148,29,0.5); }
  50%       { box-shadow: 0 4px 36px rgba(247,148,29,0.75), 0 0 0 12px rgba(247,148,29,0.1); }
}

/* ── 21. Scroll Animations ──────────────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}

/* ── 22. Fleet Gallery (index page) ─────────────────────────────────── */
.fleet-gallery-section { background: var(--dark); color: var(--white); }
.fleet-gallery-section .section-title { color: var(--white); }
.fleet-gallery-section .section-subtitle { color: rgba(255,255,255,0.7); }
.fleet-gallery-section .btn-outline { border-color: var(--secondary); color: var(--secondary); }
.fleet-gallery-section .btn-outline:hover { background: var(--secondary); color: var(--white); }
.fleet-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.fleet-gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: default;
}
.fleet-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.fleet-gallery-item:hover img { transform: scale(1.06); }
.fleet-gallery-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(10,32,32,0.85), transparent);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  transform: translateY(4px);
  transition: transform 0.3s ease;
}
.fleet-gallery-item:hover .fleet-gallery-cap { transform: translateY(0); }

/* ── 23. Operations Video (index page) ──────────────────────────────── */
.ops-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ops-video-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--dark);
  cursor: pointer;
}
.ops-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ops-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,32,32,0.35);
  transition: background 0.3s ease;
}
.ops-video-play i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding-left: 3px;
  box-shadow: 0 4px 20px rgba(247,148,29,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ops-video-item:hover .ops-video-play { background: rgba(10,32,32,0.15); }
.ops-video-item:hover .ops-video-play i { transform: scale(1.1); box-shadow: 0 6px 28px rgba(247,148,29,0.7); }
.ops-video-item.playing .ops-video-play { opacity: 0; pointer-events: none; }

/* ── 24. About photo strip ───────────────────────────────────────────── */
.about-photo-strip-section { padding: 0 0 64px; }
.about-photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.about-photo-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.about-photo-item:hover img { transform: scale(1.06); }
.about-photo-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  background: linear-gradient(to top, rgba(10,32,32,0.85), transparent);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 600;
}

/* ── 25. Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-layout { grid-template-columns: 1fr; }
  .coverage-info { max-width: 600px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(2n)  { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4)   { border-bottom: none; }
}

@media (max-width: 960px) {
  .hero-subtitle  { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions   { justify-content: center; }
  .hero-stats     { justify-content: center; }

  .about-grid   { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .about-badge-float { right: 0; }
  .about-content .section-title { text-align: center; }
  .about-content .section-tag   { display: block; text-align: center; }

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

  .contact-layout { grid-template-columns: 1fr; }
  .contact-info   { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }

  .testimonial-card { min-width: calc((100% - 24px) / 2); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 64px 0; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-title   { font-size: clamp(2.8rem, 10vw, 4.5rem); }

  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid    { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }

  .about-values { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .canada-grid { grid-template-columns: repeat(2, 1fr); }
  .province.cross-border { grid-column: span 2; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .testimonial-card { min-width: 100%; }

  .contact-info { display: flex; flex-direction: column; }
  .contact-form-wrap { padding: 28px 20px; }

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

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .trusted-items { flex-direction: column; align-items: flex-start; }
  .radio-group { flex-direction: column; gap: 12px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); border-right: none; }
  .stat-item:last-child { border-bottom: none; }
}

/* ── Multi-page additions ───────────────────────────────────────────────────── */

/* Page Banner (interior pages) */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 100px 0 56px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner .section-tag { margin-bottom: 10px; }
.page-banner-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.breadcrumb-nav a { color: var(--secondary); }
.breadcrumb-nav a:hover { color: var(--accent); }
.breadcrumb-nav i { font-size: 10px; }

/* Service detail layout (services.php) */
.service-detail {
  display: grid;
  grid-template-columns: 80px 1fr 260px;
  gap: 32px;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  align-items: stretch;
}
.service-detail-photo {
  align-self: stretch;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.service-detail-photo img {
  width: 100%;
  flex: 1 1 auto;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-detail:hover .service-detail-photo img { transform: scale(1.04); }
.service-detail:hover { box-shadow: var(--shadow-md); }
.service-detail--alt { background: rgba(27,58,107,0.03); }
.service-detail-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  background: rgba(27,58,107,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  align-self: start;
}
.service-detail-icon--orange { background: rgba(247,148,29,0.1); color: var(--secondary); }
.service-detail-icon--teal   { background: rgba(13,148,136,0.1); color: var(--teal); }
.service-detail-icon--gold   { background: rgba(217,119,6,0.1); color: var(--gold); }
.service-detail-icon--red    { background: rgba(220,38,38,0.1); color: var(--red); }
.service-detail-icon--purple { background: rgba(124,58,237,0.1); color: var(--purple); }
.service-detail-body h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.service-detail-body > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.service-detail-features h4,
.service-detail-specs h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.check-list { display: flex; flex-direction: column; gap: 7px; }
.check-list li {
  font-size: 14px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
  font-size: 12px;
}
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table td {
  padding: 6px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.spec-table td:first-child { color: var(--text-muted); }
.spec-table td:last-child  { font-weight: 600; color: var(--dark); text-align: right; }
.spec-table tr:last-child td { border-bottom: none; }

/* Timeline (about.php) */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  display: grid;
  grid-template-columns: 110px 40px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 32px;
  animation-delay: var(--delay, 0s);
}
.timeline-year {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--secondary);
  text-align: right;
  padding-top: 2px;
}
.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--secondary);
  border: 3px solid var(--bg-light);
  box-shadow: 0 0 0 2px var(--secondary);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.timeline-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Fleet detail (fleet.php) */
.fleet-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.fleet-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.fleet-detail-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.fleet-detail-header {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
}
.fleet-detail-icon { font-size: 64px; color: rgba(255,255,255,0.5); text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.fleet-detail-body {
  padding: 28px;
}
.fleet-detail-body h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.fleet-detail-body > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.fleet-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.fleet-detail-content h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.mt-1 { margin-top: 16px; }

/* Coverage legend */
.coverage-legend { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 16px; }
.legend-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 4px; }
.legend-dot--served { background: rgba(42,82,152,0.7); border: 2px solid rgba(42,82,152,0.9); }
.legend-dot--cross  { background: rgba(247,148,29,0.5); border: 2px solid rgba(247,148,29,0.8); }

/* Flash messages (frontend) */
.flash {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-size: 15px;
}
.flash i { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.flash--success { background: rgba(13,148,136,0.1); border: 1px solid rgba(13,148,136,0.3); color: #065F46; }
.flash--success i { color: var(--teal); }
.flash--error   { background: rgba(220,38,38,0.08); border: 1px solid rgba(220,38,38,0.25); color: #7f1d1d; }
.flash--error i { color: var(--red); }
.flash--info    { background: rgba(27,58,107,0.08); border: 1px solid rgba(27,58,107,0.2); color: var(--primary); }
.flash--info i  { color: var(--primary); }

/* CTA Section */
.cta-section { background: var(--dark); padding: 80px 0; }
.cta-box {
  background: linear-gradient(135deg, rgba(27,58,107,0.5) 0%, rgba(42,82,152,0.3) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  backdrop-filter: blur(4px);
}
.cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-content p { font-size: 15px; color: rgba(255,255,255,0.65); }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* Responsive additions */
@media (max-width: 960px) {
  .service-detail { grid-template-columns: 80px 1fr; gap: 20px; align-items: start; }
  .service-detail-photo { grid-column: 1 / -1; min-height: 200px; max-height: 260px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .fleet-detail-grid { grid-template-columns: 1fr; }
  .cta-box { flex-direction: column; text-align: center; padding: 40px 28px; }
  .cta-actions { justify-content: center; }
  .timeline::before { left: 80px; }
  .timeline-item { grid-template-columns: 70px 30px 1fr; }
  .timeline-year { font-size: 1rem; }
  .fleet-detail-content { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .timeline { padding-left: 0; }
  .timeline::before { display: none; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .timeline-year { text-align: left; }
  .timeline-dot { display: none; }
  .page-banner { padding: 80px 0 40px; }
}

/* ═══════════════════════════════════════════════════════════════════
   WELCOME POPUP
   ═══════════════════════════════════════════════════════════════════ */
.welcome-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,18,35,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  overflow-y: auto;
}
.welcome-overlay.is-open { opacity: 1; visibility: visible; }

.welcome-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.28);
  transform: translateY(24px) scale(.97);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
  overflow: hidden;
  margin: auto;
}
.welcome-overlay.is-open .welcome-modal { transform: translateY(0) scale(1); }

/* Close btn */
.welcome-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.9);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: #64748b;
  z-index: 2;
  transition: background .2s, color .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.welcome-close:hover { background: #f1f5f9; color: #1A7878; }

/* Modal head strip */
.welcome-modal-head {
  background: linear-gradient(135deg, #1A7878 0%, #0a2020 100%);
  padding: 32px 36px 28px;
  text-align: center;
  color: #fff;
}
.welcome-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.welcome-modal-head h2 {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.15;
}
.welcome-sub {
  color: rgba(255,255,255,0.75);
  font-size: .92rem; line-height: 1.5;
  margin: 0;
}

/* Form area */
.welcome-screen { padding: 0; }
.welcome-screen form { padding: 24px 32px 28px; }

/* Popup form rows */
.wp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.wp-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.wp-row .wp-group { margin-bottom: 0; }
.wp-group label {
  font-size: .82rem; font-weight: 600; color: #374151;
}
.wp-group input,
.wp-group select {
  padding: 9px 12px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: var(--font-body);
  color: #0a2020;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.wp-group input:focus,
.wp-group select:focus {
  outline: none;
  border-color: #1A7878;
  box-shadow: 0 0 0 3px rgba(27,58,107,0.1);
}
.wp-group input.is-invalid,
.wp-group select.is-invalid { border-color: #DC2626; }
.wp-error {
  font-size: .78rem; color: #DC2626; min-height: 1em;
  display: block;
}
.wp-error--general {
  background: #FEF2F2; border-radius: var(--radius-sm);
  padding: 8px 12px; margin-bottom: 12px;
  font-size: .85rem;
  display: none;
}
.wp-error--general.visible { display: block; }

/* Radio load type */
.wp-radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.wp-radio { cursor: pointer; }
.wp-radio input[type="radio"] { display: none; }
.wp-radio-box {
  display: flex; flex-direction: column; align-items: center;
  padding: 10px 12px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-size: .82rem; color: #64748b;
  text-align: center; line-height: 1.4;
  transition: border-color .2s, background .2s, color .2s;
}
.wp-radio-box strong { font-size: 1rem; color: #0a2020; display: block; }
.wp-radio input:checked + .wp-radio-box {
  border-color: #1A7878;
  background: #EFF6FF;
  color: #1A7878;
}
.wp-radio input:checked + .wp-radio-box strong { color: #1A7878; }

/* Actions */
.wp-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.btn-full { width: 100%; justify-content: center; }
.wp-skip {
  background: none; border: none; cursor: pointer;
  color: #94a3b8; font-size: .82rem;
  text-decoration: underline; text-underline-offset: 2px;
  padding: 4px; transition: color .2s;
}
.wp-skip:hover { color: #64748b; }

/* Submit loading state */
#popupSubmitBtn.loading { opacity: .7; pointer-events: none; }
#popupSubmitBtn.loading .fa-paper-plane { display: none; }

/* Success screen */
.welcome-success {
  padding: 56px 36px 48px;
  text-align: center;
}
.ws-icon {
  font-size: 3.5rem; color: #16a34a;
  margin-bottom: 20px;
  animation: wsPopIn .5s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes wsPopIn {
  from { transform: scale(.5); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
.welcome-success h2 {
  font-family: var(--font-head);
  font-size: 1.9rem; font-weight: 800;
  color: #0a2020;
  margin: 0 0 10px;
}
.welcome-success p {
  color: #64748b; font-size: .97rem;
  line-height: 1.55; margin: 0 0 28px;
}

@media (max-width: 600px) {
  .welcome-modal-head { padding: 28px 22px 22px; }
  .welcome-screen form { padding: 20px 20px 24px; }
  .wp-row { grid-template-columns: 1fr; }
  .welcome-modal-head h2 { font-size: 1.6rem; }
  .welcome-success { padding: 40px 22px 36px; }
}

/* ── New sections responsive ───────── */
@media (max-width: 1100px) {
  .fleet-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .ops-video-grid     { grid-template-columns: repeat(2, 1fr); }
  .about-photo-strip  { grid-template-columns: repeat(3, 1fr); }
  .about-photo-strip  .about-photo-item:nth-child(n+4) { display: none; }
}
@media (max-width: 768px) {
  .fleet-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ops-video-grid     { grid-template-columns: repeat(2, 1fr); }
  .about-photo-strip  { grid-template-columns: repeat(2, 1fr); }
  .about-photo-strip  .about-photo-item:nth-child(n+3) { display: none; }
  .service-detail { grid-template-columns: 60px 1fr; }
  .service-detail-photo { grid-column: 1 / -1; min-height: 160px; max-height: 200px; }
}
@media (max-width: 480px) {
  .fleet-gallery-grid { grid-template-columns: 1fr 1fr; }
  .ops-video-grid     { grid-template-columns: 1fr; }
  .fleet-gallery-item:nth-child(n+7) { display: none; }
}

/* ── Legal pages (Privacy / Terms) ──────────────────────────────────────── */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.025rem;
  line-height: 1.85;
  color: var(--text);
}
.legal-page h2 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark);
  margin: 2.4rem 0 0.7rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--primary-light);
}
.legal-page h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 1.4rem 0 0.4rem;
}
.legal-page p { margin-bottom: 1rem; }
.legal-page ul {
  margin: 0.4rem 0 1rem 1.6rem;
  padding: 0;
}
.legal-page ul li { margin-bottom: 0.45rem; }
.legal-page a { color: var(--primary); text-decoration: underline; }
.legal-page a:hover { color: var(--secondary); }
.legal-effective {
  display: inline-block;
  background: var(--bg-alt, #f1f5f5);
  border-left: 4px solid var(--primary);
  padding: 10px 18px;
  font-size: 0.9rem;
  color: #555;
  border-radius: 0 6px 6px 0;
  margin-bottom: 1.6rem;
}
.legal-contact {
  background: var(--bg-alt, #f1f5f5);
  border: 1px solid #dde5e5;
  border-radius: 10px;
  padding: 22px 28px;
  font-style: normal;
  line-height: 1.9;
  margin-top: 0.8rem;
}
