/* Norfolk Aviation - Premium Editorial Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Brand Colors - Norfolk Aviation */
  --red: #c5221f;
  --red-dark: #a01c1a;
  --red-glow: rgba(197, 34, 31, 0.12);
  --red-subtle: rgba(197, 34, 31, 0.06);

  /* Neutrals - Warm editorial palette */
  --dark: #0a0a0a;
  --dark-card: #111111;
  --dark-surface: #161616;
  --dark-warm: #1a1917;
  --gray-900: #1a1a1a;
  --gray-800: #262626;
  --gray-700: #404040;
  --gray-600: #525252;
  --gray-500: #737373;
  --gray-400: #a3a3a3;
  --gray-300: #d4d4d4;
  --gray-200: #e5e5e5;
  --gray-100: #efefef;
  --gray-50: #f5f5f5;
  --cream: #f5f5f5;
  --white: #ffffff;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-width: 1460px;
  --section-pad: 120px;
  --section-pad-mobile: 72px;

  /* Motion */
  --transition: 0.3s ease;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows - warm tones */
  --shadow-sm: 0px 2px 3px -1px rgba(0,0,0,0.06), 0px 1px 0px 0px rgba(25,28,33,0.02), 0px 0px 0px 1px rgba(25,28,33,0.06);
  --shadow-md: 0px 0px 0px 1px rgba(0,0,0,0.04), 0px 1px 1px -0.5px rgba(0,0,0,0.04), 0px 3px 3px -1.5px rgba(0,0,0,0.04), 0px 6px 6px -3px rgba(0,0,0,0.04), 0px 12px 12px -6px rgba(0,0,0,0.04), 0px 24px 24px -12px rgba(0,0,0,0.04);
  --shadow-lg: 0 2.8px 2.2px rgba(0,0,0,0.02), 0 6.7px 5.3px rgba(0,0,0,0.028), 0 12.5px 10px rgba(0,0,0,0.035), 0 22.3px 17.9px rgba(0,0,0,0.042), 0 41.8px 33.4px rgba(0,0,0,0.05), 0 100px 80px rgba(0,0,0,0.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-900);
  line-height: 1.6;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "salt", "ss01", "ss02";
  letter-spacing: -0.01em;
  opacity: 0;
  transition: opacity 0.6s ease;
}
body.loaded { opacity: 1; }

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ============ GLOBAL TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--dark);
}

/* Headline fonts */
h1, h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}
h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* Eyebrow / badge label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--red);
  padding: 6px 16px; border-radius: 50px;
  background: var(--red-subtle);
  border: 1px solid rgba(197, 34, 31, 0.08);
  margin-bottom: 16px;
  font-family: var(--font);
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out),
              transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.30s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.36s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.42s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.48s; }
.reveal-stagger.visible > *:nth-child(9) { transition-delay: 0.54s; }
.reveal-stagger.visible > *:nth-child(10) { transition-delay: 0.60s; }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ============ HEADER / NAV ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px; height: 72px;
}
.nav-logo img { width: 300px; height: auto; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--gray-500);
  letter-spacing: -0.01em; position: relative; padding: 4px 0;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px;
  background: var(--red); transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex; align-items: center; gap: 20px;
}
.nav-phone { font-size: 14px; font-weight: 600; color: var(--dark); letter-spacing: -0.01em; }
.nav-phone small { display: block; font-size: 11px; font-weight: 400; color: var(--gray-500); text-align: right; }

/* Nav CTA Button */
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px; border-radius: 50px;
  font-size: 13px; font-weight: 600; font-family: var(--font);
  color: var(--white); background: var(--dark);
  border: 1px solid var(--dark);
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
}
.nav-cta:hover {
  background: var(--gray-800);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white); border-radius: 16px; padding: 6px 0;
  min-width: 220px; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transition: all 0.25s var(--ease-out);
  margin-top: 12px; border: 1px solid rgba(0,0,0,0.06);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  margin-top: 4px;
}
.dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 13px; color: var(--gray-500);
  transition: all 0.2s ease;
}
.dropdown-menu a:hover { background: var(--gray-50); color: var(--dark); }
.dropdown-menu a::after { display: none; }

