:root {
  /* Colors */
  --primary: rgb(244 27 37);
  --primary-dark: #8b0000;
  --primary-light: #dc3545;
  --secondary: #ff6b6b;
  --secondary-light: #ff8e8e;
  --accent: #ff4757;
  --white: #ffffff;
  --black: #000000;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-light) 100%
  );
  --gradient-hero: linear-gradient(
    135deg,
    rgba(196, 30, 58, 0.95) 0%,
    rgba(220, 53, 69, 0.85) 100%
  );

  /* Typography */
  --font-primary: "Poppins", sans-serif;

  /* Spacing */
  --section-padding: 100px;
  --container-padding: 20px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
}

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

ul,
ol {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
  background: none;
}

/* ============================================
   Preloader
   ============================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
  color: var(--white);
}

.plane-icon {
  font-size: 48px;
  animation: planeFloat 2s ease-in-out infinite;
}

.plane-icon i {
  display: inline-block;
}

@keyframes planeFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-10deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.loader p {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ============================================
   Container
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-xl);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
}

/* ============================================
   Section Styles
   ============================================ */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(196, 30, 58, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: var(--radius-xl);
  margin-bottom: 15px;
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.section-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 600px;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.8);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
}

.top-bar {
  background: var(--primary-dark);
  padding: 10px 0;
  font-size: 13px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 25px;
}

.contact-info a {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info a:hover {
  color: var(--secondary-light);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
}

.social-links a:hover {
  background: var(--secondary-light);
  color: var(--white);
  transform: translateY(-3px);
}

.navbar {
  background: transparent;
  padding: 15px 0;
  transition: var(--transition-normal);
}

.header.scrolled .navbar {
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.header.scrolled .top-bar {
  transform: translateY(-100%);
  opacity: 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  padding: 4px 10px;

  backdrop-filter: blur(10px);

  transition: var(--transition-normal);
}

.logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header.scrolled .logo:hover {
  background: rgb(255, 255, 255);
}

.logo img {
  height: 50px;
  transition: var(--transition-normal);
}

.logo .logo-dark {
  display: none;
}

.header.scrolled .logo .logo-light {
  display: none;
}

.header.scrolled .logo .logo-dark {
  display: block;
}

.nav-menu {
  display: flex;
  gap: 35px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-light);
  transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-light);
}

.header.scrolled .nav-link {
  color: var(--gray-700);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--primary);
}

.nav-btn {
  padding: 12px 28px;
}

/* Navbar Email Styling */
.nav-assist {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.nav-assist::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: var(--transition-slow);
}

.nav-assist:hover::before {
  left: 100%;
}

.nav-assist:hover {
  background: var(--gradient-secondary);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  color: var(--white);
}

.nav-assist i {
  font-size: 16px;
  animation: emailPulse 2s ease-in-out infinite;
}

.nav-assist:hover i {
  animation: emailBounce 0.5s ease;
}

@keyframes emailPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes emailBounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.header.scrolled .nav-assist {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  border-color: transparent;
  color: var(--white);
}

.header.scrolled .nav-assist:hover {
  background: var(--gradient-secondary);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.header.scrolled .hamburger span {
  background: var(--primary);
  padding: 1.5px;
}

.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 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 140px;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/images/fleet/air-ambulance.jpeg") center/cover
    no-repeat;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #120f0fe3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Flying plane layer - behind text */
.hero-plane-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  perspective: 1200px;
}

.hero-plane-flying {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 55%;
  max-height: 480px;
  width: auto;
  object-fit: contain;
  left: -15%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
  opacity: 0.92;
  animation: planeFlyAcross 18s ease-in-out infinite;
  transform-style: preserve-3d;
  backface-visibility: visible;
}

