:root {
  --navy-950: #061a24;
  --navy-900: #0a2632;
  --navy-800: #0f3444;
  --teal-700: #145a66;
  --teal-500: #1c8393;
  --teal-300: #5bb8c4;
  --amber-500: #e2933a;
  --amber-400: #f0a94e;
  --amber-300: #f6c880;
  --ivory-50: #f7f5ef;
  --ivory-100: #efeade;
  --ink-900: #16232a;
  --ink-600: #4a5c65;
  --white: #ffffff;
  --radius: 10px;
  --shadow-soft: 0 10px 30px rgba(6, 26, 36, 0.12);
  --shadow-card: 0 4px 18px rgba(6, 26, 36, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink-900);
  background: var(--ivory-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  margin: 0 0 0.5em;
  line-height: 1.2;
  color: var(--navy-950);
}

p { margin: 0 0 1em; }

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-500);
  margin-bottom: 12px;
}

.section {
  padding: 88px 0;
}

.section--tight { padding: 64px 0; }

.section--navy {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: var(--ivory-100);
}

.section--navy h2, .section--navy h3 { color: var(--white); }

.section--ivory { background: var(--ivory-100); }

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

.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }

.section-head p { color: var(--ink-600); }

.section--navy .section-head p { color: #b9cdd4; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--amber-500);
  color: var(--navy-950);
}

.btn-primary:hover { background: var(--amber-400); transform: translateY(-1px); box-shadow: var(--shadow-soft); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--navy-800);
  color: var(--navy-950);
}

.btn-outline-dark:hover { background: var(--navy-950); color: var(--white); }

.btn-block { width: 100%; justify-content: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 26, 36, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}

.brand .mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--amber-500), var(--teal-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  font-weight: 800;
  font-size: 1.05rem;
}

.brand .brand-sub {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-300);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  color: #d7e4e8;
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

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

.nav-cta { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(28, 131, 147, 0.35), transparent),
    linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--teal-700) 140%);
  color: var(--white);
  padding: 120px 0 100px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 60px);
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 .accent { color: var(--amber-400); }

.hero-lede {
  font-size: 1.12rem;
  color: #cfe0e4;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  color: var(--white);
}

.hero-stat span {
  font-size: 0.82rem;
  color: #a9c2c8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-visual {
  position: relative;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 28px;
  backdrop-filter: blur(4px);
}

.route-card {
  background: var(--white);
  color: var(--ink-900);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.route-card .route-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: var(--ink-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.route-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
}

.route-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--teal-500);
  flex-shrink: 0;
}

.route-dot--end { background: var(--amber-500); }

.route-track {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal-300) 0 6px, transparent 6px 12px);
  position: relative;
}

.route-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(28,131,147,0.1);
  color: var(--teal-700);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 4px;
}

/* Ticker */
.ticker {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}

.ticker .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  color: #9fb8bf;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.ticker strong { color: var(--white); }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(6,26,36,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-500), var(--navy-800));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.service-card h3 { font-size: 1.12rem; margin-bottom: 10px; }

.service-card p { color: var(--ink-600); font-size: 0.94rem; margin-bottom: 16px; }

.service-link {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--teal-700);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  position: relative;
  padding: 0 20px;
  text-align: center;
}

.process-step::before {
  content: attr(data-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid var(--amber-500);
  color: var(--amber-400);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 18px;
}

.process-step h4 { color: var(--white); font-size: 1.02rem; }

.process-step p { color: #b9cdd4; font-size: 0.88rem; }

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.why-item .why-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(226,147,58,0.14);
  color: var(--amber-500);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}

.why-item h4 { font-size: 1rem; margin-bottom: 6px; }
.why-item p { font-size: 0.9rem; color: var(--ink-600); margin: 0; }

/* Tracking band */
.tracking-band {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-top: -140px;
  position: relative;
  z-index: 5;
  border: 1px solid rgba(6,26,36,0.06);
}

.tracking-band h3 { margin-bottom: 6px; font-size: 1.3rem; }
.tracking-band p { color: var(--ink-600); margin-bottom: 0; }

.tracking-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tracking-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1.5px solid #d9dfe1;
  font-size: 0.95rem;
  font-family: inherit;
}

.tracking-form input:focus {
  outline: none;
  border-color: var(--teal-500);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--amber-500);
}

.testimonial-card .quote {
  font-size: 0.96rem;
  color: var(--ink-900);
  margin-bottom: 18px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-badge {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--navy-800));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