/* Mega Menu */
.nav-dropdown--mega .dropdown-menu {
  min-width: 520px;
  padding: 28px 32px;
  left: 0;
  transform: translateX(0) translateY(6px);
}
.nav-dropdown--mega:hover .dropdown-menu {
  transform: translateX(0) translateY(0);
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.mega-col h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mega-col p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}
.mega-col a {
  padding: 8px 0 !important;
}

/* Mobile Nav */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--dark); transition: all var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============ BREADCRUMB BAR ============ */
.breadcrumb-bar {
  margin-top: 72px;
  padding: 28px 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 8px;
}
.breadcrumb-nav a {
  color: var(--gray-400);
  transition: color 0.2s ease;
}
.breadcrumb-nav a:hover { color: var(--red); }
.breadcrumb-nav span { color: var(--gray-300); }
.breadcrumb-nav .current {
  color: var(--dark);
  font-weight: 500;
}
.breadcrumb-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============ HERO - SPLIT LAYOUT (Homepage) ============ */
.hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  min-height: 600px;
  margin-top: 72px;
  padding: 80px 0 120px;
  overflow: hidden;
}
.hero--split .hero-text {
  padding-left: 0;
}
.hero--split .hero-text .eyebrow {
  margin-bottom: 24px;
}
.hero--split .hero-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero--split .hero-text h1 em {
  font-style: italic;
  font-weight: 400;
}
.hero--split .hero-text p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 32px;
}
.hero-buttons {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}

.hero--split .hero-image {
  position: relative;
}
.hero--split .hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
}

/* Floating card on hero image */
.hero-float-card {
  position: absolute;
  bottom: 24px; right: -20px;
  background: var(--white);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex; align-items: center; gap: 14px;
  min-width: 220px;
  animation: floatCard 3s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-float-card .float-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--red-subtle);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.hero-float-card .float-label {
  font-size: 11px; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 0.05em;
  font-weight: 500;
}
.hero-float-card .float-value {
  font-size: 18px; font-weight: 800; color: var(--dark);
  letter-spacing: -0.03em; line-height: 1.2;
}

/* Social proof row */
.social-proof {
  display: flex; align-items: center; gap: 12px;
  margin-top: 40px;
}
.social-proof-stars {
  display: flex; gap: 2px;
  color: #f59e0b;
  font-size: 16px;
}
.social-proof-text {
  font-size: 13px; color: var(--gray-500);
  font-weight: 500;
}

/* ============ HERO - FULL WIDTH (Interior pages) ============ */
.hero {
  position: relative; min-height: 540px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--white); margin-top: 72px;
  overflow: hidden;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.hero-bg {
  position: absolute; inset: -2%; z-index: 0;
  background-size: cover; background-position: center;
  animation: kenBurns 25s ease-in-out infinite;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.45) 100%
  );
}
.hero-content { position: relative; z-index: 1; padding: 80px 24px; max-width: 800px; }
.hero-label {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 500; opacity: 0.7; margin-bottom: 20px;
  font-family: var(--font);
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 60px); font-weight: 700;
  margin-bottom: 16px; letter-spacing: -0.02em;
  line-height: 1.05; color: var(--white);
}
.hero p { font-size: 17px; opacity: 0.8; font-weight: 400; line-height: 1.6; max-width: 500px; margin: 0 auto; }

.hero--home { min-height: 620px; }

/* ============ TRUST LOGOS BAR ============ */
.trust-bar {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.20);
  border-bottom: 1px solid rgba(0,0,0,0.20);
}
.trust-bar-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 28px;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-logos span {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.trust-logos span.trust-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
}
.trust-logos span:hover {
  color: var(--gray-500);
}

