/* =======================
   MAINTENANCE PAGE STYLES
   ======================= */

/* ============
   CUSTOM FONTS
   ============ */

/* ============
   CUSTOM FONTS
   ============ */

@font-face {
  font-family: 'Graphik';
  src: url('../fonts/graphik/Graphik-Regular.woff2') format('woff2'),
    url('../fonts/graphik/Graphik-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Graphik';
  src: url('../fonts/graphik/Graphik-Medium.woff2') format('woff2'),
    url('../fonts/graphik/Graphik-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Graphik';
  src: url('../fonts/graphik/Graphik-Semibold.woff2') format('woff2'),
    url('../fonts/graphik/Graphik-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Graphik';
  src: url('../fonts/graphik/Graphik-Bold.woff2') format('woff2'),
    url('../fonts/graphik/Graphik-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============
   HEADER STYLES
   ============ */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent;
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.header-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 39px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--white-color);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

header.scrolled .nav-menu a {
  color: var(--dark-color);
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-cta {
  padding: 8px 16px;
  background: linear-gradient(94deg, var(--primary-color), var(--primary-dark));
  color: #fefae7 !important;
  border-radius: 12px;
  background: var(--primary-color);
  color: white !important;
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 127, 0, 0.3);
}

.nav-menu li:last-child {
  margin-left: var(--spacing-sm);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white-color);
  margin: 5px 0;
  transition: 0.3s;
}

header.scrolled .mobile-menu-toggle span {
  background: var(--dark-color);
}

/* ============
   FOOTER STYLES
   ============ */

footer {
  background: linear-gradient(to top, rgba(255, 127, 0, 0.1), rgba(255, 127, 0, 0.05));
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-contact {
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 3rem;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 0.5px;
}

.footer-contact-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-value:hover {
  color: var(--primary-color);
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: flex;
  justify-content: center;

}

.footer-about {
  max-width: 600px;
  text-align: center;
  margin-bottom: 30px;
}

.footer-about p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  margin-top: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
  color: rgba(0, 0, 0, 0.6);
}

.footer-links a {
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.875rem;
}

/* =======================
   MAINTENANCE PAGE STYLES
   ======================= */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --primary-color: #ff7f00;
  --primary-dark: #ff5000;
  --secondary-color: #F3F4F6;
  /* Gray 100 */
  --dark-color: #000000;
  --white-color: #ffffff;
  --text-gray: #666666;
  --border-color: #e0e0e0;
  --bg-secondary: #f9f9f9;
  --bg-dark: #1a1a1a;
  --bg-gray-800: #2d2d2d;

  /* Font Families */
  --font-primary: 'Graphik', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-heading: 'Graphik', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 24px 20px rgba(44, 31, 22, 0.04), 0 16px 16px rgba(44, 31, 22, 0.08), 0 2px 8px rgba(44, 31, 22, 0.1);
}

body {
  font-family: var(--font-primary);
  line-height: var(--line-height-base);
  color: var(--dark-color);
  background-color: var(--white-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-color);
  background: var(--bg-light);
  overflow-x: hidden;
  padding-top: 80px;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-full {
  width: 100%;
  padding: 0 var(--spacing-md);
}

.container-xl {
  max-width: 1400px;
}

.container-lg {
  max-width: 1040px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h5 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

h6 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

p {
  margin: 0 0 var(--spacing-sm) 0;
  line-height: 1.6;
}

/* Layout Utilities */
.section {
  padding: var(--spacing-2xl) 0;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin: var(--spacing-md);
  margin-top: 0 !important;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Header Nav Colors */
.nav-menu a {
  text-decoration: none;
  color: var(--white-color);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

header.scrolled .nav-menu a {
  color: var(--dark-color);
}

/* Dark gradient at top for header visibility */
.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0) 40%);
  z-index: 1;
  pointer-events: none;
}

.hero-background::after {
  display: none;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1 1 auto;
  /* Allow grow */
  width: 100%;
  height: auto;
  /* Let flex stretch handle height */
  min-height: 100%;
  /* Ensure it fills parent */
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
  /* Use inherited max-width and margin from global .container */
}

.hero-content {
  width: 50%;
  /* lg:col-6 equivalent */
  height: 100%;
  /* h-100 equivalent */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Align text to bottom */
  padding: var(--spacing-xl) var(--spacing-lg);
  /* py: 3rem, px: 2rem */

  /* Next.js exact gradient: to top, white 0% -> transparent 100% */
  background: linear-gradient(to top,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 30%,
      rgba(255, 255, 255, 0.5) 70%,
      rgba(255, 255, 255, 0.25) 80%,
      rgba(255, 255, 255, 0) 100%);
}

.hero-content .btn-primary {
  max-width: fit-content;
}

@media (max-width: 992px) {
  .hero-content {
    width: 100%;
    background: linear-gradient(to top,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.9) 60%,
        rgba(255, 255, 255, 0) 100%);
  }
}

.hero-content h1 {
  font-size: 5rem;
  /* 80px */
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--spacing-md);
  color: #212529;
  /* rgb(33, 37, 41) */
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: var(--spacing-lg);
  color: #212529;
}

.hero-title {
  color: var(--dark-color);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--dark-color);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.15px;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.15s ease-out;
}

