:root {
  --font-display: 'Cormorant Garamond', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Raleway', 'Helvetica Neue', sans-serif;

  --color-bg: #ffffff;
  --color-surface: #f5f5f5;
  --color-surface-2: #eeeeee;
  --color-border: rgba(201, 169, 106, 0.25);

  --color-text: #0b0b0b;
  --color-text-light: #0b0b0b;
  --color-text-muted: #dadada;

  --color-gold: #c9a96a;
  --color-link: #d1d4d7;
  --color-white: #ffffff;
  --color-black: #0b0b0b;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-full: 999px;
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.15);

  --content-default: 1100px;
  --content-wide: 1300px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-white);
  background-color: var(--color-bg);
  line-height: 1.7;
  min-height: 100dvh;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-gold);
  line-height: 1.15;
  text-transform: uppercase;
}


p {
  color: var(--color-black);
  font-family: var(--font-body);
  max-width: 68ch;
  text-align: justify;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-gold);
}

ul {
  list-style: none;
  padding: 0;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection {
  background: rgba(201, 169, 106, 0.25);
}

body {
  padding-top: calc(75px + 2px);
}

.container {
  width: min(100%, var(--content-default));
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 75px;
  background: #0b0b0b;
  border-bottom: 1px solid rgba(201, 169, 106, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: var(--space-4);
}

.nav-brand img {
  height: 46px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-link);
  transition: color var(--transition);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--color-gold);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  color: var(--color-link);
  border: none;
  font-size: 1.6rem;
}

.nav-gold-line {
  height: 2px;
  background: var(--color-gold);
  width: 100%;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 75px;
  left: 0;
  right: 0;
  background: #0b0b0b;
  flex-direction: column;
  border-bottom: 1px solid rgba(201, 169, 106, 0.15);
  padding-left: 40px;
}

.nav-open .nav-mobile {
  display: flex;
}

.nav-mobile a {
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid rgba(201, 169, 106, 0.1);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-background img,
.hero-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(11, 11, 11, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 0 var(--space-4);
}

.hero-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.hero-line {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin: 0 auto var(--space-5);
}

.hero-title {
  font-size: var(--text-2xl);
  font-weight: 300;
  margin-bottom: var(--space-6);
}

.hero-copy {
  margin: 0 auto;
  max-width: 52ch;
  color: var(--color-white);
}

.hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-8);
}

.hero-services {
  position: relative;
  height: 4rem;
  margin-top: var(--space-6);
}

.hero-service-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  opacity: 0;
}

.hero.reveal.visible .hero-service-item {
  animation: appearDisappear 6s infinite;
}

.hero.reveal.visible .hero-service-item:nth-child(1) { animation-delay: 0s; }
.hero.reveal.visible .hero-service-item:nth-child(2) { animation-delay: 1s; }
.hero.reveal.visible .hero-service-item:nth-child(3) { animation-delay: 2s; }
.hero.reveal.visible .hero-service-item:nth-child(4) { animation-delay: 3s; }
.hero.reveal.visible .hero-service-item:nth-child(5) { animation-delay: 4s; }
.hero.reveal.visible .hero-service-item:nth-child(6) { animation-delay: 5s; }

.hero-service-item img {
  width: 28px;
  height: 28px;
}

.service-icon {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: var(--space-4);
  color: var(--color-gold) !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-primary {
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
}

.btn-primary:hover {
  background: var(--color-gold);
  color: var(--color-bg);
}

.btn-secondary {
  border: 1px solid rgba(191, 194, 199, 0.6);
  color: var(--color-link);
}

.btn-secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: var(--space-8);
  transform: translateX(-50%);
  color: var(--color-text-muted);
  font-size: 1.4rem;
  animation: scroll-bounce 1.8s infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

.section {
  padding: 0px;
}

.section-title {
  font-size: var(--text-2xl);
  text-align: center;
  margin-bottom: var(--space-4);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 62ch;
  margin: 0 auto;
}

.slideshow-section {
  background: var(--color-surface);
}

.slideshow {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(201, 169, 106, 0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #050505;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-4);
  pointer-events: none;
}

.slide-arrow {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(11, 11, 11, 0.55);
  color: var(--color-white);
  font-size: 1rem;
  cursor: pointer;
  pointer-events: auto;
  transition: background var(--transition), color var(--transition);
}

.slide-arrow:hover {
  background: rgba(201, 169, 106, 0.95);
  color: var(--color-bg);
}

.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-6);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-link);
  cursor: pointer;
}

.dot.active {
  background: var(--color-gold);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-12);
  align-items: center;
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: var(--space-4);
}

.section-underline {
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  margin-bottom: var(--space-6);
}

.about-content p {
  margin-top: var(--space-4);
}

