
/* ── Real Truck Highway Photo ── */
.truck-photo-wrap {
  position: relative;
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(249,115,22,0.1);
}

.truck-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  filter: brightness(0.75) saturate(0.9);
}

.truck-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,6,23,0.85) 0%, rgba(2,6,23,0.1) 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.2rem;
}

.truck-photo-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: #f97316;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .truck-photo-wrap { height: 150px; }
}

/* ── Airport Delivery Section ── */
.airport-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.airport-badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.badge-twic,
.badge-tsa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-twic {
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.5);
  color: #f97316;
}

.badge-tsa {
  background: rgba(96, 165, 250, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.4);
  color: #60a5fa;
}

.section-subtitle {
  color: var(--muted);
  max-width: 620px;
  margin: 0.75rem auto 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.airport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.airport-card {
  text-align: center;
  padding: 1.75rem 1.5rem;
  background: radial-gradient(circle at top center, #0b1120, #020617);
  border: 1px solid rgba(249, 115, 22, 0.15);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.airport-card:hover {
  border-color: rgba(249, 115, 22, 0.45);
  transform: translateY(-3px);
}

.airport-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.airport-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #e5e7eb;
  margin-bottom: 0.5rem;
}

.airport-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.airport-cta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 12px;
  padding: 1.25rem 2rem;
  flex-wrap: wrap;
}

.airport-cta-bar p {
  margin: 0;
  color: #e5e7eb;
  font-weight: 500;
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .airport-grid {
    grid-template-columns: 1fr;
  }
  .airport-cta-bar {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* ── Stats / Trust Bar ── */
.stats-bar {
  border-top: 1px solid #111827;
  border-bottom: 1px solid #111827;
  background: rgba(7, 11, 31, 0.7);
  padding: 1.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: #60a5fa;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stats-grid .stat-item:last-child {
    grid-column: span 2;
  }
}

/* ── FAQ Section ── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.faq-item {
  background: radial-gradient(circle at top left, #0b1120, #020617);
  border-radius: var(--radius-lg);
  border: 1px solid #111827;
  padding: 1.4rem;
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #e5e7eb;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ── Social Links ── */
.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: var(--muted);
  text-decoration: none;
  transition: 0.18s ease;
  margin-bottom: 0;
}

.social-links a:hover {
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
}

/* ── Footer bottom links ── */
.footer-bottom a {
  color: var(--muted);
  text-decoration: none;
  display: inline;
  margin-bottom: 0;
}

.footer-bottom a:hover {
  color: #e5e7eb;
}

/* ── Form group spacing ── */
.form-group {
  margin-bottom: 0.85rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

/* ── form-result states ── */
.form-result.success { color: #4ade80; }
.form-result.error   { color: var(--danger); }
.form-result.loading { color: var(--muted); }