/* ============ SEARCH BOX ============ */
.search-box {
  background: var(--white); color: var(--dark); border-radius: 20px;
  padding: 44px 48px; text-align: center; margin-top: -48px;
  position: relative; z-index: 2;
  box-shadow: var(--shadow-lg);
  max-width: 600px; margin-left: auto; margin-right: auto;
  border: 1px solid rgba(0,0,0,0.05);
}
.search-box h2 {
  font-size: 22px; font-weight: 700; margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.search-box p {
  color: var(--gray-500); font-size: 14px; margin-bottom: 24px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-size: 14px;
  font-weight: 600; cursor: pointer; border: none;
  transition: all 0.25s ease;
  letter-spacing: -0.01em; position: relative;
  font-family: var(--font);
}
.btn--red {
  background: var(--red); color: var(--white);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn--red:hover {
  background: var(--red-dark);
  box-shadow: 0 4px 16px rgba(197,34,31,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-1px);
}
.btn--red:active { transform: translateY(0); }

.btn--dark {
  background: var(--dark); color: var(--white);
  box-shadow: 0 1px 2px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.06);
}
.btn--dark:hover {
  background: var(--gray-800);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.06);
}

.btn--outline {
  background: var(--white); color: var(--dark);
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: var(--shadow-sm);
}
.btn--outline:hover {
  background: var(--gray-50);
  border-color: rgba(0,0,0,0.18);
  transform: translateY(-1px);
}

.btn--white { background: var(--white); color: var(--dark); border: 1px solid rgba(0,0,0,0.1); }
.btn--white:hover { background: var(--gray-50); transform: translateY(-1px); }

.btn .btn-arrow {
  display: inline-block; transition: transform 0.25s ease;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============ SECTIONS ============ */
.section { padding: var(--section-pad) 0; }
.section--white { background: var(--cream); }
.section--cream { background: var(--cream); }
.section--gray { background: var(--cream); }
.section--dark { background: var(--dark-warm); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }



.section-header { text-align: center; margin-bottom: 64px; }
.section-header .eyebrow { margin-bottom: 16px; }
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 44px); font-weight: 700;
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.section-header p {
  color: var(--gray-500); font-size: 16px; max-width: 520px;
  margin: 0 auto; line-height: 1.7;
}

.separator {
  display: flex; gap: 4px; justify-content: center; margin: 16px 0;
}
.separator span {
  width: 8px; height: 2px; background: var(--red); border-radius: 1px;
}
.separator span:nth-child(2) { width: 20px; }

/* ============ SERVICE CARDS ============ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
  text-align: left; padding: 40px 32px;
  border-radius: 16px; transition: all 0.3s ease;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,0,0,0.08);
}
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red); color: var(--white); font-size: 22px;
}
.service-card h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.service-card p { font-size: 14px; color: var(--gray-500); line-height: 1.75; }

/* ============ AIRCRAFT GRID ============ */
.aircraft-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.aircraft-card {
  border-radius: 16px; overflow: hidden; background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}
.aircraft-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.aircraft-card-img {
  height: 220px; overflow: hidden; position: relative;
}
.aircraft-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.aircraft-card:hover .aircraft-card-img img { transform: scale(1.04); }

.aircraft-card-img .card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(0,0,0,0.45) 0%, transparent 50%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 20px; opacity: 0;
  transition: opacity 0.3s ease;
}
.aircraft-card:hover .card-overlay { opacity: 1; }
.card-overlay span {
  color: var(--white); font-size: 12px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
}

