/* =====================================================
M TAYLOR INC — PREMIUM INDUSTRIAL THEME
Owner-Operator • Stepdeck • Power-Only
===================================================== */

/* ------------------ RESET ------------------ */

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

html,
body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: #0a0d11;
  color: #e8e4dd;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Selection styling */
::selection {
  background: rgba(212, 164, 74, 0.3);
  color: #fff;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0b0f14;
}

::-webkit-scrollbar-thumb {
  background: #1f2937;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4a3d28;
}

/* ------------------ SKIP LINK (ACCESSIBILITY) ------------------ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background-color: #000;
  color: #ffffff;
  padding: 8px 12px;
  z-index: 2000;
  text-decoration: none;
  border-radius: 0 0 6px 0;
}

.skip-link:focus {
  top: 10px;
}

/* ------------------ VARIABLES ------------------ */
:root {
  --bg: #0b0f14;
  --panel: #111827;
  --panel-alt: #0f1622;
  --border: #1f2937;

  --text: #e8e4dd;
  --muted: #9a9688;

  --accent: #d4a44a;
  --accent-glow: rgba(212, 164, 74, 0.15);
  --accent-soft: rgba(212, 164, 74, 0.08);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(212, 164, 74, 0.1);

  --radius: 8px;
  --radius-sm: 6px;

  --max-width: 1120px;

  --transition: 0.2s ease;
  --transition-slow: 0.3s ease;
}

/* ------------------ LAYOUT ------------------ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section.alt {
  background-color: var(--panel-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.section.alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 164, 74, 0.025) 0%, transparent 70%);
  pointer-events: none;
}

.center {
  text-align: center;
}

/* ------------------ HEADER ------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(10, 13, 17, 0.95);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid rgba(212, 164, 74, 0.15);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(212, 164, 74, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: "Alex Brush", cursive;
  font-weight: 400;
  font-size: 4.4rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  background: linear-gradient(
    180deg,
    #c8b080 0%,
    #ffffff 12%,
    #d4a44a 28%,
    #ffffff 45%,
    #c0a060 60%,
    #ffffff 78%,
    #d4a44a 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 12px rgba(212, 164, 74, 0.15));
  position: relative;
  overflow: hidden;
  transition: filter var(--transition);
}

.brand:hover {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 16px rgba(212, 164, 74, 0.25));
}

/* Chrome shine sweep on brand */
.brand::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: chromeShine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes chromeShine {
  0%, 100% { left: -100%; opacity: 0; }
  15% { opacity: 1; }
  50% { left: 150%; opacity: 0; }
  51%, 99% { opacity: 0; left: -100%; }
}

/* ------------------ NAV ------------------ */
.mobile-subnav {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.65rem 1rem;
  background-color: rgba(11, 15, 20, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.mobile-subnav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  border-radius: 4px;
  transition: background-color var(--transition), color var(--transition);
  position: relative;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mobile-subnav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 3px;
  background: #d4a44a;
  border-radius: 0;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 8px rgba(212, 164, 74, 0.4);
}

.mobile-subnav a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.mobile-subnav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.mobile-subnav a.active {
  background-color: transparent;
  color: #ffffff;
  font-weight: 600;
  box-shadow: none;
}

.mobile-subnav a.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* ------------------ TYPOGRAPHY ------------------ */
h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
  font-weight: 800;
}

h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
}

h3 {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  font-weight: 700;
}

p {
  line-height: 1.65;
}

.sub {
  color: var(--muted);
  max-width: 60ch;
  font-size: 1.05rem;
  line-height: 1.7;
}

.small {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

.muted {
  color: var(--muted);
}

a {
  color: inherit;
  transition: color var(--transition), opacity var(--transition);
}

/* ------------------ BUTTONS ------------------ */
.btn {
  background: linear-gradient(135deg, #c9922e 0%, #d4a44a 50%, #b8862a 100%);
  color: #0a0d11;
  padding: 0.7rem 1.3rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition), background-color var(--transition);
  box-shadow: 0 2px 8px rgba(212, 164, 74, 0.3);
  animation: btnGlow 3s ease-in-out infinite;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 2px 8px rgba(212, 164, 74, 0.3); }
  50% { box-shadow: 0 2px 16px rgba(212, 164, 74, 0.5), 0 0 24px rgba(212, 164, 74, 0.2); }
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 164, 74, 0.45);
  filter: brightness(1.12);
  text-decoration: none;
  animation: none;
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(212, 164, 74, 0.2);
}

