
:root {
  --mj-red: #ca0303;
  --mj-dark: #111111;
  --mj-muted: #6c757d;
}
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--mj-dark);
}
.navbar-brand img { height: 42px; width: auto; }
.hero {
  position: relative;
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.45)), url('images/Aircraft_interior.jpg') center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.section-title { letter-spacing: -.03em; }
.icon-circle {
  width: 3rem; height: 3rem; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(202, 3, 3, .1); color: var(--mj-red); font-weight: 700;
}
.service-card, .feature-card, .fleet-card {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 1rem;
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}
.service-card:hover, .feature-card:hover, .fleet-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0,0,0,.08);
}
.fleet-card img {
  aspect-ratio: 16/10; object-fit: cover; border-top-left-radius: 1rem; border-top-right-radius: 1rem;
}
.cta-strip { background: var(--mj-red); }
.footer-link { color: rgba(255,255,255,.85); text-decoration: none; }
.footer-link:hover { color: #fff; }
.small-muted { color: var(--mj-muted); }
.privacy-content h2 { margin-top: 2rem; }
.privacy-content h3 { margin-top: 1.5rem; }