.about-divider {
  height: 1px;
  background: rgba(201, 169, 106, 0.3);
  margin: var(--space-8) 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-size: 1.75rem;
  color: var(--color-gold);
  font-weight: 600;
}

.stat-label {
  color: var(--color-black);
  font-size: 0.8em;
}

.about-image {
  width: 100%;
  min-height: 600px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.about-image img {
  width: 100%;
  height: 80%;
  object-fit: cover;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.service-card {
  position: relative;
  background: var(--color-surface-2);
  border: 1px solid rgba(201, 169, 106, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(201, 169, 106, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-md);
  pointer-events: none;
}

.slideshow-section.reveal.visible .service-card {
  animation: slideInUp 0.8s ease-out forwards;
}

.slideshow-section.reveal.visible .service-card:nth-child(1) { animation-delay: 0.1s; }
.slideshow-section.reveal.visible .service-card:nth-child(2) { animation-delay: 0.2s; }
.slideshow-section.reveal.visible .service-card:nth-child(3) { animation-delay: 0.3s; }
.slideshow-section.reveal.visible .service-card:nth-child(4) { animation-delay: 0.4s; }
.slideshow-section.reveal.visible .service-card:nth-child(5) { animation-delay: 0.5s; }
.slideshow-section.reveal.visible .service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(5deg);
  filter: brightness(1.2);
}

.service-card .service-icon {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.service-card h3 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}

.service-card p {
  color: var(--color-black);
}

.services-link {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: var(--space-8);
  color: var(--color-link);
}

.fleet-preview {
  padding-bottom: var(--space-20);
}

.fleet-row {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: var(--space-6);
  overflow-x: auto;
  padding: 0 var(--space-6) var(--space-4);
  scroll-snap-type: x proximity;
}

.fleet-card {
  scroll-snap-align: start;
  min-width: 280px;
  background: var(--color-surface);
  border: 1px solid rgba(201, 169, 106, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.fleet-preview.reveal.visible .fleet-card {
  animation: slideInUp 0.8s ease-out forwards;
}

.fleet-preview.reveal.visible .fleet-card:nth-child(1) { animation-delay: 0.1s; }
.fleet-preview.reveal.visible .fleet-card:nth-child(2) { animation-delay: 0.2s; }
.fleet-preview.reveal.visible .fleet-card:nth-child(3) { animation-delay: 0.3s; }
.fleet-preview.reveal.visible .fleet-card:nth-child(4) { animation-delay: 0.4s; }

.fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.fleet-card:hover img {
  transform: scale(1.08);
}

.fleet-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-card-content {
  padding: var(--space-6);
}

.fleet-card-content p {
  margin: var(--space-4) 0 0;
  color: var(--color-black);
}

.fleet-card-link {
  margin-top: var(--space-4);
  display: inline-block;
  color: var(--color-black);
  transition: color var(--transition);
}

.fleet-card-link:hover {
  color: var(--color-gold);
}

.section-footer-link {
  display: inline-flex;
  color: var(--color-black);
  margin-top: var(--space-8);
  padding-bottom: 2%;
}

/* CTA Banner */
.cta-banner {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-12);
  max-width: 700px;
}

.cta-banner-text {
  font-size: var(--text-lg);
  color: var(--color-white);
  margin-bottom: var(--space-8);
  line-height: 1.5;
  text-align: center;
  font-weight: 200;
}

.cta-banner .btn {
  display: inline-block;
}

.site-footer {
  background: #0b0b0b;
  border-top: 1px solid rgba(201, 169, 106, 0.2);
  padding: var(--space-12) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-8);
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-brand img {
  width: 200px;
  margin-bottom: var(--space-4);
}

.social-icons {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.footer-links a {
  display: block;
}

.footer-contact p {
  color: var(--color-white);
}

.footer-bottom {
  margin-top: calc(var(--space-10) + 10px + 15px);
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.whatsapp-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 9999;
}

.whatsapp-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  color: #ffffff;
  font-family: Raleway, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 5px;
  white-space: nowrap;
  border: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.whatsapp-label.label-black {
  color: #000000;
}

.whatsapp-label.label-white {
  color: #ffffff;
}



.whatsapp-arrow {
  font-size: 0.85rem;
  animation: bounce-arrow 1.4s ease-in-out infinite;
  display: block;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(4px); }
}

/* remove position from the button itself since the wrapper handles it now */
.whatsapp-float {
  position: static;
  bottom: auto;
  right: auto;
}

/* LinkedIn Floating Button */
.linkedin-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #0077b5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 119, 181, 0.4);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.linkedin-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 119, 181, 0.5);
}

.linkedin-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.hero-hero, .page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero .hero-content {
  max-width: 740px;
}

.page-hero h1,
.page-hero h2 {
  text-align: center;
}

.page-hero .hero-copy {
  margin-top: var(--space-4);
  color: var(--color-text-muted);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: stretch;
  margin-bottom: var(--space-16);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  margin-top: 2%;
}

.service-detail:nth-child(1) { animation-delay: 0s; }
.service-detail:nth-child(2) { animation-delay: 0.15s; }
.service-detail:nth-child(3) { animation-delay: 0.3s; }
.service-detail:nth-child(4) { animation-delay: 0.45s; }
.service-detail:nth-child(5) { animation-delay: 0.6s; }
.service-detail:nth-child(6) { animation-delay: 0.75s; }
.service-detail:nth-child(7) { animation-delay: 0.9s; }
.service-detail:nth-child(8) { animation-delay: 1.05s; }

.service-detail:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.service-detail:hover img {
  transform: scale(1.05);
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) .service-detail-content {
  direction: ltr;
}

.service-detail img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-detail-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-surface);
  border: 1px solid rgba(201, 169, 106, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-8);
}