.btn-primary {
  background: linear-gradient(94deg, #ff7f00, #ff5000);
  color: #fefae7;
  box-shadow: 0 8px 4px rgba(140, 44, 0, 0.02), 0 4px 4px rgba(140, 44, 0, 0.08), 0 1px 4px rgba(140, 44, 0, 0.12);
  padding: 4px 16px;
  min-width: 150px;
  border-radius: 12px;
  height: 48px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 8px rgba(140, 44, 0, 0.1), 0 8px 8px rgba(140, 44, 0, 0.15);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 8px;
  background-color: rgba(255, 255, 255, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.33);
  border-radius: 8px;
  flex-shrink: 0;
}

.btn-icon-arrow {
  width: 20px;
  height: 20px;
}

/* Outline Button Style */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.15px;
  text-decoration: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s ease-out;
  background: transparent;
  border: 2px solid #ff5000;
  color: #ff5000;
  min-width: 150px;
  box-shadow: 0 8px 4px rgba(140, 44, 0, 0.02), 0 4px 4px rgba(140, 44, 0, 0.08), 0 1px 4px rgba(140, 44, 0, 0.12);
  height: 48px;
}

.btn-outline:hover {
  background: rgba(255, 80, 0, 0.1);
  transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
  padding: var(--spacing-xl) 0 var(--spacing-3xl) 0;
  background-color: var(--white-color);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--dark-color);
}

.cta-description {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  justify-content: center;
}

/* Overview Section */
.overview-section {
  padding: var(--spacing-3xl) 0;
  background-color: var(--white-color);
}

.overview-text {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.7);
  max-width: 850px;
  margin: 0 auto var(--spacing-lg) auto;
  text-align: center;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-md);
}

.badge::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

/* Key Features Grid */
/* Key Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Default mobile: 2 cols (sm) */
  gap: var(--spacing-xs);
  /* g-2 */
  margin-top: var(--spacing-xl);
}

@media (max-width: 639px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Matches child-cols-6 */
  }
}

@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    /* lg:child-cols-3 -> 4 cols */
    gap: var(--spacing-md);
    /* md:g-4 */
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--spacing-md);
  padding: var(--spacing-sm);
  /* p-2 default */
  background-color: #f1e2de;
  border-radius: 12px;
  /* rounded-1-5 */
  min-height: 250px;
  transition: all 0.25s ease-out;
}

@media (min-width: 768px) {
  .feature-card {
    padding: var(--spacing-md);
    /* md:p-4 */
  }
}

.feature-card:hover {
  background-color: #e5e7eb;
  /* hover:bg-secondary-300 (approx gray-200) */
  transform: scale(1.02);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-color);
  flex-shrink: 0;
}

.feature-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.feature-title {
  font-size: 1rem;
  /* h6 */
  font-weight: 700;
  color: var(--dark-color);
  margin: 0;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .feature-title {
    font-size: 1.25rem;
    /* h5 */
  }
}

/* Specialized Support Section */
.specialized-section {
  padding: var(--spacing-sm) 0;
  background-color: var(--white-color);
}

.specialized-card {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background-color: #F8ECDF;
  /* Light peach/cream from Next.js */
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
}

.specialized-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: auto 110%;
  background-position: left center;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to right, black 0%, black 40%, transparent 55%);
  mask-image: linear-gradient(to right, black 0%, black 40%, transparent 55%);
  z-index: 0;
}

.specialized-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  min-height: 252px;
  margin-left: auto;
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
}

