:root {
  --navy: #0b1979;
  --navy-dark: #07114f;
  --navy-soft: #1027a8;
  --text: #16213d;
  --muted: #62708a;
  --bg: #f6f8fc;
  --white: #ffffff;
  --border: #dfe6f2;
  --shadow: 0 18px 45px rgba(11, 25, 121, 0.08);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Poppins, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-sm {
  padding: 56px 0;
}

.eyebrow {
  display: inline-block;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.section-intro {
  max-width: 760px;
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  margin-top: 10px;
}

.btn-secondary {
  border-color: var(--border);
  background: var(--white);
  color: var(--navy);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(223, 230, 242, 0.85);
  padding: 16px 0;
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand img {
  height: 80px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-weight: 600;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(16, 39, 168, 0.12), transparent 28%),
    linear-gradient(135deg, #f8faff 0%, #eef3ff 55%, #f9fbff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  min-height: 78vh;
  padding: 64px 0;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.98;
  margin: 0 0 1.1rem;
  letter-spacing: -0.04em;
}

.hero-copy p {
  margin: 0 0 1.6rem;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-card {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  border-radius: 26px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero-card .mini-logo {
  width: 64px;
  margin-bottom: 1.1rem;
}

.hero-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.65rem;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.metric {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 0.95rem;
}

.metric strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.metric span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  max-width: 500px;
  /* controls width */
  width: 100%;
  padding: 32px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 25, 121, 0.08);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 1rem;
}

.band {
  background: linear-gradient(180deg, var(--bg) 0%, #ffffff 100%);
}

.statement {
  padding: 1.6rem;
  border-left: 4px solid var(--navy);
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.statement p {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}

.stack {
  display: grid;
  gap: 1.5rem;
}

.cta {
  border-radius: 28px;
  padding: 2.2rem;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta h2,
.cta h3 {
  margin-top: 0;
}

.cta p {
  color: rgba(255, 255, 255, 0.85);
}

.cta .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
}

.solution-card {
  position: relative;
  overflow: hidden;
}

.solution-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(11, 25, 121, 0.08), transparent 68%);
}

.solution-card ul {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.solution-card li+li {
  margin-top: 0.35rem;
}

.contact-layout {
  display: flex;
  justify-content: center;
  /* center the card */
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item span {
  display: block;
  font-size: 13px;
  color: #777;
  margin-bottom: 4px;
}

.contact-item strong {
  font-size: 16px;
  font-weight: 500;
}

.contact-item:not(:last-child) {
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 700;
  font-size: 0.95rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.note {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 1rem;
}

.site-footer {
  background: #08113f;
  color: var(--white);
  padding: 26px 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-row img {
  height: 42px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.small {
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 960px) {

  .hero-grid,
  .quote-grid,
  .contact-layout,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-actions,
  .footer-row,
  .footer-links,
  .hero-metrics {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .brand img {
    height: 46px;
  }
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand img {
  transform: scale(1.5);
  height: 100px;
  width: auto;
  object-fit: contain;
}

.footer-row img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.site-footer {
  background: #031f33;
  color: #fff;
  padding: 28px 0;
}

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

.footer-left {
  display: flex;
  align-items: center;
}

.footer-logo {
  transform: scale(1.5);
  height: 110px;
  width: auto;
  display: block;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
  gap: 10px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icons a img {
  width: 28px;
  height: 28px;
  filter: invert(1);
  display: block;
}

.footer-text,
.footer-powered {
  margin: 0;
}

.footer-text {
  font-size: 15px;
  color: #fff;
}

.footer-powered {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    align-items: center;
    text-align: center;
  }

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

.hero-image-section {
  position: relative;
  width: 100%;
  height: 520px;
  background: url('/assets/banner-aircraft.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark overlay for premium look */
.hero-image-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    rgba(3, 31, 51, 0.6),
    rgba(3, 31, 51, 0.85)
  ); */
}

.hero-center-logo {
  position: relative;
  z-index: 2;
  width: 220px;
  opacity: 0.9;
}