.aircraft-card-body { padding: 22px 22px 26px; }
.aircraft-card-body h3 {
  font-size: 17px; font-weight: 700; margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.aircraft-card-body .specs { font-size: 13px; color: var(--gray-500); margin-bottom: 4px; }
.aircraft-card-body .location { font-size: 13px; color: var(--gray-400); margin-bottom: 16px; }
.aircraft-card-body .price-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--gray-100);
}
.aircraft-card-body .price-label { font-size: 12px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; }
.aircraft-card-body .price { font-size: 18px; font-weight: 800; color: var(--dark); letter-spacing: -0.02em; }

/* ============ STATS ============ */
.stats-section {
  background: var(--dark-warm); padding: var(--section-pad) 0;
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(197,34,31,0.06) 0%, transparent 60%);
}
.stats-section .section-header h2 { color: var(--white); }
.stats-section .section-header p { color: var(--gray-400); }
.stats-section .eyebrow { background: rgba(197,34,31,0.1); border-color: rgba(197,34,31,0.15); }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
.stat-card {
  text-align: center; padding: 44px 28px;
  background: rgba(255,255,255,0.03);
  border-radius: 16px; border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
.stat-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 56px; font-weight: 700; color: var(--white);
  margin-bottom: 8px; letter-spacing: -0.03em; line-height: 1;
}
.stat-label {
  font-size: 14px; font-weight: 600; color: var(--white);
  margin-bottom: 6px; letter-spacing: -0.01em;
}
.stat-desc { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

/* ============ APPRAISALS ============ */
.appraisal-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.appraisal-content .eyebrow { margin-bottom: 16px; }
.appraisal-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 700;
  margin-bottom: 12px; letter-spacing: -0.02em;
}
.appraisal-content .subtitle {
  color: var(--gray-500); font-weight: 500; margin-bottom: 20px;
  font-size: 14px;
}
.appraisal-content p { color: var(--gray-500); font-size: 15px; line-height: 1.8; }
.appraisal-img {
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.appraisal-img img {
  width: 100%;
  transition: transform 0.6s ease;
}
.appraisal-img:hover img { transform: scale(1.03); }

/* ============ BLOG CARDS ============ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-grid--featured { grid-template-columns: repeat(2, 1fr); }

.blog-card {
  border-radius: 16px; overflow: hidden; background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card-img { height: 220px; overflow: hidden; position: relative; }
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-img .card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(0,0,0,0.45) 0%, transparent 50%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 20px; opacity: 0;
  transition: opacity 0.3s ease;
}
.blog-card:hover .card-overlay { opacity: 1; }

.blog-card-body { padding: 22px 22px 26px; }
.blog-card-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; letter-spacing: -0.02em; }
.blog-card-body .tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.blog-card-body .tag {
  font-size: 11px; font-weight: 600; color: var(--gray-500);
  background: var(--gray-100); padding: 4px 12px; border-radius: 50px;
  letter-spacing: 0;
}
.blog-card-body p { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 14px; }
.blog-card-body .read-more {
  font-size: 13px; font-weight: 600; color: var(--dark);
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.2s ease;
}
.blog-card-body .read-more:hover { color: var(--red); gap: 10px; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: var(--dark-warm); color: var(--white); padding: 100px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(197,34,31,0.08) 0%, transparent 60%);
}
.cta-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; position: relative; z-index: 1;
}
.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 38px); font-weight: 700;
  margin-bottom: 8px; letter-spacing: -0.02em; color: var(--white);
}
.cta-inner p { opacity: 0.6; margin-bottom: 28px; font-size: 15px; }
.cta-checks { display: flex; flex-direction: column; gap: 14px; }
.cta-checks li {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: rgba(255,255,255,0.8);
}
.cta-checks li::before {
  content: '✓'; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(197,34,31,0.12); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
  border: 1px solid rgba(197,34,31,0.15);
}

/* ============ CONTACT ============ */
/* Contact Info Cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--red-subtle);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.contact-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.contact-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 12px;
}
.contact-card a {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  transition: opacity 0.2s ease;
}
.contact-card a:hover { opacity: 0.7; }
.contact-card-status {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
  background: rgba(34,197,94,0.08);
  padding: 4px 12px;
  border-radius: 20px;
}

/* Contact Main: Form + Map */
.contact-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 44px 40px;
}
.contact-form-wrap h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.contact-form-sub {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-map-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 16px;
  min-height: 500px;
}
.contact-map {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.contact-map iframe {
  display: block;
}

/* Legacy contact styles kept for compatibility */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row--3 { grid-template-columns: 1fr 1fr 1fr; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px;
  color: var(--gray-700);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px; font-family: var(--font); font-size: 14px;
  transition: all 0.2s ease; background: var(--white);
  box-shadow: var(--shadow-sm);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(197,34,31,0.06);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ============ SERVICES PAGE ============ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
/* Center the last row when it has fewer items */
.svc-grid .svc-tile:nth-child(4),
.svc-grid .svc-tile:nth-child(5) {
  max-width: 100%;
}
.svc-tile {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.svc-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.svc-tile-img {
  overflow: hidden;
  height: 220px;
}
.svc-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.svc-tile:hover .svc-tile-img img {
  transform: scale(1.05);
}
.svc-tile-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-tile-label {
  font-size: 11px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.svc-tile h3 {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: var(--dark);
}
.svc-tile p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}
.svc-tile-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.svc-tile:hover .svc-tile-link {
  color: var(--red);
}

/* ============ LISTING DETAIL ============ */
.listing-hero { min-height: 340px; }
.listing-breadcrumb { font-size: 13px; opacity: 0.7; margin-top: 8px; }
.listing-breadcrumb a { text-decoration: underline; }

.listing-overview { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 56px 0; }
.listing-gallery { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); }
.listing-gallery img { width: 100%; }
.listing-thumbnails { display: flex; gap: 8px; margin-top: 12px; }
.listing-thumbnails img {
  width: 64px; height: 48px; object-fit: cover; border-radius: 8px;
  cursor: pointer; opacity: 0.5; transition: all 0.2s ease;
  border: 2px solid transparent;
}
.listing-thumbnails img.active, .listing-thumbnails img:hover { opacity: 1; border-color: var(--red); }

.listing-info h2 {
  font-family: var(--font-serif);
  font-size: 30px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.02em;
}
.listing-info .listing-specs { font-size: 14px; color: var(--gray-500); margin-bottom: 8px; }
.listing-info .listing-price { font-size: 28px; font-weight: 900; color: var(--dark); margin-bottom: 20px; letter-spacing: -0.03em; }
.listing-info .listing-desc { font-size: 15px; color: var(--gray-500); line-height: 1.8; margin-bottom: 16px; }
.listing-info .listing-meta { font-size: 14px; margin-bottom: 6px; }

/* Tabs */
.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--gray-200); margin-bottom: 28px; }
.tab-btn {
  padding: 12px 24px; font-size: 13px; font-weight: 600;
  background: none; border: none; cursor: pointer; color: var(--gray-400);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all 0.2s ease;
}
.tab-btn.active, .tab-btn:hover { color: var(--dark); border-bottom-color: var(--red); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content h3 { font-size: 22px; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.03em; }
.tab-content h4 { font-size: 15px; font-weight: 700; margin: 24px 0 8px; }
.tab-content ul { padding-left: 20px; margin-bottom: 16px; }
.tab-content ul li { font-size: 14px; color: var(--gray-500); margin-bottom: 6px; list-style: disc; line-height: 1.7; }

/* ============ FAQ BOX ============ */
.faq-box {
  background: var(--white); border-radius: 20px; padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
}
.faq-box h3 {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.02em;
}
.faq-box p { color: var(--gray-500); margin-bottom: 20px; line-height: 1.7; }

/* ============ FILTER BAR ============ */
.filter-bar {
  background: var(--cream);
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.filter-inner {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-inner > div {
  flex: 1;
  min-width: 140px;
}
.filter-inner label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.filter-inner select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 13px;
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.filter-inner select:hover {
  border-color: rgba(0,0,0,0.15);
}
.filter-inner select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(197,34,31,0.08);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--dark-warm); padding: 72px 0 0;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img { filter: brightness(0) invert(1); }
.footer-brand p { color: var(--gray-500); font-size: 14px; line-height: 1.7; margin-top: 16px; }
.footer-col h4 {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 20px; color: var(--white);
}
.footer-col a {
  display: block; font-size: 14px; color: var(--gray-500);
  margin-bottom: 10px; transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--white); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; font-size: 14px; color: var(--gray-500);
}
.footer-contact-item a { display: inline; margin-bottom: 0; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0; text-align: center;
}
.footer-copy { font-size: 12px; color: var(--gray-500); }

/* Legacy footer */
.footer-phone { font-size: 18px; font-weight: 700; color: var(--red); margin-bottom: 24px; }
.footer-phone a { color: var(--red); }
.footer-links { display: flex; justify-content: center; gap: 32px; padding: 20px 0; border-top: 1px solid var(--gray-100); }
.footer-links a { font-size: 14px; color: var(--gray-500); }
.footer-links a:hover { color: var(--red); }

/* ============ BANNERS ============ */
.dual-banner { display: grid; grid-template-columns: 1fr 1fr; }
.dual-banner-item {
  position: relative; padding: 72px 48px; color: var(--white);
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 280px; overflow: hidden;
}
.dual-banner-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 100%);
  z-index: 1;
}
.dual-banner-item > * { position: relative; z-index: 2; }
.dual-banner-item h3 { font-size: 28px; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.03em; }
.dual-banner-item p { opacity: 0.8; margin-bottom: 20px; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; padding: 56px 0; }
.value-item svg { width: 40px; height: 40px; color: var(--red); margin: 0 auto 14px; }
.value-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.value-item p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* News Categories */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.category-card {
  display: flex; align-items: center; gap: 16px; padding: 20px;
  border-radius: 16px; background: var(--white);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.category-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.category-card-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--red); color: var(--white); font-size: 18px;
}
.category-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.01em; }
.category-card p { font-size: 13px; color: var(--gray-500); }

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
  :root {
    --section-pad: var(--section-pad-mobile);
  }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: var(--white);
    padding: 24px; gap: 16px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .dropdown-menu {
    position: static; transform: none; box-shadow: none;
    padding-left: 16px; opacity: 1; visibility: visible; margin-top: 0; border: none;
  }

  /* Split hero goes to stacked on mobile */
  .hero--split {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding: 48px 0 40px;
  }
  .hero--split .hero-image img {
    height: 320px;
  }
  .hero-float-card {
    right: 12px; bottom: 16px;
  }
  .hero--split .hero-text h1 {
    font-size: 36px;
  }

  .hero h1 { font-size: 36px; }
  .hero--home { min-height: 480px; }
  .section-header { margin-bottom: 40px; }
  .services-grid, .aircraft-grid, .blog-grid, .stats-grid,
  .category-grid, .values-grid { grid-template-columns: 1fr; }
  .blog-grid--featured { grid-template-columns: 1fr; }
  .contact-grid, .listing-overview, .appraisal-section,
  .cta-inner { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-main { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .contact-map-wrap { min-height: 300px; }
  .svc-grid { grid-template-columns: 1fr; }
  .dual-banner { grid-template-columns: 1fr; }
  .filter-inner { flex-direction: column; align-items: stretch; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .appraisal-section, .contact-grid { gap: 40px; }
  .stat-number { font-size: 44px; }

  .trust-logos { gap: 28px; }
  .trust-logos span { font-size: 15px; }
  .trust-logos span.trust-serif { font-size: 17px; }

  .social-proof { margin-top: 28px; }
}

@media (min-width: 969px) and (max-width: 1100px) {
  .aircraft-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
