:root {
  --primary: #ff6b35;
  --primary-dark: #e45826;
  --secondary: #1b1f3b;
  --bg: #f5f6fa;
  --text: #222;
  --muted: #777;
  --white: #ffffff;
  --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.15);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --transition-fast: 0.25s ease;
}

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

body {
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle at top, #fef6f2 0, #f5f6fa 40%, #eef1f7 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Layout */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header / Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.82));
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--secondary);
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.25);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.92rem;
}

.nav-links a {
  position: relative;
  font-weight: 500;
  color: var(--secondary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #ffc857);
  border-radius: 999px;
  transition: width var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(248, 113, 113, 0.4);
  transform: translateY(0);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(248, 113, 113, 0.5);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--secondary);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hero Section */
.hero {
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, #16a34a, #22c55e);
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.25);
}

.hero-title {
  font-size: clamp(2.2rem, 3.2vw + 1rem, 3.4rem);
  line-height: 1.05;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.hero-title span {
  background: linear-gradient(120deg, var(--primary), #ffc857);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 1.8rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.8rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  background: radial-gradient(circle at top left, #ffc857, #ff6b35);
  color: var(--secondary);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.3rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  color: var(--secondary);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 12px 25px rgba(148, 163, 184, 0.3);
  transform: translateY(-1px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-meta-item strong {
  display: block;
  color: var(--secondary);
  font-size: 1rem;
}

.hero-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  font-size: 0.78rem;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.5);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-card {
  position: relative;
  background: radial-gradient(circle at top, #1b1f3b, #020617);
  border-radius: 28px;
  padding: 1.8rem 1.7rem;
  color: #e5e7eb;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.75);
  overflow: hidden;
  min-height: 280px;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 0%, rgba(248, 250, 252, 0.06) 0, transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(248, 250, 252, 0.03) 0, transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.hero-card-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
}

.hero-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, #22c55e, #16a34a);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.35);
}

.hero-truck {
  position: relative;
  margin: 1.4rem 0;
  border-radius: 18px;
  padding: 1.1rem;
  background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.06), rgba(15, 23, 42, 0.8));
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.8rem;
  align-items: center;
  z-index: 1;
}

.truck-graphic {
  position: relative;
  height: 115px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.08), rgba(15, 23, 42, 0.8)),
              url("https://images.pexels.com/photos/6170406/pexels-photo-6170406.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover;
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.85);
}

.truck-road {
  position: absolute;
  bottom: 18px;
  left: -40%;
  right: -40%;
  height: 38px;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
  overflow: hidden;
}

.truck-road::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 3px;
  background-image: repeating-linear-gradient(to right, #e5e7eb 0, #e5e7eb 20px, transparent 20px, transparent 32px);
  transform: translateY(-50%);
  opacity: 0.65;
  animation: roadMove 3.2s linear infinite;
}

.truck-body {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 6px;
  animation: truckFloat 2.8s ease-in-out infinite;
}

.truck-cabin {
  width: 46px;
  height: 30px;
  background: linear-gradient(145deg, #f97316, #ea580c);
  border-radius: 10px 10px 6px 6px;
  box-shadow: 0 8px 15px rgba(15, 23, 42, 0.6);
  position: relative;
}

.truck-cabin::before {
  content: "";
  position: absolute;
  inset: 4px 4px 10px 6px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.5);
}

.truck-cargo {
  width: 82px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.7);
  position: relative;
  overflow: hidden;
}

.truck-cargo::before,
.truck-cargo::after {
  content: "";
  position: absolute;
  inset: 8px 10px auto;
  height: 5px;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.7), transparent);
  border-radius: 999px;
  opacity: 0.6;
}

.truck-cargo::after {
  inset: auto 14px 8px;
  width: 36px;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.7), transparent);
}

.truck-wheel {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #4b5563, #020617);
  border: 3px solid #020617;
  box-shadow: 0 6px 10px rgba(15, 23, 42, 0.9);
  position: relative;
  overflow: hidden;
}

.truck-wheel::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 30%, #e5e7eb, #9ca3af);
  opacity: 0.9;
}

.truck-wheel::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  background: #020617;
}

.truck-wheel-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
}

.truck-info {
  font-size: 0.78rem;
  color: #e5e7eb;
}

.truck-info h4 {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.7rem;
  color: #cbd5f5;
  margin-top: 0.4rem;
}

.hero-stats-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1.1rem;
  font-size: 0.78rem;
  color: #9ca3af;
  z-index: 1;
  position: relative;
}

.hero-stat {
  flex: 1;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.6));
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-stat strong {
  color: #e5e7eb;
  font-size: 0.95rem;
}

/* Sections */
section {
  padding: 3.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.3rem;
}

.section-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  padding: 1.4rem 1.3rem;
  box-shadow: 0 18px 45px rgba(148, 163, 184, 0.25);
  border: 1px solid rgba(226, 232, 240, 0.9);
  position: relative;
  overflow: hidden;
  transform: translateY(0) scale(1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.45), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 28px 60px rgba(148, 163, 184, 0.35);
  border-color: rgba(255, 107, 53, 0.45);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fef2f2;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.service-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--secondary);
}

.service-text {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.18rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.03);
  font-size: 0.72rem;
  color: var(--muted);
}

/* Why Us */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.why-points {
  display: grid;
  gap: 1rem;
  margin-top: 0.8rem;
}

.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: flex-start;
}

.why-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  font-size: 0.9rem;
  margin-top: 0.1rem;
}

