/* ═══════════════════════════════════════════════════════════
   MH Charter — Premium Aviation Website
   Blue & White Luxury Theme
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --navy: #0a1628;
  --navy-light: #12243d;
  --blue: #1a5fb4;
  --blue-bright: #2d7be5;
  --blue-accent: #4da3ff;
  --blue-glow: rgba(77, 163, 255, 0.25);
  --white: #ffffff;
  --off-white: #f0f4f8;
  --gray-100: #e8edf3;
  --gray-200: #c9d3e0;
  --gray-300: #8899aa;
  --gray-text: #4a5568;
  --gold: #c9a84c;
  --gold-light: #e0c872;
  --transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-glow: 0 0 40px rgba(77, 163, 255, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --max-width: 1280px;
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: var(--blue-bright);
  transform: translateY(-50%);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-300);
  max-width: 600px;
  line-height: 1.8;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26, 95, 180, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 95, 180, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
}

.btn:hover .btn-icon { transform: translateX(4px); }

/* ── Header / Navigation ──────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo-img {
  height: 44px;
  width: auto;
  max-width: 200px;
  transition: all var(--transition);
}

.header.scrolled .logo-img {
  height: 36px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(45, 123, 229, 0.4);
}

.logo-icon svg { width: 26px; height: 26px; fill: var(--white); }

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-text span { color: var(--blue-accent); }

.nav { display: flex; align-items: center; gap: 8px; }

.nav-link {
  padding: 10px 20px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  margin-left: 12px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(26, 95, 180, 0.4);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 95, 180, 0.5);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ── Hero Section ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-fallback-img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-bg img:not(.hero-fallback-img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.4) 0%,
    rgba(10, 22, 40, 0.6) 50%,
    rgba(10, 22, 40, 0.95) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--blue-accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  padding: 140px 0 100px;
}

/* ── Hero Banner — "MH Charter & Aviation Services" ──── */
.hero-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.hero-banner-line {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-banner-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-banner-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--white);
  white-space: nowrap;
  margin: 0;
  line-height: 1.1;
}

.hero-banner-text .highlight {
  background: linear-gradient(135deg, var(--blue-accent), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(77, 163, 255, 0.12);
  border: 1px solid rgba(77, 163, 255, 0.25);
  border-radius: 50px;
  color: var(--blue-accent);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(77,163,255,0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 10px rgba(77,163,255,0); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--blue-accent), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ── Trusted / Logos Bar ───────────────────────────────── */
.trusted-bar {
  background: var(--navy);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.trusted-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.trusted-text {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  white-space: nowrap;
}

.trusted-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  opacity: 0.4;
}

.trusted-logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

/* ── Section Common ────────────────────────────────────── */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-light {
  background: var(--off-white);
}

.section-alt {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 16px auto 0;
}

/* ── About Preview (Home) ──────────────────────────────── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-wrap:hover img { transform: scale(1.03); }

.about-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-img-badge-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-img-badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-top: 4px;
}

.about-content h2 { margin-bottom: 20px; }

.about-content p {
  color: var(--gray-text);
  margin-bottom: 24px;
  font-size: 1.0625rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
}

.about-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(26, 95, 180, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg { width: 14px; height: 14px; fill: var(--blue); }

/* ── Services Grid ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,95,180,0.1), rgba(77,163,255,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  box-shadow: 0 8px 25px rgba(26, 95, 180, 0.3);
}

.service-icon svg { width: 28px; height: 28px; fill: var(--blue); transition: fill var(--transition); }
.service-card:hover .service-icon svg { fill: var(--white); }

.service-card h3 { margin-bottom: 12px; }

.service-card p {
  color: var(--gray-text);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--transition);
}

.service-card:hover .learn-more { gap: 10px; }

/* ── Fleet Showcase ────────────────────────────────────── */
.fleet-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.fleet-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.fleet-img-wrap img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.fleet-details h3 {
  margin-bottom: 16px;
  color: var(--white);
}

.fleet-details p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  font-size: 1.0625rem;
}

.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.fleet-spec {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.fleet-spec-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}

.fleet-spec-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

/* ── Stats Counter ─────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--blue), var(--navy-light));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77,163,255,0.15), transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 24px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* ── Destinations / CTA ────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.9), rgba(26,95,180,0.75));
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.125rem;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Safety Section ────────────────────────────────────── */
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.safety-content h2 { margin-bottom: 20px; }

.safety-content > p {
  color: var(--gray-text);
  margin-bottom: 32px;
  font-size: 1.0625rem;
}

.safety-items { display: flex; flex-direction: column; gap: 20px; }

.safety-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.safety-item:hover {
  border-color: var(--blue-bright);
  box-shadow: var(--shadow-glow);
}

.safety-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26,95,180,0.1), rgba(77,163,255,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.safety-item-icon svg { width: 24px; height: 24px; fill: var(--blue); }

.safety-item h4 { margin-bottom: 4px; }
.safety-item p { font-size: 0.9rem; color: var(--gray-text); }

.safety-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.safety-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ── Testimonials ──────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(77,163,255,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars svg { width: 18px; height: 18px; fill: var(--gold); }

.testimonial-text {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial-name {
  font-weight: 600;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

/* ── Contact / Form ────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info h2 { margin-bottom: 20px; }

.contact-info > p {
  color: var(--gray-text);
  margin-bottom: 36px;
}

.contact-items { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,95,180,0.1), rgba(77,163,255,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg { width: 24px; height: 24px; fill: var(--blue); }

.contact-item-label {
  font-size: 0.8125rem;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-item-value a { color: var(--navy); }
.contact-item-value a:hover { color: var(--blue); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.contact-form-wrap h3 { margin-bottom: 8px; }

.contact-form-wrap > p {
  color: var(--gray-text);
  font-size: 0.9375rem;
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--navy);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(45, 123, 229, 0.1);
}

.form-textarea { min-height: 120px; resize: vertical; }

.form-submit { width: 100%; justify-content: center; }

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.form-success.show { display: block; }

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success-icon svg { width: 32px; height: 32px; fill: var(--white); }

.form-success h3 { color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--gray-text); }

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 350px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.footer-social svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.7); }

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }

.footer-link {
  color: rgba(255,255,255,0.55);
  font-size: 0.9375rem;
  transition: all var(--transition);
}

.footer-link:hover {
  color: var(--blue-accent);
  padding-left: 6px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  margin-top: 24px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.8125rem;
}

/* ── Page Hero (Inner Pages) ───────────────────────────── */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.5), rgba(10,22,40,0.9));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 100px;
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; }

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 0.875rem;
}