.specialized-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.specialized-description {
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: var(--spacing-lg);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  width: 100%;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-icon {
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-text {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* Aircraft Support Section */
.aircraft-section {
  position: relative;
  padding: 0;
  margin: var(--spacing-md);
  border-radius: var(--radius-xl);
  background: #663300;
  /* primary-700 equivalent */
  overflow: hidden;
}

/* Gradient overlay - from gray-800 via transparent to gray-900 */
.aircraft-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #2d2d2d 0%, transparent 50%, #1a1a1a 100%);
  pointer-events: none;
  z-index: 1;
}

.aircraft-section .container {
  position: relative;
  z-index: 2;
  padding: var(--spacing-3xl) var(--spacing-md);
  /* tertiary-700 with opacity */
}

.aircraft-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.aircraft-grid .aircraft-card {
  flex: 0 1 calc(33.333% - var(--spacing-md));
  /* 3 per row on desktop */
  max-width: 320px;
}

@media (max-width: 992px) {
  .aircraft-grid .aircraft-card {
    flex: 0 1 calc(50% - var(--spacing-md));
    /* 2 per row on tablet */
  }
}

@media (max-width: 640px) {
  .aircraft-grid .aircraft-card {
    flex: 0 1 100%;
    /* 1 per row on mobile */
  }
}

.aircraft-card {
  padding: 0;
  /* background: rgba(255, 255, 255, 0.05); */
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.aircraft-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.aircraft-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.aircraft-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

.aircraft-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--white-color);
}

.aircraft-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* CTA Section */
.cta-section {
  padding: var(--spacing-2xl) 0;
  margin-top: var(--spacing-2xl);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--spacing-sm);
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: var(--spacing-lg);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: center;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
  padding: 4px 16px;
  min-width: 150px;
}

.btn-outline:hover {
  background: var(--primary-dark);
  color: var(--white-color);
}

.bg-secondary {
  background-color: #f1e2de !important;
}

/* Responsive Design */
@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .hero-description {
    display: block;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: var(--spacing-3xl) 0;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-section,
  .aircraft-section {
    margin: var(--spacing-md);
    border-radius: var(--radius-xl);
  }
}

@media (max-width: 768px) {

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }

  .feature-card {
    min-height: 200px;
    padding: var(--spacing-sm);
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .feature-icon img {
    width: 20px;
    height: 20px;
  }

  .specialized-content {
    padding: var(--spacing-md);
  }

  /* Header Mobile Styles */
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-nav {
    padding: 1rem;
  }

  /* Footer Mobile Styles */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-contact {
    padding: 1.5rem;
  }
}

/* Add padding to body to account for fixed header */
body {
  padding-top: 80px;
}

/* =========================
   MOBILE RESPONSIVE FIXES
   ========================= */

@media (max-width: 640px) {

  /* Remove body padding for mobile */
  body {
    padding-top: 60px;
  }

  /* Hero Section Mobile */
  .hero-section {
    min-height:60vh;
    margin: var(--spacing-xs);
    border-radius: var(--radius-lg);
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .hero-content {
    padding: 1.5rem 1rem;
    width: 100%;
  }

  /* Features Grid Mobile - single column */
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .feature-card {
    min-height: auto;
    padding: var(--spacing-sm);
  }

  .feature-title {
    font-size: 0.875rem;
  }

  /* Specialized Section Mobile */
  .specialized-section {
    padding: var(--spacing-xs) 0;
  }

  .specialized-card {
    padding: var(--spacing-sm);
    min-height: auto;
  }

  .specialized-background {
    display: none;
    /* Hide background image on mobile */
  }

  .specialized-content {
    max-width: 100%;
    margin-left: 0;
    padding: var(--spacing-sm);
    min-height: auto;
  }

  .specialized-title {
    font-size: 1.25rem;
  }

  .specialized-description {
    font-size: 0.875rem;
  }

  .service-text {
    font-size: 0.875rem;
  }

  /* Aircraft Section Mobile */
  .aircraft-section {
    margin: var(--spacing-xs);
  }

  .aircraft-section .container {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .aircraft-grid .aircraft-card {
    flex: 0 1 100%;
    max-width: 100%;
  }

  .aircraft-content {
    padding: var(--spacing-sm);
  }

  .aircraft-name {
    font-size: 1rem;
  }

  .aircraft-description {
    font-size: 0.75rem;
  }

  /* CTA Section Mobile */
  .cta-section {
    padding: var(--spacing-lg) 0;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-description {
    font-size: 0.875rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .cta-buttons .btn {
    width: 100%;
  }

  /* Footer Mobile */
  .footer-main {
    padding: 0 1rem;
  }

  .footer-contact {
    padding: 1rem;
  }

  .footer-contact-grid {
    gap: 1rem;
  }

  .footer-contact-value {
    font-size: 0.875rem;
  }

  .footer-about {
    text-align: center;
  }

  .footer-about img {
    height: 32px !important;
  }

  .footer-bottom {
    padding: 1rem 0;
    font-size: 0.75rem;
  }

  /* Buttons Mobile */
  .btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  .btn-primary,
  .btn-outline {
    height: 44px;
  }

  .btn-icon {
    width: 32px;
    height: 32px;
  }

  /* Container padding */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Section padding */
  .section {
    padding: var(--spacing-lg) 0;
  }

  .overview-section {
    padding: var(--spacing-lg) 0;
  }

  .overview-text {
    font-size: 1rem;
  }
}