/* ==========================================================================
   KMAK — Design Tokens
   ========================================================================== */
:root {
  --navy: #0f1e38;
  --navy-2: #16294a;
  --navy-3: #1e3358;
  --orange: #f2701c;
  --orange-dark: #d85e12;
  --gray-50: #f7f8fa;
  --gray-100: #eef1f5;
  --gray-200: #e2e6ec;
  --gray-300: #cbd3dd;
  --gray-600: #5b6472;
  --gray-900: #1a2233;
  --white: #ffffff;

  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 10px;
  --shadow-sm: 0 2px 10px rgba(15, 30, 56, 0.06);
  --shadow-md: 0 12px 30px rgba(15, 30, 56, 0.12);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 90px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
p { margin: 0 0 1em; color: var(--gray-600); }
p:last-child { margin-bottom: 0; }
button { font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-orange { color: var(--orange); }

/* Scroll-reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media print {
  [data-reveal] { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(242, 112, 28, 0.35);
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }
.btn-full { width: 100%; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 30, 56, 0.96);
  backdrop-filter: blur(6px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; }
.logo-badge {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border-radius: 8px;
  padding: 6px 10px;
  line-height: 0;
}
.logo-badge img { height: 30px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav ul {
  display: flex;
  gap: 28px;
}
.nav-link {
  color: var(--gray-200);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--white); }

.nav-cta { padding: 10px 22px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%);
  color: var(--white);
  padding-top: 72px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 64px;
}
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow-light { color: rgba(255, 255, 255, 0.65); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-bottom: 0.4em;
}
.hero-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  max-width: 46ch;
  margin-bottom: 1.6em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-entity {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}
.hero-art { display: flex; justify-content: center; }
.hero-svg { width: 100%; max-width: 440px; height: auto; }

.stats-strip {
  background: rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat {
  padding: 26px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--orange);
  font-weight: 700;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

/* ==========================================================================
   Sections (shared)
   ========================================================================== */
.section { padding: 88px 0; }
.section-alt { background: var(--gray-50); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.section-sub { font-size: 1.05rem; margin-top: 10px; }

/* ==========================================================================
   About
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.lead-text {
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 500;
}
.move-panel {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
}
.move-panel h3 { font-size: 1.1rem; margin-bottom: 16px; }
.move-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.move-tags li {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

/* ==========================================================================
   Vision / Mission / Values
   ========================================================================== */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
.vm-card {
  position: relative;
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 36px;
  overflow: hidden;
}
.vm-dark { background: var(--navy); }
.vm-dark h3, .vm-dark p { color: var(--white); }
.vm-dark p { color: rgba(255, 255, 255, 0.75); }
.vm-card h3 { font-size: 1.3rem; }
.vm-num {
  position: absolute;
  top: 10px; right: 20px;
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(15, 30, 56, 0.08);
}
.vm-dark .vm-num { color: rgba(255, 255, 255, 0.08); }

.values-title {
  font-size: 1.3rem;
  margin-bottom: 24px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-card h4 { font-size: 1rem; }
.value-card p { font-size: 0.92rem; }

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(242, 112, 28, 0.1);
  color: var(--orange);
  margin-bottom: 14px;
}
.icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-sm { width: 22px; height: 22px; flex-shrink: 0; color: var(--orange); }

/* ==========================================================================
   Services
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-num {
  font-family: var(--font-head);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
}
.service-svg { width: 100%; height: auto; margin: 14px 0 18px; }
.service-card h3 { font-size: 1.1rem; }
.service-card p { font-size: 0.92rem; }

.capabilities h3 { font-size: 1.3rem; margin-bottom: 24px; }
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}
.capability-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-200);
}
.capability-item h5 { font-size: 0.95rem; margin-bottom: 4px; }
.capability-item p { font-size: 0.88rem; margin: 0; }

/* ==========================================================================
   Process
   ========================================================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: left;
}
.process-index {
  display: block;
  font-family: var(--font-head);
  color: var(--gray-300);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.process-step .icon { color: var(--orange); margin-bottom: 10px; }
.process-step h4 { font-size: 1rem; }
.process-step p { font-size: 0.88rem; }

/* ==========================================================================
   Fleet table
   ========================================================================== */
.table-wrap { margin-bottom: 56px; }
.fleet-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  overflow: hidden;
}
.fleet-table thead th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  text-transform: uppercase;
  padding: 16px 20px;
}
.fleet-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
  color: var(--gray-900);
}
.fleet-table tbody tr:last-child td { border-bottom: none; }
.fleet-table tbody tr:nth-child(even) { background: var(--gray-50); }
.fleet-table .cap { color: var(--orange); font-weight: 700; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 32px;
  margin-bottom: 56px;
}
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-item h5 { font-size: 0.95rem; margin-bottom: 4px; }
.why-item p { font-size: 0.88rem; margin: 0; }