.service-detail-content h3 {
  margin-bottom: var(--space-4);
}

.service-detail-content p {
  color: var(--color-black);
}

.service-cta {
  position: relative;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.service-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-12);
}

.service-cta .btn {
  display: inline-block;
}

.map-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--color-surface);
  padding: var(--space-10) 0;
  margin-top: 2%;
}

.map-wrapper {
  width: 100%;
  max-width: 100%;
  min-height: 450px;
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.aircraft-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: stretch;
  padding: var(--space-8) 0;
  border-bottom: 1px solid rgba(201, 169, 106, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  padding: 3%;
  margin-bottom: 1%;
  margin-top: 2%;
}

.aircraft-card:hover {
  transform: translateX(8px);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.3);
  border-color: var(--color-gold);
}

.aircraft-card:hover img {
  transform: scale(1.03);
}

.aircraft-card:nth-child(odd) {
  background: var(--color-surface);
}

.aircraft-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
  transition: transform 0.5s ease;
}

.aircraft-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4);
}

.aircraft-specs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.aircraft-spec {
  border: 1px solid rgba(201, 169, 106, 0.3);
  color: var(--color-black);
  font-size: var(--text-xs);
  font-family: var(--font-body);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.aircraft-request {
  margin-top: var(--space-6);
  display: inline-flex;
  color: var(--color-gold);
  letter-spacing: 0.08em;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: var(--space-6);
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-field label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-top: 10px;
}

.input-field,
.select-field,
.textarea-field {
  width: 100%;
  background: var(--color-surface-2);
  border: 1px solid rgba(201, 169, 106, 0.2);
  color: var(--color-white);
  padding: 14px 16px;
  font-family: var(--font-body);
  border-radius: var(--radius-sm);
}

.input-field:focus,
.select-field:focus,
.textarea-field:focus {
  outline: none;
  border-color: var(--color-gold);
}

.input-field::placeholder,
.textarea-field::placeholder {
  color: rgba(191, 194, 199, 0.7);
}

.form-submit {
  display: inline-flex;
  background: var(--color-gold);
  color: var(--color-bg);
  padding: 14px 40px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  transition: background var(--transition);
  margin-top: 10px;
}

.form-submit:hover {
  background: #b8945a;
}

.form-success {
  display: none;
  padding: var(--space-6);
  border: 1px solid rgba(201, 169, 106, 0.3);
  background: rgba(201, 169, 106, 0.08);
  color: var(--color-white);
  border-radius: var(--radius-md);
}

.form-success.visible {
  display: block;
}
.contact-info {
  margin-top: 2%;
}
.contact-info h2 {
  margin-bottom: var(--space-4);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: var(--color-text-muted);
}

.contact-detail svg,
.contact-detail img {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
}

.contact-detail svg {
  color: var(--color-gold);
}

.contact-detail p {
  color: var(--color-gold);
}

.contact-note {
  margin-top: var(--space-6);
  color: var(--color-black);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes serviceFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes appearDisappear {
  0% { opacity: 0; }
  16.67% { opacity: 1; }
  33.33% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Helper classes for sections */
.light-section {
  /* Add this class to sections with light backgrounds */
}

.dark-section {
  /* Add this class to sections with dark backgrounds */
}

@media (max-width: 980px) {
  .about-grid,
  .contact-grid,
  .footer-grid,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) {
    direction: ltr;
  }

  .hero {
    min-height: 85vh;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0 var(--space-4);
  }

  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .fleet-row {
    grid-auto-columns: minmax(240px, 1fr);
  }

  .aircraft-card,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 0 var(--space-4);
  }

  .section {
    padding: 0px;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 var(--space-4);
  }

  .hero-actions {
    flex-direction: column;
  }

  .service-card::before {
    left: var(--space-4);
  }

  .nav-mobile a {
    padding: var(--space-4) var(--space-5);
  }

  .contact-grid {
    gap: var(--space-8);
  }
}
