:root {
  --brand: #0f3d68;      /* deep navy */
  --brand-dark: #0a2b4a;
  --brand-light: #e8f0f8;
  --accent: #f28c1d;     /* freight orange */
  --accent-dark: #d9750a;
  --ink: #1a2430;
  --muted: #5b6a79;
  --bg: #ffffff;
  --bg-soft: #f5f8fb;
  --line: #e1e8ef;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 61, 104, 0.10);
  --maxw: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Top bar */
.topbar { background: var(--brand-dark); color: #cddcec; font-size: 0.85rem; }
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 8px 20px; flex-wrap: wrap;
}
.topbar a { color: #ffffff; }
.topbar .tag { color: var(--accent); font-weight: 700; }

/* Header / nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: 0.3px; color: var(--ink); font-size: 1.1rem; }
.brand:hover { text-decoration: none; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 0.95rem;
}
.brand small { display: block; font-size: 0.68rem; font-weight: 600; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: 0.98rem; }
.nav-links a.active, .nav-links a:hover { color: var(--brand); text-decoration: none; }

.btn {
  display: inline-block; background: var(--accent); color: #fff !important;
  padding: 12px 22px; border-radius: 8px; font-weight: 700; border: none; cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { background: var(--accent-dark); text-decoration: none; transform: translateY(-1px); }
.btn.ghost { background: transparent; color: #fff !important; border: 2px solid #fff; padding: 10px 20px; }
.btn.ghost:hover { background: rgba(255,255,255,0.12); }
.btn.navy { background: var(--brand); }
.btn.navy:hover { background: var(--brand-dark); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--brand); }

/* Hero */
.hero {
  position: relative; color: #fff;
  background: linear-gradient(115deg, rgba(10,43,74,0.94), rgba(15,61,104,0.72)),
    url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1600&q=70') center/cover no-repeat;
}
.hero .container { padding: 96px 20px 100px; max-width: 780px; margin-left: 0; }
.eyebrow {
  display: inline-block; background: rgba(242,140,29,0.2); border: 1px solid rgba(242,140,29,0.55);
  color: #ffd7a8; padding: 6px 14px; border-radius: 6px; font-size: 0.78rem;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; font-weight: 700;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.3rem); line-height: 1.12; margin: 0 0 16px; }
.hero p { font-size: 1.15rem; color: #e4eef7; margin: 0 0 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Sections */
section { padding: 74px 0; }
.section-head { max-width: 720px; margin: 0 auto 46px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head .eyebrow { background: var(--brand-light); color: var(--brand); border: none; }
.section-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin: 0 0 12px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.soft { background: var(--bg-soft); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 20px; text-align: center; box-shadow: var(--shadow); }
.stat .num { font-size: 2.2rem; font-weight: 800; color: var(--brand); }
.stat .label { color: var(--muted); font-size: 0.95rem; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,61,104,0.16); }
.card .card-body { padding: 26px 24px; }
.card .icon { width: 52px; height: 52px; border-radius: 12px; background: var(--brand-light); color: var(--brand); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 16px; }
.card h3 { margin: 0 0 8px; font-size: 1.2rem; }
.card p { margin: 0; color: var(--muted); }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.check-list { list-style: none; padding: 0; margin: 22px 0 0; }
.check-list li { position: relative; padding-left: 34px; margin-bottom: 14px; color: var(--ink); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 0.8rem; display: grid; place-items: center; font-weight: 700; }

/* CTA */
.cta { background: linear-gradient(120deg, var(--brand), var(--brand-dark)); color: #fff; text-align: center; border-radius: 20px; padding: 56px 30px; }
.cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 12px; }
.cta p { color: #d6e4f1; margin: 0 0 26px; font-size: 1.05rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.info-item { display: flex; gap: 14px; margin-bottom: 22px; }
.info-item .icon { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--brand-light); color: var(--brand); display: grid; place-items: center; font-size: 1.3rem; }
.info-item h4 { margin: 0 0 2px; }
.info-item p { margin: 0; color: var(--muted); }
form.card-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.95rem; }
.field input, .field textarea, .field select { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font: inherit; color: var(--ink); background: var(--bg-soft); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand); background: #fff; }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 10px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Page hero */
.page-hero { background: linear-gradient(120deg, rgba(10,43,74,0.94), rgba(15,61,104,0.8)), url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1600&q=70') center/cover no-repeat; color: #fff; text-align: center; padding: 68px 0; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0 0 8px; }
.page-hero p { color: #e4eef7; margin: 0; }
.breadcrumb { font-size: 0.9rem; color: #b9cee0; margin-top: 10px; }
.breadcrumb a { color: #fff; }

/* Facts table */
.facts { width: 100%; border-collapse: collapse; margin-top: 10px; }
.facts th, .facts td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.facts th { width: 220px; color: var(--brand); background: var(--bg-soft); }

/* Footer */
.site-footer { background: var(--brand-dark); color: #b9cee0; padding: 58px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: #fff; margin: 0 0 16px; }
.site-footer a { color: #b9cee0; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); margin-top: 40px; padding-top: 20px; font-size: 0.85rem; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero .container { max-width: 100%; }
}
@media (max-width: 640px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 10px 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 20px; width: 100%; }
  .nav-links .btn { margin: 10px 20px; text-align: center; }
  .nav-toggle { display: block; }
  .site-header { position: relative; }
  .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .facts th { width: 130px; }
}

/* Fleet gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .3s ease;
}
.gallery img:hover { transform: translateY(-4px) scale(1.02); }
@media (max-width: 820px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } .gallery img { height: 200px; } }