.why-item strong {
  display: block;
  font-size: 0.96rem;
  color: var(--secondary);
  margin-bottom: 0.1rem;
}

.why-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

.why-highlight {
  border-radius: 24px;
  background: linear-gradient(145deg, #0f172a, #020617);
  padding: 1.5rem 1.5rem 1.3rem;
  color: #e5e7eb;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.9);
  position: relative;
  overflow: hidden;
}

.why-highlight::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.12), transparent 60%),
    radial-gradient(circle at 100% 0, rgba(56, 189, 248, 0.16), transparent 55%);
  opacity: 1;
  pointer-events: none;
}

.why-highlight-inner {
  position: relative;
  z-index: 1;
}

.why-highlight h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}

.why-highlight-main {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.why-highlight-main span {
  background: linear-gradient(135deg, #fb923c, #facc15);
  -webkit-background-clip: text;
  color: transparent;
}

.why-highlight-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
}

.why-highlight-badge {
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

/* Contact / WhatsApp Form */
.contact-section {
  padding-bottom: 3.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: stretch;
}

.contact-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  padding: 1.8rem 1.6rem;
  box-shadow: 0 25px 65px rgba(148, 163, 184, 0.4);
  border: 1px solid rgba(226, 232, 240, 0.9);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(255, 107, 53, 0.1), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.contact-card-inner {
  position: relative;
  z-index: 1;
}

.contact-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  color: var(--secondary);
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 0.9rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  font-weight: 500;
  color: var(--secondary);
}

.form-label span {
  color: #f97316;
}

.form-input,
.form-select,
.form-textarea {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.65rem 0.9rem;
  font-family: inherit;
  font-size: 0.86rem;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.form-textarea {
  border-radius: 16px;
  min-height: 80px;
  resize: vertical;
  line-height: 1.5;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(255, 107, 53, 0.8);
  box-shadow: 0 0 0 1px rgba(255, 107, 53, 0.28), 0 14px 32px rgba(148, 163, 184, 0.4);
  background: #ffffff;
  transform: translateY(-1px);
}

.form-row-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1.1rem;
  flex-wrap: wrap;
}

.form-note {
  font-size: 0.77rem;
  color: var(--muted);
  max-width: 240px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #f9fafb;
  box-shadow: 0 18px 45px rgba(34, 197, 94, 0.55);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 24px 55px rgba(34, 197, 94, 0.7);
}

.whatsapp-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(22, 163, 74, 0.08);
  color: #166534;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.contact-aside {
  border-radius: 22px;
  padding: 1.5rem 1.4rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 1));
  color: #e5e7eb;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.9);
  position: relative;
  overflow: hidden;
}

.contact-aside::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 10% 0, rgba(59, 130, 246, 0.5), transparent 60%);
  opacity: 0.45;
  pointer-events: none;
}

.contact-aside-inner {
  position: relative;
  z-index: 1;
}

.contact-aside h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.contact-aside p {
  font-size: 0.86rem;
  color: #cbd5f5;
  margin-bottom: 0.8rem;
}

.contact-details {
  font-size: 0.84rem;
  display: grid;
  gap: 0.5rem;
  margin: 0.9rem 0 1rem;
}

.contact-details span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-details strong {
  color: #e5e7eb;
}

.contact-tagline {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 0.9rem;
}

/* Footer */
footer {
  border-top: 1px solid rgba(203, 213, 225, 0.9);
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.9);
  margin-top: auto;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* Animation Utility */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* Keyframes */
@keyframes truckFloat {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -6px); }
}

@keyframes roadMove {
  from { transform: translate(-40px, -50%); }
  to { transform: translate(0, -50%); }
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner,
  .contact-grid,
  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.7rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-card {
    margin-top: 0.7rem;
  }

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

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 0.9rem 1rem;
    box-shadow: 0 18px 45px rgba(148, 163, 184, 0.45);
    flex-direction: column;
    align-items: flex-start;
    transform-origin: top;
    transform: scaleY(0.6);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
    margin-top: 0.3rem;
  }

  .nav-links.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  section {
    padding: 2.7rem 0;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row-inline {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .form-note {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-meta {
    flex-direction: column;
  }

  .hero-card {
    padding: 1.4rem 1.25rem;
  }

  .contact-card {
    padding: 1.5rem 1.3rem;
  }

  .why-highlight {
    padding: 1.3rem 1.2rem 1.1rem;
  }
}

/* Lead Generation Popup */
.lead-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lead-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lead-popup {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(226, 232, 240, 0.9);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.lead-popup-overlay.active .lead-popup {
  transform: translateY(0) scale(1);
}

.lead-popup::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(255, 107, 53, 0.12), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.lead-popup-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.15);
  color: var(--secondary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.lead-popup-close:hover {
  background: rgba(148, 163, 184, 0.28);
  transform: scale(1.05);
}

.lead-popup-header {
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
  padding-right: 2rem;
}

.lead-popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.lead-popup-header h2 {
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.lead-popup-header p {
  font-size: 0.88rem;
  color: var(--muted);
}

.lead-popup-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.lead-popup-submit {
  position: relative;
  z-index: 1;
  width: 100%;
}

.lead-popup-note {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

body.lead-popup-open {
  overflow: hidden;
}

@media (max-width: 520px) {
  .lead-popup {
    padding: 1.6rem 1.25rem 1.4rem;
  }

  .lead-popup-grid {
    grid-template-columns: 1fr;
  }

  .lead-popup-header h2 {
    font-size: 1.2rem;
  }
}

