/* ============ ROOT & GLOBAL ============ */
:root {
  --bg-main: #050812;
  --bg-alt: #0b1020;
  --card-bg: #111827;
  --accent: #e5b567;          /* tactical gold */
  --accent-soft: #b48b3f;
  --accent-strong: #f97316;   /* tactical orange */
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: #1f2933;
  --pill: #111827;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 55%);
  color: var(--text-main);
  line-height: 1.6;
}

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

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

section {
  padding: 4rem 1.5rem;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.section-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 640px;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--pill);
  border: 1px solid var(--border-subtle);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-strong);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.badge {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  background: rgba(15, 23, 42, 0.8);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #020617;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border-color: var(--border-subtle);
}

.btn:hover {
  filter: brightness(1.05);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-icon {
  font-size: 1rem;
}

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

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

.card {
  background: linear-gradient(135deg, #020617, #020617 45%, #050818);
  border-radius: 1rem;
  border: 1px solid var(--border-subtle);
  padding: 1.5rem;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.45);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.card-meta {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

hr.divider {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 1.5rem 0;
}

/* ============ HEADER / NAV ============ */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: linear-gradient(to right, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid rgba(15, 23, 42, 0.8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
  gap: 1rem;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #f97316 0, #e5b567 30%, #020617 72%);
  border: 1px solid rgba(249, 115, 22, 0.7);
  position: relative;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.9),
    0 0 24px rgba(249, 115, 22, 0.4);
}

.logo-chevron {
  position: absolute;
  inset: 9px 8px;
  border-radius: 6px;
  border: 2px solid rgba(15, 23, 42, 0.96);
  clip-path: polygon(
    0% 15%,
    55% 15%,
    100% 50%,
    55% 85%,
    0% 85%,
    25% 50%
  );
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 0 10px rgba(15, 23, 42, 0.9) inset;
}

.logo-text-main {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo-text-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-links a {
  color: var(--text-muted);
  padding: 0.25rem 0.35rem;
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--accent);
  background: rgba(15, 23, 42, 0.7);
}

.nav-cta {
  display: none;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: flex;
  }
}

/* ============ HERO / HOME ============ */
#home {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero {
  display: grid;
  gap: 2.25rem;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: center;
  }
}

.hero-title {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.hero-title span {
  color: var(--accent);
}

.hero-body {
  color: var(--text-muted);
  max-width: 580px;
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-meta {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-right {
  position: relative;
}

.hero-image {
  border-radius: 1.4rem;
  border: 1px solid var(--border-subtle);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.8);
  object-fit: cover;
  max-height: 320px;
  width: 100%;
}

.hero-panel {
  background: radial-gradient(circle at 0 0, rgba(229, 181, 103, 0.08), #020617 60%);
  border-radius: 1.2rem;
  border: 1px solid var(--border-subtle);
  padding: 1.1rem 1.2rem;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.8);
  margin-top: 1rem;
}

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

.hero-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.hero-stat-value {
  font-size: 1rem;
  font-weight: 600;
}

.hero-ribbon {
  position: absolute;
  top: -0.65rem;
  right: 0.9rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #111827, #020617);
  border: 1px solid rgba(229, 181, 103, 0.7);
  color: var(--accent);
}

/* ============ SECTION BACKGROUNDS ============ */
#services {
  background: #020617;
}

#aircraft {
  background: #020617;
}

#business-solutions {
  background: #020617;
}

#about {
  background: #020617;
}

#contact,
#quote {
  background: #020617;
}

/* ============ SERVICES LIST ============ */
.service-list {
  list-style: none;
  margin-top: 0.5rem;
}

.service-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.25rem 0;
  position: relative;
  padding-left: 1.1rem;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-strong);
  opacity: 0.8;
}

/* ============ AIRCRAFT TAGS ============ */
.aircraft-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
  font-size: 0.8rem;
}

.aircraft-tags span {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  padding: 0.3rem 0.7rem;
  background: rgba(15, 23, 42, 0.8);
  color: var(--text-muted);
}

/* ============ IMAGERY BLOCKS ============ */
.section-image-wrapper {
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.7);
}

.section-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ============ FORMS ============ */
form {
  display: grid;
  gap: 0.9rem;
}

label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.95);
  color: var(--text-main);
  font-size: 0.9rem;
}

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

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(229, 181, 103, 0.25);
}

.form-row {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form-helper {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: -0.35rem;
  margin-bottom: 0.2rem;
}

/* ============ FOOTER ============ */
footer {
  border-top: 1px solid var(--border-subtle);
  background: #020617;
  padding: 1.5rem 1.5rem 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent);
}
