:root {
  --font-heading: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --font-body: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;

  --ink: #121a22;
  --ink-2: #1a2530;
  --paper: #ece7db;
  --rust: #c1622d;
  --steel: #8ea3ac;
  --brass: #b6924f;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg-light);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; height: auto; display: block; }

/* Focus states for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 2px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 600; margin-top: 0; }
h2 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 20px; color: var(--ink); }
.light-bg h2 { color: var(--ink); }
h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 10px; }
p { font-size: 16px; line-height: 1.6; margin-bottom: 20px; opacity: 0.9; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; justify-content: center; gap: 30px; align-items: center;
  padding: 16px 24px;
  background: var(--white);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar.solid {
  background: var(--white);
  border-bottom: 1px solid rgba(142,163,172,0.2);
}
@media (min-width: 900px) { .navbar { padding: 20px max(40px, calc((100vw - 1200px) / 2)); } }

.logo-block { display: flex; align-items: baseline; gap: 10px; }
.logo-mark { width: 16px; height: 16px; fill: none; stroke: var(--rust); stroke-width: 1.5; align-self: center; }
.logo-text { font-family: var(--font-heading); font-size: 26px; color: var(--ink); letter-spacing: 0.02em; }
.logo-sub { display: none; font-size: 13px; color: var(--steel); letter-spacing: 0.01em; }
@media (min-width: 900px) { .logo-text { font-size: 28px; } .logo-sub { display: inline; } }

.nav-links {
  display: none; align-items: center; gap: 24px;
  font-size: 15px; color: var(--ink); font-weight: 500;
}
.nav-links a { position: relative; opacity: 0.85; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; color: var(--rust); }
.nav-links a.active { color: var(--rust); opacity: 1; }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 2px; background: var(--rust);
}

/* Nav Dropdown */
.nav-dropdown { position: relative; display: inline-block; }
.dropdown-toggle { display: flex; align-items: center; gap: 4px; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: var(--ink); border: 1px solid rgba(142,163,172,0.2);
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: 0.2s ease; padding: 10px 0; z-index: 100;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.dropdown-menu a {
  padding: 12px 24px; display: block; font-size: 14px; color: var(--paper); opacity: 0.9;
}
.dropdown-menu a:hover { background: rgba(142,163,172,0.1); color: var(--rust); opacity: 1; }
.dropdown-menu a::after { display: none; }

.nav-actions { display: none; align-items: center; gap: 16px; }
.nav-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid var(--ink); border-radius: 50%; color: var(--ink); transition: 0.2s; }
.nav-icon:hover { background: var(--ink); color: var(--white); }
.nav-icon svg { width: 18px; height: 18px; }

.btn-pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 12px 8px 24px; border-radius: 999px;
  background: var(--ink); color: var(--white);
  font-size: 15px; font-weight: 500; border: 1px solid var(--ink);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  gap: 12px;
}
.btn-pill-icon {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; background: var(--white); color: var(--ink); border-radius: 50%;
}
.btn-pill:hover { background: var(--rust); border-color: var(--rust); color: var(--white); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-actions { display: flex; }
}

.hamburger {
  display: flex; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; z-index: 101;
}
@media (min-width: 900px) { .hamburger { display: none; } }
.hamburger span { width: 24px; height: 2px; background: var(--ink); transition: 0.3s; display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(18,26,34,0.98); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; justify-content: center; padding: 0 40px; gap: 24px;
  opacity: 0; pointer-events: none; transition: 0.3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-overlay a { font-size: 32px; font-family: var(--font-heading); color: var(--paper); }
.mobile-overlay a.active { color: var(--rust); }

/* ---------- Forms ---------- */
.quote-form-card {
  background: var(--paper);
  color: var(--ink);
  padding: 32px;
  border-radius: 6px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  position: relative; z-index: 2;
}
.quote-form-card h3 { color: var(--ink); font-size: 28px; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: var(--ink-2); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px;
  background: #fff; border: 1px solid var(--steel);
  font-family: inherit; font-size: 15px; color: var(--ink); border-radius: 4px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--rust); }