.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--blue-accent); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--blue-accent); }

/* ── About Page Specifics ──────────────────────────────── */
.about-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-full-content h2 { margin-bottom: 20px; }

.about-full-content p {
  color: var(--gray-text);
  font-size: 1.0625rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(26,95,180,0.1), rgba(77,163,255,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg { width: 32px; height: 32px; fill: var(--blue); }

.value-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.value-card p { color: var(--gray-text); font-size: 0.9375rem; }

/* ── Executive Summary (About) ─────────────────────────── */
.exec-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.exec-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}

.exec-item:hover {
  border-color: rgba(77,163,255,0.3);
  background: rgba(255,255,255,0.06);
}

.exec-item-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-accent);
  line-height: 1;
  flex-shrink: 0;
}

.exec-item h4 { color: var(--white); margin-bottom: 6px; }
.exec-item p { color: rgba(255,255,255,0.6); font-size: 0.9375rem; }

/* ── Services Page Grid ────────────────────────────────── */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-detail-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.service-detail-body {
  padding: 32px;
}

.service-detail-body h3 { margin-bottom: 12px; }

.service-detail-body p {
  color: var(--gray-text);
  font-size: 0.9375rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.service-detail-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-detail-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--navy);
}

.service-detail-feature svg { width: 16px; height: 16px; fill: var(--blue); flex-shrink: 0; }

/* ── Fleet Page Cards ──────────────────────────────────── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.fleet-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fleet-card:hover .fleet-card-img img { transform: scale(1.05); }

.fleet-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(10, 22, 40, 0.8);
  backdrop-filter: blur(8px);
  color: var(--blue-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid rgba(77, 163, 255, 0.25);
}

.fleet-card-body { padding: 28px; }
.fleet-card-body h3 { margin-bottom: 8px; }
.fleet-card-body > p { color: var(--gray-text); font-size: 0.9rem; margin-bottom: 20px; }

.fleet-card-models {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.fleet-card-models span {
  padding: 4px 12px;
  background: var(--off-white);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
}

.fleet-card-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.fleet-card-spec-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-300);
}

.fleet-card-spec-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

/* ── Inventory Page ────────────────────────────────────── */
.inventory-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.inventory-intro-heading {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 28px;
  font-style: italic;
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.inventory-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  text-align: center;
}