.safety-banner {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}
.safety-banner h3 { color: var(--white); font-size: 1.4rem; flex: 1 1 320px; margin: 0; }
.safety-banner p { color: rgba(255, 255, 255, 0.75); flex: 1 1 380px; margin: 0; }

/* ==========================================================================
   Coverage
   ========================================================================== */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.coverage-col {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 26px;
}
.coverage-col h4 { font-size: 1.05rem; margin-bottom: 14px; }
.coverage-col li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--gray-200);
  font-size: 0.94rem;
  color: var(--gray-900);
}
.coverage-col li:last-child { border-bottom: none; }
.coverage-col li.muted { color: var(--gray-600); font-style: italic; }

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-3) 100%);
  padding: 64px 0;
}
.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  margin: 0;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.contact-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-row:first-child { padding-top: 0; }
.contact-row h5 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-row p { font-size: 0.92rem; margin: 0; }
.placeholder { color: var(--gray-600); font-style: italic; }
a.placeholder:hover { color: var(--orange); }

.contact-form {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row { margin-bottom: 18px; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--gray-900);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 112, 28, 0.15);
  outline: none;
}
.form-row textarea { resize: vertical; }
.form-status {
  margin: 14px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.2em;
}
.form-status.success { color: #1a7f43; }
.form-status.error { color: #c0392b; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 28px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 28px;
  margin-bottom: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand p { color: rgba(255, 255, 255, 0.55); font-size: 0.85rem; margin: 0; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.9rem; color: rgba(255, 255, 255, 0.75); }
.footer-nav a:hover { color: var(--orange); }
.footer-copy { font-size: 0.8rem; text-align: center; margin: 0; color: rgba(255, 255, 255, 0.5); }

/* ==========================================================================
   Mobile floating CTA
   ========================================================================== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 15px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(242, 112, 28, 0.4);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.mobile-cta.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 18px; width: 100%; }
  .nav-link { display: block; font-size: 1.1rem; }
  .nav-cta { width: 100%; }
  .nav-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: left; }
  .hero-art { order: -1; max-width: 320px; margin: 0 auto 8px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }

  .about-grid { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .capabilities-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }

  .mobile-cta { display: block; }
  body { padding-bottom: 76px; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .values-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .fleet-table thead { display: none; }
  .fleet-table, .fleet-table tbody, .fleet-table tr, .fleet-table td { display: block; width: 100%; }
  .fleet-table tr {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 14px;
    padding: 8px 18px;
  }
  .fleet-table tbody tr:nth-child(even) { background: var(--white); }
  .fleet-table td {
    border-bottom: 1px dashed var(--gray-200);
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    text-align: right;
  }
  .fleet-table td:last-child { border-bottom: none; }
  .fleet-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--navy);
    text-align: left;
    font-size: 0.82rem;
  }

  .cta-inner { justify-content: center; text-align: center; }
  .safety-banner { text-align: center; justify-content: center; }
}

@media (max-width: 420px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