.form-row { display: flex; gap: 16px; flex-direction: column; }
@media (min-width: 600px) { .form-row { flex-direction: row; } }
.form-row .form-group { flex: 1; }
.form-error { color: #d32f2f; font-size: 12px; display: none; margin-top: 4px; }
.form-group.invalid input, .form-group.invalid select, .form-group.invalid textarea { border-color: #d32f2f; }
.form-group.invalid .form-error { display: block; }
.quote-form-card .btn-pill { width: 100%; margin-top: 10px; padding: 14px; font-size: 16px; }
.form-success { display: none; padding: 40px 20px; text-align: center; color: var(--ink); }
.form-success h4 { color: var(--rust); font-size: 24px; margin-bottom: 10px; }

/* ---------- Hero (Home) ---------- */
.hero {
  position: relative; min-height: 75vh;
  display: flex; align-items: center;
  padding: 120px 24px 60px;
  background: var(--ink); /* Fallback */
}
.hero-slider {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 0; overflow: hidden;
}
.hero-slider::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(18, 26, 34, 0.65); z-index: 2;
}
.hero-slide {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; opacity: 0; transition: opacity 1.5s ease-in-out;
  background-size: cover; background-position: center; background-repeat: no-repeat; z-index: 0;
}
.hero-slide.active { opacity: 1; z-index: 1; }

.hero-grid {
  position: relative; z-index: 3;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.2fr 0.8fr; gap: 60px; } }

.hero-left { padding-right: 20px; }
.hero-label { font-size: 14px; color: var(--steel); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 20px; display: block; }
.tagline-container { position: relative; height: 160px; margin-bottom: 20px; }
@media (min-width: 600px) { .tagline-container { height: 120px; } }
.tagline {
  position: absolute; top: 0; left: 0; width: 100%;
  font-family: var(--font-heading); font-size: clamp(38px, 6vw, 64px); line-height: 1.1; color: var(--paper);
  opacity: 0; transform: translateY(10px); transition: opacity 0.8s ease, transform 0.8s ease; pointer-events: none;
}
.tagline.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.hero-desc { font-size: 18px; color: var(--steel); margin-bottom: 30px; max-width: 480px; }

/* ---------- Page Header (Inner Pages) ---------- */
.page-header {
  height: 40vh; display: flex; flex-direction: column; justify-content: center;
  padding: 80px 24px 0; background: var(--ink); text-align: center; border-bottom: 1px solid rgba(142,163,172,0.2);
}
.page-header h1 { font-size: clamp(40px, 6vw, 64px); color: var(--paper); margin: 0 0 10px; }
.breadcrumb { font-size: 14px; color: var(--steel); }
.breadcrumb span { color: var(--paper); margin-left: 8px; }

/* ---------- Sections Layout ---------- */
.section { padding: 80px 24px; }
.section.light-bg { background: var(--paper); color: var(--ink); }
.container { max-width: 1200px; margin: 0 auto; }

/* ---------- Trust Strip ---------- */
.trust-strip {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px;
  padding: 60px 24px; background: var(--ink-2); border-top: 1px solid rgba(142,163,172,0.1);
}
@media (min-width: 768px) { .trust-strip { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-heading); font-size: 48px; color: var(--rust); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: var(--steel); }

/* ---------- Moving Expertise ---------- */
.expertise-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 40px;
}
@media (min-width: 768px) { .expertise-grid { grid-template-columns: repeat(3, 1fr); } }
.expert-panel {
  position: relative; height: 300px; overflow: hidden; display: flex; align-items: flex-end; padding: 24px;
  color: var(--paper); transition: transform 0.3s;
}
.expert-panel:hover { transform: translateY(-4px); }
.expert-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.expert-panel::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,26,34,0.9) 0%, rgba(18,26,34,0.1) 100%); z-index: 1; }
.expert-panel h3 { position: relative; z-index: 2; margin: 0; font-size: 24px; }

/* ---------- About Preview ---------- */
.about-preview { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 900px) { .about-preview { grid-template-columns: 1fr 1fr; } }
.about-preview ul { list-style: none; padding: 0; margin-bottom: 30px; }
.about-preview li { margin-bottom: 12px; padding-left: 24px; position: relative; font-weight: 500; }
.about-preview li::before { content: '✓'; color: var(--rust); position: absolute; left: 0; font-weight: bold; }
.about-img { border: 1px solid var(--steel); aspect-ratio: 4/3; object-fit: cover; }