.btn.ghost {
  background: transparent;
  color: #d4a44a;
  border: 2px solid rgba(212, 164, 74, 0.4);
  box-shadow: none;
  animation: none;
  text-shadow: none;
}

.btn.ghost:hover {
  background-color: rgba(212, 164, 74, 0.08);
  border-color: rgba(212, 164, 74, 0.7);
  box-shadow: 0 0 12px rgba(212, 164, 74, 0.12);
  transform: translateY(-1px);
}

.btn.ghost:active {
  transform: translateY(0);
}

.btn.large {
  font-size: 1.05rem;
  padding: 0.85rem 1.75rem;
}

/* ------------------ CTA ROW ------------------ */
.cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  align-items: center;
}

/* ------------------ HERO ------------------ */
.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid,
.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero .card img {
  display: block;
  max-height: 420px;
}

/* ------------------ CARDS ------------------ */
.card {
  background-color: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 164, 74, 0.2);
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

/* ------------------ LISTS ------------------ */
.list {
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background-color: #d4a44a;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(212, 164, 74, 0.4);
}

/* ------------------ FOOTER ------------------ */
.footer {
  padding: 3rem 1.25rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--panel-alt) 0%, var(--bg) 100%);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 164, 74, 0.2) 30%, rgba(212, 164, 74, 0.12) 70%, transparent 100%);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
}

.footer-copy {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 700;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  letter-spacing: -0.01em;
}

