:root {
  --primary: #0f2740;
  --primary-2: #14385b;
  --accent: #d7a64a;
  --accent-soft: #f8ecd1;
  --ink: #16202a;
  --muted: #5f6974;
  --bg: #f7f9fb;
  --surface: #ffffff;
  --border: #dfe6ee;
  --shadow: 0 18px 40px rgba(15,39,64,0.12);
  --radius: 22px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 82px 0; }
.section-sm { padding: 64px 0; }
.kicker {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(215,166,74,0.15);
  color: #9a6a14;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}
.section h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin: 16px 0;
}
.section p.lead {
  color: var(--muted);
  max-width: 760px;
  font-size: 1.05rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(15,39,64,0.86);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #f4d28d);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-weight: 600;
}
.nav-links a:hover,
.nav-links a.is-active { color: #fff; }
.nav-cta,
.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}
.nav-cta,
.button { background: var(--accent); color: #1d1a14; }
.button-secondary { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.28); }
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
}
.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  place-items: center;
  color: white;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,18,31,0.86) 0%, rgba(7,18,31,0.64) 45%, rgba(7,18,31,0.45) 100%),
    url('https://images.pexels.com/photos/259447/pexels-photo-259447.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(247,249,251,0) 0%, var(--bg) 100%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  gap: 38px;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.98;
  margin: 18px 0;
}
.hero-copy p {
  max-width: 640px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  backdrop-filter: blur(14px);
  padding: 26px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.16);
}
.hero-card h3 { margin: 0 0 10px; font-size: 1.35rem; }
.hero-card p { margin: 0 0 14px; color: rgba(255,255,255,0.82); }
.hero-card ul { margin: 0; padding-left: 18px; color: rgba(255,255,255,0.9); }
.stat-strip {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}
.stat {
  background: var(--surface);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.stat strong { display: block; font-size: 2rem; color: var(--primary); }
.stat span { color: var(--muted); }
.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 26px;
}
.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; font-size: 1.2rem; }
.card p { color: var(--muted); }
.card-icon {
  width: 54px; height: 54px; border-radius: 16px; background: var(--accent-soft);
  display: grid; place-items: center; margin-bottom: 16px; font-weight: 900; color: #986815;
}
.feature-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}
.image-panel {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.image-panel img { width: 100%; height: 100%; object-fit: cover; min-height: 430px; }
.check-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0,1fr));
  margin-top: 18px;
}
.check-item {
  background: var(--surface);
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  font-weight: 600;
}
.banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  border-radius: 34px;
  padding: 38px;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.quote-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.quote {
  background: var(--surface);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.quote strong { color: var(--primary); }
.route-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 22px;
}
.route-pill {
  padding: 14px 18px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border);
  font-weight: 700;
  text-align: center;
}
.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 0.85fr 1.15fr;
}
.contact-card,
.form-card {
  background: var(--surface);
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 26px;
}
.contact-card h3,
.form-card h3 { margin-top: 0; }
.contact-list { display: grid; gap: 14px; margin-top: 18px; }
.contact-item { color: var(--muted); }
.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.form-grid .full { grid-column: 1 / -1; }
label { display: grid; gap: 7px; font-weight: 700; font-size: 0.95rem; }
input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  font: inherit;
  background: #fff;
}
textarea { min-height: 132px; resize: vertical; }
.form-note { margin-top: 12px; color: var(--muted); font-size: 0.95rem; }
.page-hero {
  color: white;
  padding: 118px 0 78px;
  background: linear-gradient(120deg, rgba(7,18,31,0.84), rgba(20,56,91,0.8)),
    url('https://images.pexels.com/photos/19772227/pexels-photo-19772227/free-photo-of-aerial-view-of-cape-town-south-africa.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
}
.page-hero h1 { font-size: clamp(2.4rem, 4vw, 4.4rem); margin: 14px 0 10px; }
.page-hero p { max-width: 760px; color: rgba(255,255,255,0.86); }
.site-footer {
  background: #09111c;
  color: rgba(255,255,255,0.82);
  padding: 38px 0;
}
.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.82); text-decoration: none; }
.small-muted { color: var(--muted); }
@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .contact-grid,
  .banner { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    background: rgba(15,39,64,0.98);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: none;
    flex-direction: column;
    padding: 20px;
    align-items: stretch;
  }
  .nav-links.is-open { display: flex; }
  .nav-links .nav-cta { width: 100%; }
  .stat-strip,
  .check-list,
  .form-grid { grid-template-columns: 1fr; }
}
