:root {
  --bg: #0d1117;
  --panel: rgba(12, 16, 23, 0.74);
  --panel-soft: rgba(18, 24, 36, 0.58);
  --text: #eff3f8;
  --muted: #c5cfdf;
  --brand: #f7c56f;
  --brand-deep: #a96a1f;
  --line: rgba(248, 195, 95, 0.27);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 600px at 85% -20%, rgba(255, 177, 36, 0.27), transparent 65%),
    radial-gradient(900px 500px at -10% 40%, rgba(255, 133, 42, 0.12), transparent 70%),
    linear-gradient(180deg, #05070b 0%, #111722 58%, #090f17 100%);
  line-height: 1.5;
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 16px
  );
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 10, 14, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

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

.brand {
  text-decoration: none;
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: clamp(1rem, 1vw + 0.8rem, 1.38rem);
}

.hero {
  padding: clamp(3rem, 10vw, 6rem) 0 clamp(2.5rem, 8vw, 5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: clamp(1.2rem, 2.2vw, 2.3rem);
  align-items: center;
}

.eyebrow {
  margin: 0;
  color: var(--brand);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.84rem;
}

h1,
h2 {
  margin: 0.4rem 0 0.8rem;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  max-width: 15ch;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  color: #1f1300;
  background: linear-gradient(100deg, var(--brand) 0%, #ffde96 100%);
  border: 1px solid #f0ce88;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  transition: transform 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 8px 20px rgba(245, 176, 59, 0.2);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(245, 176, 59, 0.34);
}

.btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.btn-sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.92rem;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.trust-points {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.trust-points li {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: #dbe4f1;
}

.contact-card {
  background: linear-gradient(165deg, rgba(252, 194, 102, 0.17) 0%, var(--panel) 45%, var(--panel-soft) 100%);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.4rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
}

.card-label {
  margin: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #f4d9ab;
}

.contact-card a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-top: 0.35rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.services,
.fleet,
.cta {
  padding: clamp(2.3rem, 8vw, 4.5rem) 0;
}

.fleet-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.fleet-card {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  background: #0b111a;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.fleet-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.fleet-card figcaption {
  padding: 0.8rem 0.9rem 0.9rem;
  color: #d7e2f2;
  font-size: 0.93rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.services-grid article {
  padding: 0.95rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  font-weight: 600;
  min-height: 92px;
  display: flex;
  align-items: end;
}

.cta-wrap {
  background: linear-gradient(120deg, rgba(247, 189, 99, 0.16), rgba(107, 166, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.15rem 0 1.8rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-wrap p {
  margin: 0;
  color: #b2bfd3;
}

.footer-wrap a {
  color: #dbe7f7;
  text-decoration: none;
}

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

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

@media (max-width: 620px) {
  .fleet-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

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