/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #F4651A;
  --orange-dark: #C84E0E;
  --dark: #0D0D0D;
  --dark2: #141414;
  --dark3: #1C1C1C;
  --charcoal: #242424;
  --border: rgba(255,255,255,0.08);
  --text: #F0EDE8;
  --text-muted: #9A948A;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 10px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hidden { display: none !important; }
.accent { color: var(--orange); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.btn-nav {
  background: var(--orange);
  color: #fff;
  padding: 10px 22px;
  font-size: 14px;
}
.btn-nav:hover { background: var(--orange-dark); }

.btn-full { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--dark2); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--orange); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--text);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
}
.logo-w4 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--orange);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--text);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(244,101,26,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(244,101,26,0.04) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 130px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s ease forwards;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s ease forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s ease forwards;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 1s ease forwards;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 0.02em;
  color: var(--orange);
  line-height: 1;
}
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--orange);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 24px;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: #fff;
}
.ticker-dot { color: rgba(255,255,255,0.5) !important; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--orange);
  transition: width 0.4s ease;
}
.service-card:hover::before { width: 100%; }
.service-card:hover { border-color: rgba(244,101,26,0.3); transform: translateY(-4px); }
.service-icon { font-size: 36px; margin-bottom: 20px; }
.service-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.service-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(244,101,26,0.3);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ===== ABOUT ===== */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-badge {
  position: absolute;
  top: -20px; right: -20px;
  width: 110px;
  height: 110px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: #fff;
  line-height: 1;
}
.badge-label { font-size: 11px; color: rgba(255,255,255,0.85); text-align: center; line-height: 1.3; }

.about-img-block {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* CSS Truck Illustration */
.truck-illustration {
  position: relative;
  width: 320px;
  height: 160px;
}
.truck-body {
  position: absolute;
  bottom: 30px; left: 0;
  width: 220px; height: 90px;
  background: var(--charcoal);
  border: 2px solid rgba(244,101,26,0.5);
  border-radius: 4px 4px 0 0;
}
.truck-cab {
  position: absolute;
  bottom: 30px; left: 218px;
  width: 80px; height: 90px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border: 2px solid rgba(244,101,26,0.6);
  border-radius: 0 16px 0 0;
  clip-path: polygon(0 100%, 0 0, 60% 0, 100% 40%, 100% 100%);
}
.truck-wheel {
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 4px solid #444;
  background: #1a1a1a;
  bottom: 12px;
}
.truck-wheel::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #333;
  border: 2px solid #555;
}
.w1 { left: 30px; }
.w2 { left: 120px; }
.w3 { left: 260px; }
.road-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 12px;
  background: repeating-linear-gradient(90deg, rgba(244,101,26,0.5) 0, rgba(244,101,26,0.5) 30px, transparent 30px, transparent 60px);
}

.about-text .section-title { margin-bottom: 24px; }
.about-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}
.about-pillars { list-style: none; margin-bottom: 40px; display: flex; flex-direction: column; gap: 20px; }
.about-pillars li { display: flex; gap: 16px; align-items: flex-start; }
.pillar-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(244,101,26,0.15);
  border: 1px solid rgba(244,101,26,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-pillars strong { font-size: 15px; color: var(--text); display: block; margin-bottom: 4px; }
.about-pillars p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(244,101,26,0.1);
  line-height: 1;
}
.stars { color: var(--orange); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.test-author { font-size: 13px; color: var(--text); font-weight: 500; }

/* ===== CONTACT ===== */
.contact-section { }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-desc { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 36px; }
.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-details li { font-size: 15px; color: var(--text-muted); }
.contact-details a { color: var(--orange); transition: opacity 0.2s; }
.contact-details a:hover { opacity: 0.8; }

.contact-form-wrap {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}
.quote-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--text-muted); letter-spacing: 0.03em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark); }
textarea { resize: vertical; min-height: 80px; }

.form-success { font-size: 14px; color: #4ade80; text-align: center; }
.form-error { font-size: 14px; color: #f87171; text-align: center; }

/* ===== FOOTER ===== */
.footer { background: #080808; border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo-w4 { font-family: var(--font-display); font-size: 28px; color: var(--orange); }
.footer-brand .logo-text { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.15em; }
.footer-brand p { font-size: 14px; color: var(--text-muted); margin-top: 12px; line-height: 1.7; }
.footer-links h4,
.footer-contact h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li,
.footer-contact p { font-size: 14px; color: var(--text-muted); cursor: default; }
.footer-links a:hover,
.footer-contact a { color: var(--text); transition: color 0.2s; }
.footer-contact a:hover { color: var(--orange); }
.footer-contact p { margin-bottom: 8px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: #444; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.8); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrap { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 480px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 200;
  }
  .nav-links.open a { font-size: 24px; color: var(--text); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }
  .section { padding: 72px 0; }
  .hero-scroll-hint { display: none; }
}