/* ---------- Services Grid (Home) ---------- */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-flat {
  background: var(--ink-2); padding: 32px 24px; border-left: 3px solid transparent;
  transition: background 0.2s, border-color 0.2s; display: block;
}
.service-flat:hover { background: rgba(142,163,172,0.1); border-color: var(--rust); }
.service-flat h3 { font-size: 22px; color: var(--paper); margin-bottom: 0; transition: color 0.2s; }
.service-flat:hover h3 { color: var(--ink); }
.service-flat span { display: block; margin-top: 16px; color: var(--rust); font-size: 14px; font-weight: 500; }

/* ---------- Testimonials Carousel ---------- */
.carousel-wrap { position: relative; margin-top: 40px; overflow: hidden; padding: 0 40px; }
.carousel-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card {
  flex: 0 0 100%; padding: 0 10px;
}
@media (min-width: 768px) { .testimonial-card { flex: 0 0 50%; } }
@media (min-width: 1024px) { .testimonial-card { flex: 0 0 33.333%; } }
.testimonial-inner {
  background: #fff; padding: 32px; border-top: 3px solid var(--rust); height: 100%;
}
.t-quote { font-size: 15px; color: var(--ink); margin-bottom: 20px; font-style: italic; }
.t-author { font-family: var(--font-heading); font-size: 20px; color: var(--ink); margin: 0; }
.t-loc { font-size: 13px; color: var(--steel); }
.carousel-nav { position: absolute; top: 50%; transform: translateY(-50%); background: var(--rust); border: none; color: var(--paper); width: 36px; height: 36px; border-radius: 50%; z-index: 2; display: flex; align-items: center; justify-content: center; }
.carousel-prev { left: 0; } .carousel-next { right: 0; }

