:root {
  --primary: #0b3f98;
  --primary-dark: #05285f;
  --primary-soft: #eaf2ff;
  --accent: #f58220;
  --accent-light: #ffb347;
  --text: #112033;
  --muted: #5f6d7b;
  --bg: #f7f9fc;
  --white: #ffffff;
  --border: #dde4ef;
  --shadow: 0 16px 45px rgba(8, 32, 78, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 48px 0; }
.alt-bg { background: var(--bg); }

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

h1, h2, h3, h4 { line-height: 1.12; margin-top: 0; }
h1 { font-size: clamp(38px, 5.2vw, 68px); letter-spacing: -0.045em; }
h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -0.035em; color: var(--primary-dark); }
p { margin-top: 0; color: var(--muted); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.brand { display: inline-flex; align-items: center; min-width: 220px; }
.brand-logo {
  height: 82px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}

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

.main-nav a {
  font-weight: 800;
  color: var(--primary-dark);
  font-size: 15px;
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #071a34 !important;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(245, 130, 32, .22);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--primary);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 999px;
  transition: .25s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero */
.hero {
  padding: 48px 0 44px;
  background:
    radial-gradient(circle at 10% 0%, rgba(245,130,32,.20), transparent 32%),
    radial-gradient(circle at 90% 20%, rgba(11,63,152,.14), transparent 36%),
    linear-gradient(135deg, #f9fbff 0%, #ffffff 47%, #eef4ff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: center;
}

.hero-copy h1 {
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.hero-copy p {
  font-size: 19px;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  border: 2px solid transparent;
  transition: .25s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 14px 28px rgba(11,63,152,.24);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(11,63,152,.30); }

.btn-secondary {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(255,255,255,.72);
}

.btn-secondary:hover { background: var(--primary); color: #fff; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 18px;
}

.hero-stats div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-stats strong {
  display: block;
  color: var(--accent);
  font-size: 25px;
  line-height: 1;
}

.hero-stats span { color: var(--muted); font-size: 14px; }

.hero-visual img {
  width: 100%;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

/* Feature strip */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-strip article,
.service-card,
.about-card,
.highlight-box,
.quote-form,
.visual-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.feature-strip article {
  padding: 22px;
}

.icon-box, .service-icon, .highlight-box span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 25px;
  margin-bottom: 14px;
}

.feature-strip h3,
.service-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

/* Services */
.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 26px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  padding: 22px;
  transition: .2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Fleet and visuals */
.fleet-layout,
.visual-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.fleet-copy p, .contact-copy p { font-size: 17px; }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  color: var(--muted);
}

.feature-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
}

.fleet-image img, .visual-card img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.visual-card { padding: 0; overflow: hidden; }

.process-list {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.process-list div {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(8,32,78,.08);
}

.process-list strong {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.process-list span {
  color: var(--text);
  font-weight: 700;
}

/* About */
.about-card { padding: 26px; }
.about-highlights { display: grid; gap: 18px; }
.highlight-box { padding: 22px; }
.highlight-box h4 { color: var(--accent); margin-bottom: 8px; }

/* Contact */
.contact-section {
  background:
    linear-gradient(135deg, rgba(5,40,95,.96), rgba(11,63,152,.92)),
    radial-gradient(circle at 20% 20%, rgba(245,130,32,.24), transparent 40%);
}

.contact-section h2,
.contact-section .contact-copy p,
.contact-section .contact-info p {
  color: #fff;
}

.contact-section .eyebrow { color: var(--accent-light); }

.contact-info {
  margin-top: 14px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
}

.quote-form {
  padding: 24px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(245,130,32,.22);
  border-color: var(--accent);
}

.full-btn { width: 100%; }

/* Footer */
.site-footer {
  padding: 24px 0;
  background: var(--primary-dark);
  color: #dfe8ff;
}

.footer-wrap {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-logo {
  height: 72px;
  width: auto;
  background: #fff;
  padding: 8px 14px;
  border-radius: 14px;
}

.site-footer p {
  margin: 0;
  color: #dfe8ff;
}

/* Tablet */
@media (max-width: 1024px) {
  .brand-logo { height: 76px; max-width: 250px; }
  .hero-grid,
  .fleet-layout,
  .visual-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy { text-align: center; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { max-width: 760px; margin-left: auto; margin-right: auto; }
}

/* Mobile navigation and layout */
@media (max-width: 760px) {
  .container { width: min(100% - 24px, 1180px); }
  .section { padding: 40px 0; }

  .nav-wrap { min-height: 88px; }
  .brand { min-width: 0; flex: 1; }
  .brand-logo {
    height: 76px;
    max-width: 245px;
  }

  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(8, 32, 78, .17);
  }

  .main-nav.open { display: flex; }

  .main-nav a {
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 15px;
  }

  .main-nav a:hover { background: var(--primary-soft); }
  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero { padding: 34px 0 38px; }
  h1 { font-size: clamp(34px, 11vw, 46px); }
  .hero-copy p { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats,
  .feature-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    border-radius: 24px;
  }

  .process-list div {
    align-items: flex-start;
  }

  .footer-wrap {
    justify-content: center;
    text-align: center;
  }

  .footer-logo {
    height: 78px;
  }
}

/* Small mobile */
@media (max-width: 420px) {
  .brand-logo {
    height: 68px;
    max-width: 210px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .hero-stats div,
  .feature-strip article,
  .service-card,
  .about-card,
  .highlight-box,
  .quote-form {
    border-radius: 20px;
  }

  .hero-grid,
  .fleet-layout,
  .visual-grid,
  .about-grid,
  .contact-grid {
    gap: 18px;
  }
}
