/* W.E. Transport Express – Shared Styles */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background-color: #0b1220;
}

body {
  background: linear-gradient(to bottom, #020617 0, #020617 260px, #0b1220 260px, #0b1220 100%);
}

a {
  color: #facc15;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER / NAV */

.site-header {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #1e293b;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #e5e7eb;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid #facc15;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #facc15;
}

.brand-text small {
  color: #9ca3af;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #e5e7eb;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 999px;
}

.main-nav a.active {
  background: #1e293b;
}

.button.primary {
  background: #facc15;
  color: #1f2933;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  display: inline-block;
  text-decoration: none;
}

.button.primary:hover {
  background: #fde047;
  text-decoration: none;
}

.button.outline {
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 8px 16px;
  color: #e5e7eb;
  text-decoration: none;
}

.button.outline:hover {
  background: rgba(15, 23, 42, 0.7);
}

/* HERO */

.hero {
  padding: 40px 0 40px;
  color: #e5e7eb;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 32px;
  align-items: flex-start;
}

.kicker {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #9ca3af;
}

.hero h1 {
  font-size: 30px;
  margin-top: 8px;
  margin-bottom: 10px;
}

.lead {
  color: #cbd5f5;
  font-size: 15px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  font-size: 13px;
}

.stat .badge {
  background: #0f172a;
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid #1d283a;
  color: #facc15;
  margin-bottom: 4px;
}

.hero-card {
  background: #020617;
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid #1e293b;
}

/* GENERIC SECTIONS */

.section {
  padding: 40px 0;
  background: #0b1220;
  color: #e5e7eb;
}

.section.alt {
  background: #020617;
}

.section h1,
.section h2 {
  margin-top: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: #020617;
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid #1e293b;
}

.check {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.check li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 14px;
}

.check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
  font-size: 13px;
}

.bullet {
  padding-left: 20px;
  font-size: 14px;
}

/* FORMS */

.form {
  background: #020617;
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid #1e293b;
}

.field {
  margin-bottom: 12px;
}

.field label {
  display: block;
  font-size: 13px;
  color: #cbd5f5;
  margin-bottom: 4px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #1f2937;
  background: #020617;
  color: #e5e7eb;
  font-size: 14px;
}

.field-row {
  display: flex;
  gap: 12px;
}

.field-row .field {
  flex: 1;
}

.full-width {
  width: 100%;
  text-align: center;
}

.small-muted {
  font-size: 13px;
  color: #9ca3af;
}

.tiny-muted {
  font-size: 11px;
  color: #64748b;
}

.booking-layout {
  align-items: flex-start;
}

/* FAQ */

.faq details {
  background: #020617;
  border-radius: 12px;
  border: 1px solid #1e293b;
  padding: 10px 14px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

/* FOOTER */

.footer {
  background: #020617;
  color: #e5e7eb;
  border-top: 1px solid #1e293b;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0 8px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: #cbd5f5;
}

.footer-book {
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid #111827;
  padding: 8px 0 14px;
  font-size: 11px;
  color: #6b7280;
}

/* RESPONSIVE */

@media (max-width: 800px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .booking-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .field-row {
    flex-direction: column;
  }
}