:root {
  --navy: #061a31;
  --navy2: #0b2747;
  --red: #e30613;
  --orange: #ff6a00;
  --ink: #0c1a2e;
  --muted: #667085;
  --line: #d9e2ee;
  --light: #f4f7fb;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.top {
  background: #031326;
  color: #dbe7f5;
  font-size: 14px;
  padding: 8px 4%;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.nav {
  height: 88px;
  background: #061a31;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.logoBox {
  background: #fff;
  padding: 12px 28px 12px 18px;
  clip-path: polygon(0 0, 86% 0, 100% 100%, 0 100%);
  height: 88px;
  display: flex;
  align-items: center;
  min-width: 300px;
}
.logoBox img {
  width: 220px;
  height: auto;
}
.menu {
  display: flex;
  gap: 24px;
  align-items: center;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
}
.menu a {
  opacity: 0.96;
}
.menu a:hover,
.menu .active {
  color: #ff6a00;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--red), #ff6a00);
  color: #fff;
  padding: 14px 22px;
  border-radius: 4px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(227, 6, 19, 0.25);
  border: 0;
}
.btn.outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: none;
}
.hero {
  position: relative;
  min-height: 650px;
  background: #061a31 url("assets/hero-branded.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 13, 27, 0.97) 0%,
    rgba(3, 13, 27, 0.92) 28%,
    rgba(3, 13, 27, 0.42) 55%,
    rgba(3, 13, 27, 0.05) 100%
  );
}
.heroInner {
  position: relative;
  color: #fff;
  width: 100%;
  padding: 90px 4%;
  display: grid;
  grid-template-columns: minmax(360px, 620px) 1fr;
  gap: 30px;
}
.eyebrow {
  letter-spacing: 7px;
  text-transform: uppercase;
  color: #ff343f;
  font-weight: 900;
  font-size: 14px;
}
.hero h1 {
  font-size: 68px;
  line-height: 0.95;
  margin: 18px 0;
  font-weight: 950;
  letter-spacing: -3px;
}
.hero h1 span {
  color: #ff2632;
}
.hero p {
  font-size: 20px;
  color: #e7edf5;
  max-width: 560px;
}
.actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.serviceBar {
  background: #071b33;
  color: white;
  padding: 22px 4%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.miniCard {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  transition: 0.25s;
}
.miniCard:hover {
  transform: translateY(-6px);
  border-color: #ff2632;
}
.miniCard b {
  display: block;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section {
  padding: 82px 4%;
}
.section.dark {
  background: #061a31;
  color: white;
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.h2 {
  font-size: 46px;
  line-height: 1.05;
  margin: 8px 0 18px;
  letter-spacing: -2px;
}
.lead {
  font-size: 18px;
  color: #48576b;
}
.dark .lead {
  color: #d5e0ee;
}
.photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(6, 26, 49, 0.2);
  background: #dde6ef;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo.tall {
  height: 440px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(10, 35, 70, 0.08);
}
.cardImg {
  padding: 0;
  overflow: hidden;
}
.cardImg img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}
.cardImg .pad {
  padding: 24px;
}
.statRow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: #071b33;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.stat {
  padding: 34px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.stat strong {
  display: block;
  font-size: 34px;
  color: #ff343f;
}
.pageHero {
  background: linear-gradient(135deg, #061a31, #0d3158);
  color: white;
  padding: 80px 4%;
}
.pageHero h1 {
  font-size: 58px;
  line-height: 1;
  margin: 12px 0;
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form input,
.form select,
.form textarea {
  padding: 15px;
  border: 1px solid #ccd7e6;
  border-radius: 8px;
  font: inherit;
}
.form textarea,
.span2 {
  grid-column: span 2;
}
.footer {
  background: #031326;
  color: #b9c7d8;
  padding: 45px 4%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
}
.footer img {
  background: #fff;
  padding: 10px;
  width: 220px;
}
.mapBox {
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: #08213d;
  position: relative;
}
.mapBox:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 59, 48, 0.35),
      transparent 18%
    ),
    url("https://upload.wikimedia.org/wikipedia/commons/8/83/Equirectangular_projection_SW.jpg")
      center/cover;
  opacity: 0.85;
}
.route {
  position: absolute;
  height: 2px;
  background: #ff2632;
  transform-origin: left;
  box-shadow: 0 0 14px #ff2632;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  50% {
    opacity: 0.35;
  }
}
@media (max-width: 900px) {
  .nav {
    height: auto;
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 18px;
  }
  .logoBox {
    clip-path: none;
    width: 100%;
    height: auto;
  }
  .menu {
    flex-wrap: wrap;
    gap: 14px;
  }
  .heroInner,
  .grid2,
  .grid3,
  .grid4 {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 46px;
  }
  .serviceBar,
  .statRow {
    grid-template-columns: 1fr 1fr;
  }
  .footer {
    grid-template-columns: 1fr;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .span2,
  .form textarea {
    grid-column: auto;
  }
}