@keyframes planeFlyAcross {
  /* Fly from right to left (visible) */
  0% {
    left: 100%;
    opacity: 0.92;
    transform: translateX(60%) rotateY(0deg) scale(1) translateZ(0);
  }
  45% {
    left: -30%;
    opacity: 0.92;
    transform: translateY(-50%) rotateY(0deg) scale(1) translateZ(0);
  }
  /* Exit left: fade out and move "behind" the screen */
  48% {
    left: -45%;
    opacity: 0.5;
    transform: translateY(-50%) rotateY(0deg) scale(0.92) translateZ(-80px);
  }
  49% {
    left: -100%;
    opacity: 0;
    transform: translateY(-50%) rotateY(0deg) scale(0.75) translateZ(-200px);
  }
  /* Behind the screen – invisible, turning around (no visibility) */
  50% {
    left: -50%;
    opacity: 0;
    transform: translateY(-50%) rotateY(180deg) scale(0.75) translateZ(-200px);
  }
  51% {
    left: 110%;
    opacity: 0;
    transform: translateY(-50%) rotateY(0deg) scale(0.75) translateZ(-200px);
  }
  /* Return from the other side – emerge from behind */
  52% {
    left: 118%;
    opacity: 0;
    transform: translateY(-50%) rotateY(0deg) scale(0.82) translateZ(-120px);
  }
  53% {
    left: 102%;
    opacity: 0.5;
    transform: translateY(-50%) rotateY(0deg) scale(0.95) translateZ(-30px);
  }
  54% {
    left: 100%;
    opacity: 0.92;
    transform: translateY(-50%) rotateY(0deg) scale(1) translateZ(0);
  }
  /* Fly from right to left again (facing left) */
  95% {
    left: -30%;
    opacity: 0.92;
    transform: translateY(-50%) rotateY(0deg) scale(1) translateZ(0);
  }
  /* Exit left again: go behind the screen */
  97% {
    left: -45%;
    opacity: 0.5;
    transform: translateY(-50%) rotateY(180deg) scale(0.92) translateZ(-80px);
  }
  98% {
    left: -50%;
    opacity: 0;
    transform: translateY(-50%) rotateY(180deg) scale(0.75) translateZ(-200px);
  }
  /* Behind – turn back, move to right side */
  99% {
    left: 110%;
    opacity: 0;
    transform: translateY(-50%) rotateY(0deg) scale(0.75) translateZ(-200px);
  }
  /* Emerge from right for next pass */
  99.5% {
    left: 102%;
    opacity: 0.5;
    transform: translateY(-50%) rotateY(0deg) scale(0.95) translateZ(-30px);
  }
  100% {
    left: 100%;
    opacity: 0.92;
    transform: translateY(-50%) rotateY(0deg) scale(1) translateZ(0);
  }
}

.hero-badge {
  display: inline-block;
  padding: 10px 20px;
  background: rgb(244 27 37);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-xl);
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(230, 57, 70, 0);
  }
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--secondary);
  position: relative;
}

.hero-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.stat-suffix {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary);
}

.stat-label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 600px;
  overflow: visible;
}

.hero-image img {
  position: relative;
  z-index: 3;
  width: 150%;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
}

/* Plane Glow Effect */
.plane-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgb(129 169 197 / 30%) 0%,
    rgba(196, 30, 58, 0.1) 40%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}

/* Decorative Circles */
.plane-circle {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: 2;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-style: dashed;
  animation: rotateSlow 30s linear infinite;
}

.circle-2 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(255, 107, 107, 0.2);
  animation: rotateSlow 40s linear infinite reverse;
}

.circle-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-width: 3px;
  border-color: rgba(255, 255, 255, 0.15);
  animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Plane Badges */
.plane-badge {
  position: absolute;
  background: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 4;
  animation: badgeFloat 4s ease-in-out infinite;
}

.plane-badge i {
  font-size: 20px;
  color: var(--primary);
}

.plane-badge span {
  font-weight: 600;
  color: var(--primary);
  font-size: 13px;
  white-space: nowrap;
}

.badge-1 {
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

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

/* Decorative Dots */
.plane-dots {
  position: absolute;
  bottom: 10%;
  right: 15%;
  display: flex;
  gap: 8px;
  z-index: 4;
}

.plane-dots span {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

.plane-dots span:nth-child(2) {
  animation-delay: 0.3s;
  background: var(--secondary);
}

.plane-dots span:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

.hero-wave path {
  fill: var(--white);
}

/* ============================================
   About Section
   ============================================ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.experience-badge {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: var(--gradient-secondary);
  color: var(--primary);
  padding: 25px 35px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.experience-badge .years {
  display: block;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text .lead {
  font-size: 18px;
  color: var(--gray-700);
  margin-bottom: 15px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 35px;
}

.feature-item {
  display: flex;
  gap: 15px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(196, 30, 58, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 22px;
  color: var(--primary);
}

.feature-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Mission and Vision Section */
.mission-vision-section {
  margin-top: 40px;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mission-card,
.vision-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-sm), 0 0 20px rgba(244, 27, 37, 0.3);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.mission-card::before,
.vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 1;
}

.mission-card:hover::before,
.vision-card:hover::before {
  opacity: 1;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(244, 27, 37, 0.6),
    0 0 60px rgba(244, 27, 37, 0.4);
  border-color: var(--primary);
}

.mission-card:hover::after,
.vision-card:hover::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: var(--radius-lg);
  z-index: -1;
  animation: glow-red 2s ease-in-out infinite alternate;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.mission-icon,
.vision-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.mission-card:hover .mission-icon,
.vision-card:hover .vision-icon {
  transform: rotateY(180deg);
}

.mission-icon i,
.vision-icon i {
  font-size: 30px;
  color: var(--primary);
}

.mission-card h3,
.vision-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.mission-card p,
.vision-card p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mission-card,
  .vision-card {
    padding: 25px;
  }
}