/* ---------- Process ---------- */
.process-track {
  display: flex; flex-direction: column; gap: 30px; margin-top: 40px;
}
@media (min-width: 900px) { .process-track { flex-direction: row; } }
.process-step { flex: 1; border-top: 1px solid var(--steel); padding-top: 16px; position: relative; }
.process-step::before { content: ''; position: absolute; top: -3px; left: 0; width: 30px; height: 5px; background: var(--rust); }
.p-num { font-family: var(--font-heading); font-size: 24px; color: var(--steel); margin-bottom: 10px; display: block; }
.p-title { font-size: 18px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.p-desc { font-size: 14px; color: #555; }

/* ---------- Accreditation Strip ---------- */
.accreditation { background: var(--ink-2); padding: 40px 0; overflow: hidden; border-top: 1px solid rgba(142,163,172,0.1); }
.marquee-inner { display: flex; width: max-content; animation: marquee 20s linear infinite; }
.marquee-item {
  font-family: var(--font-heading); font-size: 24px; color: var(--steel); padding: 0 40px;
  display: flex; align-items: center; border-right: 1px solid rgba(142,163,172,0.2);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- CTA Banner ---------- */
.cta-banner { background: var(--rust); text-align: center; }
.cta-banner h2 { margin-bottom: 24px; color: var(--paper); }
.cta-banner .btn-pill { background: var(--paper); color: var(--rust); border-color: var(--paper); }
.cta-banner .btn-pill:hover { background: transparent; color: var(--paper); }

/* ---------- Timeline & About ---------- */
.timeline { border-left: 2px solid var(--rust); padding-left: 24px; margin: 40px 0; }
.timeline-item { position: relative; margin-bottom: 30px; }
.timeline-item::before { content: ''; position: absolute; left: -31px; top: 6px; width: 12px; height: 12px; background: var(--rust); border-radius: 50%; }
.t-year { font-family: var(--font-heading); font-size: 24px; color: var(--rust); margin-bottom: 4px; display: block; }

.values-list { list-style: none; padding: 0; }
.values-list li { font-size: 18px; font-weight: 500; margin-bottom: 16px; border-left: 3px solid var(--rust); padding-left: 16px; }

.mission-vision { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .mission-vision { grid-template-columns: 1fr 1fr; } }
.mv-box h3 { color: var(--rust); }

/* ---------- Services List ---------- */
.service-row { display: flex; flex-direction: column; gap: 40px; margin-bottom: 80px; align-items: center; }
@media (min-width: 768px) {
  .service-row { flex-direction: row; }
  .service-row:nth-child(even) { flex-direction: row-reverse; }
}
.service-text { flex: 1; }
.service-text h3 { color: var(--rust); font-size: 32px; }
.service-text ul { list-style: none; padding: 0; margin-top: 20px; }
.service-text li { position: relative; padding-left: 20px; margin-bottom: 10px; font-size: 15px; color: var(--steel); }
.service-text li::before { content: '—'; position: absolute; left: 0; color: var(--rust); }
.service-img { flex: 1; border: 1px solid rgba(142,163,172,0.2); }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn { background: var(--ink-2); color: var(--paper); border: 1px solid var(--steel); padding: 8px 16px; font-size: 14px; transition: 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--rust); border-color: var(--rust); }

.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.g-item { height: 260px; position: relative; overflow: hidden; cursor: pointer; display: none; }
.g-item.show { display: block; animation: fadein 0.4s; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.g-item:hover img { transform: scale(1.03); }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }

.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(18,26,34,0.95); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: 0.3s; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lb-content { max-width: 90%; max-height: 90%; position: relative; }
.lb-content img { width: auto; height: auto; max-height: 85vh; max-width: 100%; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.lb-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: var(--paper); font-size: 32px; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--paper); font-size: 40px; padding: 20px; }
.lb-prev { left: -60px; } .lb-next { right: -60px; }
@media (max-width: 768px) { .lb-prev { left: 0; } .lb-next { right: 0; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 60px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.c-info p { font-size: 16px; color: var(--ink); margin-bottom: 24px; }
.c-info a { color: var(--paper); font-weight: 500; }
.c-info a:hover { color: var(--rust); }
.map-embed { width: 100%; height: 300px; border: 1px solid var(--steel); margin-top: 30px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); border-top: 1px solid rgba(142,163,172,0.2); padding: 80px 24px 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 1200px; margin: 0 auto 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1.5fr 1fr; } }
.footer h4 { color: var(--rust); font-size: 20px; margin-bottom: 20px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 12px; font-size: 15px; color: var(--steel); }
.footer a { transition: color 0.2s; }
.footer a:hover { color: var(--paper); }
.socials { display: flex; gap: 16px; margin-bottom: 20px; }
.socials a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid var(--steel); border-radius: 50%; color: var(--steel); transition: 0.2s; }
.socials a:hover { color: var(--rust); border-color: var(--rust); }
.footer-bottom { border-top: 1px solid rgba(142,163,172,0.2); padding-top: 24px; text-align: center; font-size: 14px; color: var(--steel); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
/* ---------- Process Section (Animated Zig-Zag) ---------- */
.process-track-new {
  position: relative;
  display: flex;
  justify-content: center; gap: 30px;
  align-items: center;
  max-width: 1200px; margin: 0 auto;
  padding: 60px 0;
}
.p-line-bg {
  position: absolute;
  top: 50%; left: 5%; right: 5%;
  height: 2px;
  background-image: linear-gradient(to right, var(--steel) 50%, transparent 50%);
  background-size: 16px 2px;
  background-repeat: repeat-x;
  transform: translateY(-50%);
  z-index: 0;
}
.p-truck {
  position: absolute;
  z-index: 2;
  top: -24px;
  left: 0;
  animation: drive 10s linear infinite;
}
@keyframes drive {
  0% { left: 0; transform: translateX(-100%); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; transform: translateX(0); opacity: 0; }
}
.p-card {
  position: relative;
  z-index: 1;
  width: 18%;
  text-align: center;
  background: var(--bg-light); padding-bottom: 0;
}
.p-img-box {
  position: relative;
  width: 120px; height: 120px;
  margin: 0 auto 20px;
  border-radius: 12px;
  background: #eee;
}
.p-img-box img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.p-badge {
  position: absolute;
  bottom: -10px; right: -10px;
  width: 32px; height: 32px;
  background: var(--ink); color: var(--paper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  border: 3px solid var(--paper);
}
.p-card h4 { font-size: 18px; color: var(--ink); margin: 0 0 10px; }
.p-card p { font-size: 14px; color: var(--steel); line-height: 1.5; margin: 0 10px; }

/* Alternating Up and Down */
.p-card.p-up {
  transform: translateY(-50px);
}
.p-card.p-down {
  transform: translateY(50px);
  display: flex; flex-direction: column-reverse;
  padding-bottom: 0; padding-top: 10px;
}
.p-card.p-down .p-img-box {
  margin: 20px auto 0;
}

/* Scroll Animation classes */
.fade-up {
  opacity: 0;
  animation: fadeUpAnim 0.6s ease forwards;
}
@keyframes fadeUpAnim {
  to { opacity: 1; }
}

@media (max-width: 900px) {
  .process-track-new {
    flex-direction: column;
    gap: 40px;
    padding: 20px 0;
  }
  .p-card { width: 100%; max-width: 300px; margin: 0 auto; background: transparent; }
  .p-card.p-up, .p-card.p-down { transform: none; flex-direction: column; padding: 0; }
  .p-card.p-down .p-img-box { margin: 0 auto 20px; }
  .p-line-bg {
    width: 2px; height: 100%; top: 0; left: 50%; right: auto; transform: translateX(-50%);
    background-image: linear-gradient(to bottom, var(--steel) 50%, transparent 50%);
    background-size: 2px 16px;
  }
  .p-truck {
    top: 0; left: 50%; transform: translate(-50%, -100%);
    animation: drive-down 10s linear infinite;
  }
  @keyframes drive-down {
    0% { top: 0; transform: translate(-50%, -100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; transform: translate(-50%, 0); opacity: 0; }
  }
}




.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}
.footer-contact-list svg {
  flex-shrink: 0;
  margin-top: 4px;
}


/* Scale logos visually without affecting header/footer height */

.footer .logo-img {
  transform: scale(1.4);
  transform-origin: left center;
}


/* --- Mobile Menu Fixes & Service Image Standardization --- */
.service-preview-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .service-preview-img {
        height: 300px;
    }
    
    .mobile-overlay {
        justify-content: flex-start;
        padding-top: 100px;
        padding-bottom: 40px;
        overflow-y: auto;
    }
    
    .mobile-overlay .nav-dropdown {
        display: flex;
        flex-direction: column;
    }
    
    .mobile-overlay .dropdown-menu {
        position: static;
        opacity: 0; 
        pointer-events: none;
        height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        transition: height 0.3s ease, opacity 0.3s ease;
    }
    
    .mobile-overlay .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        pointer-events: auto;
        height: auto;
        padding: 10px 0 20px 20px; /* Indent submenus */
    }
    
    .mobile-overlay .dropdown-menu a {
        font-size: 20px;
        padding: 8px 0;
    }
}


