:root {
  --navy: #0c2340;
  --navy-2: #123863;
  --amber: #f5a524;
  --amber-dark: #d98a10;
  --cream: #f7f6f3;
  --text: #17202b;
  --muted: #6b7280;
  --muted-light: #a9adb3;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(12, 35, 64, 0.12);
  --font-display: "Manrope", "Avenir Next", -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber-dark);
  margin: 0 0 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--amber);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(245, 165, 36, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-call {
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 5%;
  background: linear-gradient(rgba(12, 35, 64, 0.55), rgba(12, 35, 64, 0));
}

.header-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease;
}

.header-icon:hover {
  transform: translateY(-1px);
}

.header-icon:not(.header-icon-badge) {
  width: 36px;
}

.header-icon-badge {
  padding: 0 12px;
}

.header-icon-badge img {
  display: block;
  height: 16px;
  width: auto;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 48px);
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.site-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.site-nav a:hover {
  color: var(--amber);
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("../images/skyline.jpg");
  background-size: cover;
  background-position: center 60%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 23, 40, 0.55) 0%, rgba(12, 23, 40, 0.35) 40%, rgba(12, 23, 40, 0.85) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 90px 6% 100px;
  text-align: center;
}

.hero-inner .eyebrow {
  color: var(--amber);
}

.hero h1 {
  color: #fff;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 19px;
  max-width: 560px;
  margin: 0 auto 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Trust bar */
.trust-bar {
  background: var(--navy);
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 22px 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 40px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.trust-list svg {
  color: var(--amber);
  flex-shrink: 0;
}

/* Section shared */
section {
  padding: 90px 6%;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* Services */
.card-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

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

.card-body {
  padding: 22px;
}

.card-body h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.card-body p {
  font-size: 14.5px;
  color: var(--muted);
}

/* Fleet banner */
.fleet-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  overflow: hidden;
}

.fleet-media {
  position: absolute;
  inset: 0;
  background-image: url("../images/van-fleet.jpg");
  background-size: cover;
  background-position: center 30%;
}

.fleet-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 35, 64, 0.75), rgba(12, 35, 64, 0.85));
}

.fleet-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 60px 6%;
}

.fleet-copy .eyebrow {
  color: var(--amber);
}

.fleet-copy h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 12px;
}

.fleet-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
}

/* Why us */
.why-us {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.why-media {
  border-radius: var(--radius);
  min-height: 420px;
  background-image: url("../images/landmark-tower.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.why-copy h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 18px;
}

.why-copy > p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 24px;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
  font-size: 15px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--amber);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5.5px;
  top: 7px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(-45deg);
}

/* Areas - deliberately understated, SEO copy rather than a headline feature */
.areas {
  padding-top: 60px;
  padding-bottom: 60px;
}

.areas .section-head {
  margin-bottom: 20px;
}

.areas .section-head h2 {
  font-size: 22px;
}

.areas-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted-light);
  font-size: 13px;
  line-height: 1.9;
}

/* Contact */
.contact {
  background: var(--navy);
  color: #fff;
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner .eyebrow {
  color: var(--amber);
}

.contact-inner h2 {
  color: #fff;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 14px;
}

.contact-lede {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.15s ease, transform 0.15s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  font-weight: 700;
}

.contact-value {
  font-size: 16px;
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: #081a30;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6%;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Responsive */
@media (max-width: 980px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us {
    grid-template-columns: 1fr;
  }
  .why-media {
    min-height: 280px;
    order: -1;
  }
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .site-nav {
    display: none;
  }
  .hero-inner {
    padding: 80px 6% 80px;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 60px 6%;
  }
}