/* ============================================
   Services Section
   ============================================ */
.services {
  background: var(--gray-100);
  overflow: hidden;
}

.services-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("https://euroairjet.com/assets/images/resources/services-bg.png")
    right center/contain no-repeat;
  opacity: 0.05;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  flex: 0 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
}

.service-card {
  background: var(--white);
  padding: 30px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm), 0 0 20px #cecece85;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(244, 27, 37, 0.5);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.service-icon {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 21px;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.service-image {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

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

.service-header:hover .service-icon {
  transform: rotateY(180deg);
}

.service-icon i {
  font-size: 30px;
  color: var(--primary);
}

.service-card p {
  color: var(--gray-600);
  font-size: 15px;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.service-link i {
  transition: var(--transition-normal);
}

.service-link:hover {
  color: var(--primary);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* ============================================
   Fleet Section
   ============================================ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 2px solid var(--primary);
}

.fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(244, 27, 37, 0.5);
}

.fleet-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.fleet-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-secondary);
  color: white;
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 600;
}

.fleet-content {
  padding: 30px;
}

.fleet-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
}

.fleet-content p {
  color: var(--gray-600);
  margin-bottom: 20px;
}

.fleet-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.fleet-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
}

.fleet-features li i {
  color: var(--primary);
  font-size: 12px;
}

/* ============================================
   Company Values Section
   ============================================ */
.company-values {
  background: var(--gray-100);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.value-card {
  padding: 40px 30px;
  border-radius: 0;
  box-shadow: none;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.value-card:last-child {
  border-right: none;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.value-card:hover {
  transform: translateY(0);
  box-shadow: none;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: var(--transition-normal);
}

.value-card:hover .value-icon {
  transform: rotateY(0);
}

.value-icon i {
  font-size: 28px;
  color: var(--white);
}

.value-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
}

.value-card p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   Providers Section
   ============================================ */
.providers-section {
  background: var(--white);
  padding: 60px 0;
  overflow: hidden;
  width: 100%;
}

.providers-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.providers-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.provider-logo {
  flex: 0 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.provider-logo img {
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
  transition: var(--transition-normal);
}

.provider-logo:hover img {
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .value-card {
    padding: 30px 25px;
    border-radius: var(--radius-lg);
    border-right: none;
    box-shadow: var(--shadow-sm), 0 0 20px #cecece85;
  }

  .value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(244, 27, 37, 0.3);
  }

  .provider-logo {
    padding: 0 20px;
    min-width: 150px;
  }

  .provider-logo img {
    max-width: 120px;
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://euroairjet.com/assets/images/resources/pattern.png")
    center/cover;
  opacity: 0.05;
}

.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
  scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 400px;
  max-width: 400px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px;
  scroll-snap-align: center;
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.quote-icon {
  margin-bottom: 20px;
}

.quote-icon i {
  font-size: 36px;
  color: var(--primary);
  opacity: 0.5;
}

.testimonial-content p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--gray-200);
}

.author-image {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 3px solid var(--primary);
}

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

.author-avatar {
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.author-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

.author-info p {
  font-size: 13px;
  color: var(--gray-600);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-normal);
}

.testimonial-dots .dot.active {
  background: var(--secondary-light);
  width: 30px;
}

/* ============================================
   News Section
   ============================================ */
.news-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}

.news-section {
  background: var(--gray-100);
}

.news-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.news-slide {
  /* Keep markup grouping, but layout by card */
  display: contents;
}

.news-carousel-prev,
.news-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-normal);
  z-index: 10;
  font-size: 18px;
}

.news-carousel-prev {
  left: 10px;
}

.news-carousel-next {
  right: 10px;
}

.news-carousel-prev:hover,
.news-carousel-next:hover {
  background: var(--primary-dark);
  transform: translateY(-50%) scale(1.1);
}

.news-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.news-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition-normal);
}

.news-carousel-dot.active {
  background: var(--primary);
}