.inventory-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.inventory-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.inventory-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.inventory-card:hover .inventory-card-img img {
  transform: scale(1.05);
}

.inventory-card-body {
  padding: 28px 24px 32px;
}

.inventory-card-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}

.inventory-specs {
  text-align: center;
  margin-bottom: 24px;
}

.inventory-spec-row {
  margin-bottom: 6px;
  line-height: 1.6;
}

.inventory-spec-label {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
}

.inventory-spec-value {
  color: var(--gray-text);
  font-size: 0.9rem;
}

/* Brochure button — red like reference */
.btn-brochure {
  display: inline-block;
  padding: 12px 40px;
  background: #b71c1c;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  margin-top: 8px;
}

.btn-brochure:hover {
  background: #8e0000;
  transform: translateY(-2px);
}

/* Member Of Section */
.member-of-section {
  text-align: center;
  padding: 60px 0 40px;
}

.member-of-heading {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 2.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 40px;
}

.member-of-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.member-logo {
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.member-logo:hover {
  opacity: 1;
}

/* Inventory showcase jet image */
.inventory-showcase {
  padding: 0;
  text-align: center;
  background: var(--white);
}

.showcase-jet-img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Subscribe Section */
.subscribe-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.subscribe-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.subscribe-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.subscribe-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.85);
}

.subscribe-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.subscribe-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  max-width: 400px;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 320px;
}

.subscribe-form input {
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.9);
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--navy);
  outline: none;
  transition: border-color 0.3s ease;
}

.subscribe-form input:focus {
  border-color: var(--blue);
}

.subscribe-form input::placeholder {
  color: #888;
}

.btn-subscribe {
  display: inline-block;
  padding: 14px 40px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid var(--white);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn-subscribe:hover {
  background: transparent;
  color: #fff;
}

/* ── Animations ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-preview,
  .fleet-showcase,
  .safety-grid,
  .contact-grid,
  .about-full {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .services-detail-grid { grid-template-columns: 1fr; }
  .exec-summary { grid-template-columns: 1fr; }
  .inventory-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 1000;
  }

  .nav.open .nav-link {
    font-size: 1.25rem;
    padding: 16px 32px;
  }

  .hero-content { padding: 120px 0 60px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-banner-text { font-size: clamp(1.6rem, 4.5vw, 2.5rem); white-space: normal; }
  .hero-banner-line { max-width: 40px; }
  .hero-banner { flex-wrap: wrap; justify-content: flex-start; }

  .services-grid,
  .testimonials-grid,
  .fleet-grid,
  .inventory-grid,
  .mission-values {
    grid-template-columns: 1fr;
  }

  .subscribe-content { flex-direction: column; text-align: center; }
  .subscribe-text h2 { max-width: 100%; }
  .subscribe-form { min-width: 100%; }
  .member-of-logos { gap: 30px; }
  .inventory-intro-heading { font-size: 1.4rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .fleet-specs { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

/* ── Utility ───────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, var(--blue-accent), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Small Phones (480px and below) ────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.125rem; }
  .hero-content { padding: 100px 0 40px; }
  .hero-text { font-size: 0.9rem; }
  .hero-badge { font-size: 0.7rem; }
  .hero-banner-text { font-size: 1.8rem; white-space: normal; text-align: center; }
  .hero-banner-line { display: none; }
  .hero-banner { justify-content: center; }
  .hero-stat-number { font-size: 1.5rem; }
  .section { padding: 48px 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .trusted-logos { gap: 16px; flex-wrap: wrap; }
  .trusted-logo { font-size: 0.7rem; }
  .about-img-badge { display: none; }
  .member-of-logos { flex-direction: column; align-items: center; }
}

/* ── Touch Target Minimums (44×44px for iOS/Android) ───── */
@media (pointer: coarse) {
  .btn, .nav-link, .nav-cta, .hamburger,
  .footer-links a, .social-link,
  input[type="submit"], button {
    min-height: 44px;
    min-width: 44px;
  }
  .nav-link { padding: 12px 16px; }
  .footer-links a { padding: 8px 0; display: inline-block; }
}

/* ── Safe Area Insets (iPhone notch/Dynamic Island) ────── */
@supports (padding: env(safe-area-inset-top)) {
  .header {
    padding-top: env(safe-area-inset-top);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  .hero {
    padding-top: env(safe-area-inset-top);
  }
  footer {
    padding-bottom: env(safe-area-inset-bottom);
  }
}