.footer-services {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

.footer-privacy {
  text-align: right;
}

.footer-privacy a {
  font-size: 0.82rem;
  color: #d4a44a;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-privacy a:hover {
  color: #e0b35e;
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 768px) {
  .brand {
    font-size: 2.6rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-privacy {
    text-align: center;
  }
}

@media (min-width: 769px) {
  .section.alt .two-col {
    align-items: center;
  }
}

/* ------------------ REVIEWS ------------------ */
.reviews-header {
  margin-bottom: 2rem;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.reviews-stars {
  color: #f5a623;
  font-size: 1.15rem;
  letter-spacing: 1px;
}

.reviews-score {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

.reviews-link {
  font-size: 0.9rem;
  color: #d4a44a;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 164, 74, 0.3);
  padding-bottom: 1px;
  transition: border-color var(--transition), color var(--transition);
}

.reviews-link:hover {
  border-bottom-color: #d4a44a;
  color: #e0b35e;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 16px rgba(212, 164, 74, 0.08);
}

.review-card .small {
  font-style: italic;
  line-height: 1.7;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.review-stars {
  color: #f5a623;
  font-size: 0.85rem;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.review-author {
  font-size: 0.9rem;
  color: var(--text);
}

.review-badge {
  font-size: 0.7rem;
  color: #d4a44a;
  background-color: rgba(212, 164, 74, 0.06);
  border: 1px solid rgba(212, 164, 74, 0.2);
  border-radius: 3px;
  padding: 0.15rem 0.55rem;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ------------------ GALLERY ------------------ */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--panel);
}

.gallery-item img,
.gallery img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--panel);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  cursor: default;
  filter: brightness(0.9) saturate(0.95);
}

.gallery-item img {
  border: none;
  border-radius: 0;
  height: 100%;
  min-height: 340px;
}

.gallery-item:hover img,
.gallery img:hover {
  transform: scale(1.03);
  filter: brightness(1.05) saturate(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.25rem 1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
  color: #e8e4dd;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover {
  border-color: rgba(212, 164, 74, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

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

  .gallery img,
  .gallery-item img {
    height: 240px;
    min-height: 240px;
  }

  .gallery-caption {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* =====================================================
   PREMIUM VISUAL EFFECTS
   ===================================================== */

/* ---------- Scroll-triggered fade-in animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.48s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.56s; }
.stagger.visible > *:nth-child(9) { transition-delay: 0.64s; }
.stagger.visible > *:nth-child(10) { transition-delay: 0.72s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Section labels ---------- */
.svc-label {
  background: linear-gradient(135deg, #e0b35e 0%, #d4a44a 50%, #b8862a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Animated glow line separator ---------- */
.glow-divider {
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 164, 74, 0.35) 50%, transparent 100%);
  position: relative;
  overflow: visible;
}

.glow-divider::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 60px;
  height: 5px;
  border-radius: 3px;
  background: #d4a44a;
  box-shadow: 0 0 14px rgba(212, 164, 74, 0.5), 0 0 30px rgba(212, 164, 74, 0.2);
  animation: glowSlide 4s ease-in-out infinite;
}

@keyframes glowSlide {
  0%, 100% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% - 60px); opacity: 0; }
}

/* ---------- Card shimmer on hover ---------- */
.card {
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.card:hover::after {
  left: 100%;
}

/* ---------- Chrome brand dot ---------- */

/* ---------- Review card accent border ---------- */
.review-card {
  position: relative;
  border-left: 3px solid #d4a44a;
}

.review-card:hover {
  border-left-color: #e0b35e;
}

/* ---------- Smooth gradient background on hero sections ---------- */
.home-hero,
.svc-hero {
  background: linear-gradient(
    180deg,
    rgba(212, 164, 74, 0.03) 0%,
    transparent 40%,
    transparent 60%,
    rgba(212, 164, 74, 0.015) 100%
  );
}

/* ---------- Button ripple effect ---------- */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn:hover::after {
  opacity: 1;
}

/* ---------- Floating particles background (applied via JS) ---------- */
.particles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(212, 164, 74, 0.25);
  border-radius: 50%;
  animation: float linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

/* ------------------ LOCATION / AREA PAGES ------------------ */
.area-hero {
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.area-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 164, 74, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.area-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #d4a44a;
  margin-bottom: 0.6rem;
  display: block;
}

.area-hero h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 0.85rem;
}

.area-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4a44a;
  flex-shrink: 0;
}

.area-section {
  padding: 4rem 0;
}

.area-section-alt {
  padding: 4rem 0;
  background: var(--panel-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.area-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
}

.area-grid h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  margin-bottom: 0.75rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  font-weight: 700;
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.faq-a {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.area-section p + p,
.area-section-alt p + p {
  margin-top: 0.85rem;
}

.area-hero .sub {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 60ch;
  color: var(--muted);
}

.cities-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
  list-style: none;
}

.area-cta-strip {
  background: linear-gradient(135deg, #1a1508 0%, #2a1f0a 40%, #1a1508 100%);
  border-top: 1px solid rgba(212, 164, 74, 0.2);
  border-bottom: 1px solid rgba(212, 164, 74, 0.2);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.area-cta-strip::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 164, 74, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.area-cta-strip::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 164, 74, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.area-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.area-cta-inner h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0;
  line-height: 1.2;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.area-cta-inner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-top: 0.4rem;
}

.btn-white {
  background: linear-gradient(135deg, #d4a44a 0%, #c9922e 100%);
  color: #0a0d11;
  padding: 0.8rem 1.75rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  white-space: nowrap;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-white:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .area-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .area-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .area-section,
  .area-section-alt {
    padding: 3rem 0;
  }

  .area-hero {
    padding: 3rem 0 2.5rem;
  }
}

/* ---------- Noise texture overlay (industrial grain) ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* ---------- Enhanced review cards ---------- */
.review-card {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.6) 0%, rgba(15, 22, 34, 0.4) 100%);
  border: 1px solid rgba(31, 41, 55, 0.5);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.25rem 1.5rem;
  position: relative;
}

.review-card::after {
  content: "\201C";
  position: absolute;
  top: -0.1rem;
  right: 1.25rem;
  font-size: 4.5rem;
  font-family: Georgia, serif;
  line-height: 1;
  color: rgba(212, 164, 74, 0.08);
  pointer-events: none;
}

.review-card:hover {
  border-color: rgba(212, 164, 74, 0.25);
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.8) 0%, rgba(15, 22, 34, 0.6) 100%);
}

/* Review avatar initials */
.review-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b6d2e 0%, #5a4520 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

/* ---------- Enhanced stat pills ---------- */
.stat-pill-value {
  font-size: 2.4rem;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, #d4a44a 60%, #b8862a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- SEO service area accordion ---------- */
.seo-areas {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  opacity: 0.5;
  transition: opacity var(--transition-slow);
}

.seo-areas:hover {
  opacity: 0.8;
}

.seo-areas-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0;
  width: 100%;
  font-family: inherit;
}

.seo-areas-toggle:hover {
  color: var(--text);
}

.seo-areas-chevron {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.seo-areas-toggle[aria-expanded="true"] .seo-areas-chevron {
  transform: rotate(-135deg);
}

.seo-areas-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s ease;
  padding-top: 0;
}

.seo-areas-content.open {
  max-height: 2000px;
  padding-top: 1.25rem;
}

.seo-region-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #d4a44a;
  margin-bottom: 0.35rem;
  display: block;
}

.seo-areas-content a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  line-height: 1.9;
  transition: color 0.15s ease, padding-left 0.15s ease;
}