.news-card {
  flex: 0 0 50%;
  padding: 0 15px;
  box-sizing: border-box;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  margin: 4px;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.news-image {
  position: relative;
  height: 60%;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: var(--transition-slow);
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-date {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--gradient-secondary);
  color: var(--primary);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.news-date .day {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.news-date .month {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.news-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.news-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  transition: var(--transition-normal);
}

.news-card:hover .news-content h3 {
  color: var(--primary);
}

.news-content p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 15px;
  flex-grow: 1;
}

.news-card-footer {
  margin-top: auto;
  padding-top: 15px;
}

.news-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
}

.news-read-more-btn i {
  transition: var(--transition-normal);
}

.news-read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.news-read-more-btn:hover i {
  transform: translateX(3px);
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.news-link i {
  transition: var(--transition-normal);
}

.news-link:hover {
  color: var(--primary);
}

.news-link:hover i {
  transform: translateX(5px);
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition-normal);
}

.news-read-more i {
  transition: var(--transition-normal);
}

.news-read-more:hover {
  color: var(--primary);
}

.news-read-more:hover i {
  transform: translateX(5px);
}

/* ============================================
   News Modal
   ============================================ */
.news-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.news-modal.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-xl);
}

.news-modal.active .modal-content {
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.modal-close:hover {
  background: var(--primary);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-close i {
  font-size: 16px;
  color: var(--gray-700);
  transition: var(--transition-normal);
}

.modal-close:hover i {
  color: var(--white);
}

.modal-body {
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-text {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.modal-date {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.modal-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.modal-text #modalDescription {
  font-size: 16px;
  line-height: 1.8;
  color: black;
}

.modal-text #modalDescription p {
  margin-bottom: 15px;
}

.modal-text #modalDescription p:last-child {
  margin-bottom: 0;
}

.modal-read-more {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
  transition: var(--transition-normal);
}

.news-read-more:hover {
  color: var(--secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .modal-text {
    padding: 30px 20px;
  }

  .modal-text h2 {
    font-size: 22px;
  }

  .modal-text #modalDescription {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .modal-close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
  }

  .modal-text {
    padding: 25px 15px;
  }

  .modal-text h2 {
    font-size: 20px;
  }
}

/* ============================================
   Booking Section
   ============================================ */
.booking {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.booking-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.booking-info {
  color: var(--white);
}

.booking-info p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.booking-features {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 40px;
}

.booking-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-feature i {
  font-size: 24px;
  color: white;
}

.booking-feature span {
  font-weight: 500;
}

.emergency-contact {
  background: var(--gradient-secondary);
  padding: 25px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.emergency-contact p {
  margin-bottom: 10px;
  font-size: 14px;
}

.emergency-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.emergency-phone i {
  animation: ring 1s infinite;
}

@keyframes ring {
  0%,
  100% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(15deg);
  }
  75% {
    transform: rotate(-15deg);
  }
}

.booking-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.booking-form h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 30px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px 14px 45px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--gray-700);
  transition: var(--transition-normal);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
}

.form-group i {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: var(--gray-400);
  font-size: 16px;
  transition: var(--transition-normal);
}

.form-group input:focus + i,
.form-group select:focus + i,
.form-group textarea:focus + i {
  color: var(--primary);
}

.booking-form .btn {
  margin-top: 10px;
}

.booking-form .btn span {
  transition: var(--transition-normal);
}

.booking-form .btn:hover span {
  transform: translateX(-5px);
}

.booking-form .btn i {
  transition: var(--transition-normal);
}

.booking-form .btn:hover i {
  transform: translateX(5px);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  background: var(--gray-100);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.contact-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 2px solid var(--primary);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition-normal);
}

.contact-card:hover .contact-icon {
  background: var(--gradient-secondary);
  transform: rotateY(180deg);
}

.contact-icon i {
  font-size: 26px;
  color: var(--white);
}

.contact-card:hover .contact-icon i {
  color: var(--primary);
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.contact-card a,
.contact-card address {
  font-size: 15px;
  color: var(--gray-700);
  font-style: normal;
  font-weight: 500;
  transition: var(--transition-normal);
}

.contact-card a:hover {
  color: var(--primary);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: #120f0f;
  color: var(--white);
}

.footer-top {
  padding: 80px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 100px;
}

.footer-col > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.footer-social a:hover {
  background: #ec1b24;
  color: var(--white);
  transform: translateY(-5px);
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #ec1b24;
  border-radius: 3px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
}

.footer-links a::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--secondary-light);
  margin-right: 0;
  transition: var(--transition-normal);
}

.footer-links a:hover {
  color: var(--secondary-light);
  transform: translateX(8px);
}