/* --- Hero Banner Text Legibility Fixes --- */
.hero-slider::after {
    background: rgba(18, 26, 34, 0.8) !important;
}
.hero-label {
    color: var(--paper) !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
    font-weight: 600;
}
.tagline {
    text-shadow: 0 4px 12px rgba(0,0,0,0.7);
}
.hero-desc {
    color: var(--paper) !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
    font-weight: 500;
}


/* Footer Logo Background Fix */
.footer .logo-img {
    background-color: var(--white);
    padding: 10px;
    border-radius: 6px;
}

/* FAQ Section */
.faq-section { background: var(--bg-light); }
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.faq-question {
  padding: 20px 25px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: center; gap: 30px;
  align-items: center;
  position: relative;
  transition: background 0.3s ease;
}
.faq-question:hover {
  background: var(--bg-light);
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--brass);
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 25px 25px 25px;
  color: var(--steel);
  line-height: 1.6;
}
.faq-item[open] .faq-answer {
  animation: fadeInDown 0.3s ease-in-out;
}
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}


/* Fix mobile overlay btn-pill */
.mobile-overlay a.btn-pill {
  font-size: 16px;
  font-family: var(--font-body);
  display: inline-block;
  margin-top: 30px;
  text-align: center;
  background: var(--rust);
  border-color: var(--rust);
}


/* Footer Bottom Flex Layout */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(142,163,172,0.2);
  padding-top: 24px;
  font-size: 14px;
  color: var(--steel);
  text-align: center;
}
.footer-bottom .mobile-break {
  display: block;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row-reverse;
    justify-content: center; gap: 30px;
    align-items: center;
    text-align: left;
  }
  .footer-bottom .mobile-break {
    display: none !important;
  }
}