.seo-areas-content a:hover {
  color: #d4a44a;
  padding-left: 4px;
}

/* ---------- Gradient accent text ---------- */
.text-gradient {
  background: linear-gradient(135deg, #e0b35e 0%, #d4a44a 40%, #c9922e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Service section icon ---------- */
.svc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(212, 164, 74, 0.1) 0%, rgba(212, 164, 74, 0.03) 100%);
  border: 1px solid rgba(212, 164, 74, 0.2);
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

.svc-icon::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: #d4a44a;
  box-shadow: 0 0 10px rgba(212, 164, 74, 0.5);
}

/* ---------- Section glow dividers ---------- */
.glow-divider-subtle {
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 164, 74, 0.18) 20%, rgba(212, 164, 74, 0.25) 50%, rgba(212, 164, 74, 0.18) 80%, transparent 100%);
  margin: 0;
}

/* =====================================================
   HOMEPAGE
   ===================================================== */

/* HERO */
.home-hero {
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  top: -120px; left: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,164,74,0.06) 0%, transparent 60%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.home-hero::after {
  content: "";
  position: absolute;
  bottom: -200px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,164,74,0.04) 0%, transparent 65%);
  pointer-events: none;
  animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
}

.home-hero-text h1 {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.home-hero-text .sub {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.home-hero-image {
  position: relative;
}

.home-hero-image::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(212,164,74,0.15) 0%, transparent 50%, rgba(212,164,74,0.1) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.home-hero-image:hover::before {
  opacity: 1;
}

.home-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.4);
  background: linear-gradient(180deg, transparent 50%, rgba(11,15,20,0.4) 100%);
  pointer-events: none;
}

.home-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(212,164,74,0.15);
  display: block;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 30px rgba(212,164,74,0.08);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.home-hero-image:hover img {
  transform: scale(1.01);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 40px rgba(212,164,74,0.12);
}

/* Trust bar */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(212,164,74,0.05) 0%, rgba(212,164,74,0.01) 100%);
  padding: 1.15rem 0;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  align-items: center;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  background: rgba(212,164,74,0.03);
  border: 1px solid rgba(212,164,74,0.12);
  border-left: 3px solid #d4a44a;
  border-radius: 2px;
  padding: 0.45rem 0.85rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.trust-item:hover {
  border-color: rgba(212,164,74,0.3);
  border-left-color: #e0b35e;
  background: rgba(212,164,74,0.06);
}

.trust-dot {
  width: 5px; height: 5px;
  border-radius: 1px;
  background: #d4a44a;
  flex-shrink: 0;
}

/* SECTIONS */
.home-section {
  padding: 3.5rem 0;
  background: #0a0d11;
}

.home-section-alt {
  padding: 3.5rem 0;
  background: #0d1117;
  border-top: 1px solid rgba(212,164,74,0.08);
  border-bottom: 1px solid rgba(212,164,74,0.08);
  position: relative;
}

.home-section-alt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,164,74,0.025) 0%, transparent 70%);
  pointer-events: none;
}

/* Two-column layout */
.home-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.home-two-col-wide {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
}