.footer-links a:hover::before {
  width: 15px;
  margin-right: 8px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.footer-contact i {
  color: #ec1b24;
  margin-top: 4px;
}

.footer-bottom {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-normal);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gradient-secondary);
  color: var(--white);
  transform: translateY(-5px);
}

/* ============================================
   WhatsApp Float Button
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: var(--transition-normal);
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #128c7e;
}

/* ============================================
   Animations (AOS Alternative)
   ============================================ */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
  transform: translateY(40px);
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
}

[data-aos="fade-left"] {
  transform: translateX(40px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0);
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1200px) {
  .services-grid {
    justify-content: center;
  }

  .service-card {
    flex: 0 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 70px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 30px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  .plane-glow,
  .plane-circle,
  .plane-badge,
  .plane-dots {
    display: none;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image {
    order: -1;
  }

  .experience-badge {
    right: 0px;
    bottom: 0px;
  }

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

  .booking-content {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 0;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-xl);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    border-bottom: 1px solid var(--gray-200);
  }

  .nav-link {
    display: block;
    padding: 15px 0;
    color: var(--gray-700);
  }

  .nav-btn {
    display: none;
  }

  .nav-assist {
    padding: 10px 16px;
    font-size: 12px;
  }

  .nav-assist span {
    display: none;
  }

  .nav-assist i {
    font-size: 18px;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .services-grid {
    justify-content: center;
  }

  .service-card {
    flex: 0 1 100%;
    max-width: 100%;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .testimonial-card {
    min-width: 300px;
    max-width: 300px;
  }

  .booking-form-wrapper {
    padding: 30px 20px;
  }

  .whatsapp-float {
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .back-to-top {
    right: 20px;
    bottom: 25px;
    width: 45px;
    height: 45px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 25px;
  }

  .stat-number {
    font-size: 32px;
  }

  .section-title {
    font-size: 26px;
  }

  .booking-features {
    flex-direction: column;
    gap: 15px;
  }

  .experience-badge {
    padding: 15px 20px;
  }

  .experience-badge .years {
    font-size: 36px;
  }
}

/* Responsive Design for News Carousel */
@media (max-width: 1024px) {
  .news-carousel {
    padding: 0 50px;
  }
}

@media (max-width: 768px) {
  .news-carousel {
    padding: 0 40px;
  }

  /* One card per slide on small screens */
  .news-card {
    flex-basis: 100%;
  }

  .news-image {
    height: auto;
  }

  .news-carousel-prev,
  .news-carousel-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .news-carousel-prev {
    left: 5px;
  }

  .news-carousel-next {
    right: 5px;
  }
}

@media (max-width: 480px) {
  .news-carousel {
    padding: 0 20px;
  }

  .news-carousel-prev,
  .news-carousel-next {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .news-carousel-prev {
    left: 10px;
  }

  .news-image {
    height: auto;
  }

  .news-content h3 {
    font-size: 13px;
  }
  .news-content p {
    font-size: 10px;
  }
  .news-read-more-btn {
    font-size: 10px;
  }
  .news-carousel-next {
    right: 10px;
  }

  .news-carousel-dots {
    gap: 8px;
    margin-top: 20px;
  }

  .news-carousel-dot {
    width: 10px;
    height: 10px;
  }
}

/* ============================================
   EuroJet Launch Section
   ============================================ */
.eurojet-launch-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.launch-section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--secondary-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: var(--radius-xl);
  margin-bottom: 15px;
}

.launch-container {
  display: flex;
  width: 100%;
  min-height: 80vh;
  align-items: stretch;
}

.launch-content-left {
  flex: 1;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.launch-video-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.launch-video-right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.launch-text {
  max-width: 600px;
  text-align: left;
}

.launch-text h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.launch-text .lead {
  color: var(--white);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.5;
}

.launch-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive Design for EuroJet Launch Section */
@media (max-width: 768px) {
  .launch-container {
    flex-direction: column;
    min-height: auto;
  }

  .launch-content-left {
    padding: 50px 30px;
    min-height: 60vh;
  }

  .launch-video-right {
    min-height: 50vh;
  }

  .launch-text {
    text-align: center;
    max-width: 100%;
  }

  .launch-text h2 {
    margin-bottom: 25px;
    font-size: clamp(24px, 5vw, 36px);
  }

  .launch-text .lead {
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .launch-content-left {
    padding: 40px 20px;
    min-height: 50vh;
  }

  .launch-video-right {
    min-height: 40vh;
  }

  .launch-text h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .launch-text .lead {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .launch-text p {
    font-size: 16px;
  }
}