.testimonial-person strong { display: block; font-size: 0.9rem; }
.testimonial-person span { font-size: 0.78rem; color: var(--ink-600); }

/* Coverage / network */
.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.coverage-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber-500);
}

.map-card {
  background: var(--navy-900);
  border-radius: 16px;
  padding: 30px;
  color: var(--white);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.map-card .map-glyph {
  font-size: 2.4rem;
  margin-bottom: 6px;
}

/* Insights */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.insight-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.insight-thumb {
  height: 150px;
  background: linear-gradient(135deg, var(--teal-500), var(--navy-800));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 2rem;
}

.insight-body { padding: 22px; }

.insight-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-700);
}

.insight-body h4 { font-size: 1.02rem; margin: 8px 0; }
.insight-body p { font-size: 0.88rem; color: var(--ink-600); margin-bottom: 0; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--teal-700), var(--navy-950));
  color: var(--white);
  border-radius: 20px;
  padding: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band h3 { color: var(--white); font-size: 1.7rem; margin-bottom: 6px; }
.cta-band p { color: #cfe0e4; margin: 0; }

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: #9fb8bf;
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { font-size: 0.9rem; color: #9fb8bf; }
.footer-col a:hover { color: var(--amber-400); }

.footer-brand p { font-size: 0.9rem; max-width: 280px; color: #8ea9b0; }

.footer-socials { display: flex; gap: 10px; margin-top: 18px; }

.social-pill {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}

.social-pill:hover { border-color: var(--amber-500); color: var(--amber-400); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer-bottom a { color: #9fb8bf; }
.footer-bottom a:hover { color: var(--amber-400); }

/* Page hero (interior pages) */
.page-hero {
  background: linear-gradient(150deg, var(--navy-950), var(--teal-700));
  color: var(--white);
  padding: 80px 0 64px;
}

.page-hero h1 { color: var(--white); margin-bottom: 10px; }

.breadcrumb { color: #a9c2c8; font-size: 0.85rem; }
.breadcrumb a { color: var(--amber-400); }

/* Form */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }

.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--ink-900); }

.form-field input, .form-field select, .form-field textarea {
  padding: 12px 14px;
  border: 1.5px solid #d9dfe1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.94rem;
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
}

.contact-info-list { display: grid; gap: 20px; }

.info-block {
  display: flex;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.info-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(28,131,147,0.12);
  color: var(--teal-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.info-block h4 { font-size: 0.98rem; margin-bottom: 4px; }
.info-block p { font-size: 0.9rem; color: var(--ink-600); margin: 0; }

/* Values grid (about page) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.value-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 16px;
  box-shadow: var(--shadow-card);
}

.value-card .value-mark {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-500), var(--teal-500));
  color: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}

.value-card h4 { font-size: 0.94rem; margin-bottom: 6px; }
.value-card p { font-size: 0.82rem; color: var(--ink-600); margin: 0; }

/* Timeline */
.timeline {
  position: relative;
  padding-left: 28px;
  border-left: 2px solid rgba(28,131,147,0.3);
  display: grid;
  gap: 32px;
}

.timeline-item { position: relative; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--amber-500);
  border: 2px solid var(--ivory-50);
}

.timeline-item .year {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--teal-700);
  font-size: 1.1rem;
}

/* Fleet cards */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.fleet-thumb {
  height: 130px;
  background: linear-gradient(135deg, var(--navy-800), var(--teal-700));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 2.2rem;
}

.fleet-body { padding: 20px; }
.fleet-body h4 { font-size: 1rem; margin-bottom: 8px; }
.fleet-specs { display: flex; flex-wrap: wrap; gap: 8px; }
.fleet-specs span {
  font-size: 0.76rem;
  background: var(--ivory-100);
  color: var(--ink-600);
  padding: 4px 10px;
  border-radius: 999px;
}

/* Accreditation strip */
.accred-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.accred-item {
  text-align: center;
  color: var(--ink-600);
  font-size: 0.82rem;
  font-weight: 600;
  max-width: 160px;
}

.accred-item .accred-mark {
  width: 60px; height: 60px;
  margin: 0 auto 10px;
  border-radius: 50%;
  border: 2px solid var(--teal-500);
  color: var(--teal-700);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.78rem;
}

/* Utility */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }

/* Responsive */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .hero .container { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .coverage-layout { grid-template-columns: 1fr; }
  .insight-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: 1fr; }
  .tracking-band { grid-template-columns: 1fr; margin-top: -80px; padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .hero-stats { gap: 20px; }
}