/* Stat pills */
.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.stat-pill {
  background: linear-gradient(135deg, rgba(212,164,74,0.06) 0%, rgba(212,164,74,0.02) 100%);
  border: 1px solid rgba(212,164,74,0.18);
  border-radius: 6px;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.stat-pill:hover {
  border-color: rgba(212,164,74,0.4);
  box-shadow: 0 0 16px rgba(212,164,74,0.12), 0 4px 12px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

.stat-pill-label {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Section label */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
  display: block;
  background: linear-gradient(135deg, #e0b35e 0%, #d4a44a 50%, #b8862a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Specialty list */
.specialty-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.25rem;
  margin-top: 1.25rem;
}

.specialty-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.specialty-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5rem;
  width: 6px; height: 6px;
  background: #d4a44a;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(212,164,74,0.4);
}

/* CTA bottom strip */
.home-cta-strip {
  background: linear-gradient(135deg, #1a1508 0%, #2a1f0a 40%, #1a1508 100%);
  border-top: 1px solid rgba(212,164,74,0.2);
  border-bottom: 1px solid rgba(212,164,74,0.2);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.home-cta-strip::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,164,74,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.home-cta-strip::after {
  content: "";
  position: absolute;
  bottom: -80px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,164,74,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.home-cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.home-cta-strip h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0;
  line-height: 1.2;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.home-cta-strip p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-top: 0.4rem;
}

/* Military honor section */
.military-honor {
  background: #0a0d11;
  border-top: 1px solid rgba(212,164,74,0.08);
  border-bottom: 1px solid rgba(212,164,74,0.08);
}

.military-honor-flag {
  position: absolute;
  inset: 0;
  background: url('/images/american-flag-for-american-trucking-company.webp') center/cover no-repeat;
  filter: brightness(0.7);
  opacity: 0.65;
}

.military-branches {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: 0.75rem;
}

.military-branch {
  border-left: 3px solid #d4a44a;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.5rem 1rem;
  background: rgba(212,164,74,0.03);
}

/* Reviews mobile link */
.reviews-mobile-link { display: none; }

.reviews-mobile-link a {
  color: #d4a44a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

.reviews-mobile-link a:hover { text-decoration: underline; }

/* Homepage mobile */
@media (max-width: 768px) {
  .home-hero { padding: 3rem 0 2rem; }

  .home-hero-grid,
  .home-two-col,
  .home-two-col-wide {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .home-cta-strip-inner { flex-direction: column; align-items: flex-start; }

  .trust-bar-inner { justify-content: flex-start; gap: 0.4rem 0.5rem; }

  .review-desktop { display: none; }
  .reviews-mobile-link { display: block; text-align: center; margin-top: 1.5rem; }
}

@media (max-width: 480px) {
  .stat-row { grid-template-columns: 1fr; }
}

/* =====================================================
   SERVICES PAGE
   ===================================================== */

.svc-hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.svc-hero::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,164,74,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.svc-hero h1 {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

/* Service sections */
.svc-section {
  padding: 3.5rem 0;
}

.svc-section-alt {
  padding: 3.5rem 0;
  background: var(--panel-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.svc-section-alt::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,164,74,0.02) 0%, transparent 70%);
  pointer-events: none;
}

.svc-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
}

.svc-grid h2 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin-bottom: 0.65rem;
}

/* Services FAQ enhancements (scoped to svc sections) */
.svc-section .faq-item,
.svc-section-alt .faq-item {
  transition: background-color var(--transition);
}

.svc-section .faq-item:first-child,
.svc-section-alt .faq-item:first-child {
  border-top: 1px solid var(--border);
}

.svc-section .faq-item:hover,
.svc-section-alt .faq-item:hover {
  background-color: rgba(212,164,74,0.02);
}

.svc-section .faq-q,
.svc-section-alt .faq-q {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.svc-section .faq-q::before,
.svc-section-alt .faq-q::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d4a44a;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(212,164,74,0.4);
}

.svc-section .faq-a,
.svc-section-alt .faq-a {
  padding-left: 0.75rem;
}

/* Service area tags */
.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.area-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: #d4a44a;
  background: rgba(212,164,74,0.05);
  border: 1px solid rgba(212,164,74,0.15);
  border-radius: 4px;
  padding: 0.35rem 0.75rem;
  text-decoration: none;
  transition: all var(--transition);
}

.area-links a:hover {
  background: #d4a44a;
  color: #0a0d11;
  border-color: #d4a44a;
  box-shadow: 0 2px 8px rgba(212,164,74,0.3);
  transform: translateY(-1px);
}

/* CTA strip */
.svc-cta-strip {
  background: linear-gradient(135deg, #1a1508 0%, #2a1f0a 40%, #1a1508 100%);
  border-top: 1px solid rgba(212,164,74,0.2);
  border-bottom: 1px solid rgba(212,164,74,0.2);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.svc-cta-strip::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,164,74,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.svc-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.svc-cta-inner h2 {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin: 0;
}

.svc-cta-inner p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* Services mobile */
@media (max-width: 768px) {
  .svc-hero { padding: 3rem 0 2rem; }

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

  .svc-cta-inner { flex-direction: column; align-items: flex-start; }
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */

.contact-hero {
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,164,74,0.06) 0%, transparent 65%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.contact-hero h1 {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.contact-hero h1 span {
  background: linear-gradient(135deg, #e0b35e 0%, #d4a44a 40%, #c9922e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.75rem;
}

/* Primary call card */
.contact-primary-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition);
}

.contact-primary-card:hover {
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.contact-primary-card-top {
  background: linear-gradient(135deg, #1a1508 0%, #2a1f0a 50%, #1a1508 100%);
  border-bottom: 1px solid rgba(212,164,74,0.15);
  padding: 1.75rem 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.contact-primary-card-top::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.contact-primary-card-top .card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
}

.contact-primary-card-top .card-phone {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  text-decoration: none;
  display: block;
  line-height: 1.1;
  transition: opacity var(--transition);
}

.contact-primary-card-top .card-phone:hover {
  opacity: 0.9;
}

.contact-primary-card-top .card-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.35rem;
}

.contact-primary-card-bottom {
  padding: 1.5rem 1.75rem;
}

.contact-action-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-contact-call {
  background: linear-gradient(135deg, #c9922e 0%, #d4a44a 50%, #b8862a 100%);
  color: #0a0d11;
  border: none;
  border-radius: 6px;
  padding: 0.9rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(212,164,74,0.3);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.btn-contact-call:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,164,74,0.45);
}

.btn-contact-call:active { transform: translateY(0); }

.btn-contact-email {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
  border-radius: 6px;
  padding: 0.9rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-contact-email:hover {
  border-color: rgba(212,164,74,0.5);
  background: rgba(212,164,74,0.06);
  transform: translateY(-1px);
}

.btn-contact-email:active { transform: translateY(0); }

.contact-card-divider {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}

.contact-meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
}

.contact-meta-item .meta-label {
  color: var(--muted);
  min-width: 70px;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.contact-meta-item .meta-value {
  color: var(--text);
  font-weight: 500;
}

.contact-meta-item a {
  color: #d4a44a;
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.contact-meta-item a:hover { color: #e0b35e; }

.social-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.social-btn:hover {
  border-color: #d4a44a;
  background: rgba(212,164,74,0.1);
  box-shadow: 0 0 10px rgba(212,164,74,0.15);
  transform: translateY(-1px);
}

.social-btn img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.social-btn:hover img { opacity: 1; }

/* Credentials / trust grid */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.cred-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 3px solid #d4a44a;
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.cred-card:hover {
  border-color: rgba(212,164,74,0.3);
  border-left-color: #d4a44a;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.cred-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #d4a44a;
}

.cred-card-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.cred-card-sub {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

/* What to have ready */
.load-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.load-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.load-info-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #d4a44a;
  flex-shrink: 0;
  margin-top: 0.45rem;
  box-shadow: 0 0 6px rgba(212,164,74,0.4);
}

/* Service area strip */
.area-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.area-tag {
  font-size: 0.82rem;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  transition: border-color var(--transition), color var(--transition);
}

.area-tag:hover {
  border-color: rgba(212,164,74,0.3);
  color: var(--text);
}

/* FMCSA verification bar */
.verify-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background: rgba(212,164,74,0.04);
  border: 1px solid rgba(212,164,74,0.15);
  border-radius: var(--radius);
  padding: 1.15rem 1.5rem;
  margin-top: 1.5rem;
  position: relative;
}

.verify-bar::before {
  content: "\2713";
  position: absolute;
  top: -8px;
  left: 16px;
  background: #d4a44a;
  color: #0a0d11;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(212,164,74,0.3);
}

.verify-bar-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.verify-bar-text strong {
  color: var(--text);
  font-weight: 700;
}

.verify-bar a {
  font-size: 0.85rem;
  font-weight: 600;
  color: #d4a44a;
  text-decoration: none;
  border: 1px solid rgba(212,164,74,0.35);
  border-radius: 6px;
  padding: 0.4rem 0.9rem;
  white-space: nowrap;
  transition: all var(--transition);
}

.verify-bar a:hover {
  background: #d4a44a;
  color: #0a0d11;
  border-color: #d4a44a;
  box-shadow: 0 2px 8px rgba(212,164,74,0.3);
}

/* Contact desktop layout */
@media (min-width: 769px) {
  .contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: flex-start;
  }

  .contact-right-col {
    position: sticky;
    top: 80px;
  }

  .cred-grid {
    grid-template-columns: 1fr 1fr;
  }

  .load-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-hero-inner {
    max-width: 640px;
  }
}

/* Contact mobile */
@media (max-width: 768px) {
  .contact-hero { padding: 3.5rem 0 2.5rem; }

  .contact-main-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .contact-primary-card-top { padding: 1.4rem; }
  .contact-primary-card-bottom { padding: 1.25rem 1.4rem; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
}

/* =====================================================
   404 PAGE
   ===================================================== */

.error-section {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.error-section::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,108,240,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.error-section h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.error-section p {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- Reduce motion for accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in-left,
  .fade-in-right,
  .stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .glow-divider::after,
  .brand::after,
  .particle,
  .btn {
    animation: none;
  }

  .card::after {
    display: none;
  }

  .seo-areas-content {
    transition: none;
  }
}
