/*
Theme Name: GSG Education 2026 - Ultimate Edition
Description: Premium Brand-Focused Design with Aviation Theme
Version: 4.0
*/

/* --- 1. ENHANCED THEME VARIABLES --- */
:root {
  --primary: #0b4ea2;
  --primary-light: #e6f0fa;
  --primary-dark: #063a7a;
  --secondary: #ed1c24;
  --secondary-light: #fff0f0;
  --secondary-dark: #c41119;
  --dark: #0e1133;
  --body-text: #505056;
  --white: #ffffff;
  --bg-grey: #f8f9fc;
  --border: #ececec;
  --shadow-card: 0 15px 45px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 25px 60px rgba(11, 78, 162, 0.2);
  --shadow-strong: 0 30px 70px rgba(0, 0, 0, 0.15);
  --transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-fast: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--body-text);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--dark);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.5px;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
input,
button,
select,
textarea {
  font-family: inherit;
  outline: none;
  border: none;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* --- 2. ENHANCED COMPONENT UTILITIES --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  box-shadow: 0 15px 35px rgba(11, 78, 162, 0.4);
  border: 2px solid transparent;
}
.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 25px 50px rgba(11, 78, 162, 0.5);
}

.btn-secondary {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-dark) 100%
  );
  color: var(--white);
  box-shadow: 0 15px 35px rgba(237, 28, 36, 0.4);
}
.btn-secondary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 25px 50px rgba(237, 28, 36, 0.5);
}

.btn-outline {
  background: transparent;
  border: 3px solid var(--primary);
  color: var(--primary);
  position: relative;
  overflow: hidden;
}
.btn-outline::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: left 0.4s;
  z-index: -1;
}
.btn-outline:hover::after {
  left: 0;
}
.btn-outline:hover {
  color: var(--white);
  border-color: var(--primary);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    rgba(11, 78, 162, 0.1) 100%
  );
  color: var(--primary);
  padding: 10px 25px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 30px;
  border: 2px solid rgba(11, 78, 162, 0.2);
  position: relative;
  overflow: hidden;
}

.badge::before {
  content: "✈";
  font-size: 0.9rem;
  animation: badgePlane 2s ease-in-out infinite;
}

.badge.white {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.section-header h2 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary),
    transparent
  );
}
.section-header p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}
.section-padding {
  padding: 120px 0;
}

/* --- 3. PREMIUM HEADER & NAVIGATION --- */
header {
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 78, 162, 0.1);
}
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: block;
  position: relative;
  transition: var(--transition);
}
.logo:hover {
  transform: scale(1.05);
}
.logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* Premium WordPress Menu */
.nav-menu {
  display: flex;
  align-items: center;
}
.wp-menu-list {
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}
.wp-menu-list li a {
  font-weight: 600;
  color: var(--dark);
  font-size: 1rem;
  position: relative;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}
.wp-menu-list li a::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}
.wp-menu-list li a:hover::before,
.wp-menu-list li.current-menu-item a::before {
  width: 100%;
}
.wp-menu-list li a:hover,
.wp-menu-list li.current-menu-item a {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--dark);
  margin-left: 15px;
}

/* --- 4. STUNNING HERO SECTION --- */
.hero {
  padding: 150px 0 180px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
  position: relative;
  overflow: hidden;
}

/* Animated Grid Background */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(11, 78, 162, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(11, 78, 162, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease forwards;
}
.highlight {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: -5px;
  width: 105%;
  height: 15px;
  background: linear-gradient(
    90deg,
    rgba(237, 28, 36, 0.2),
    rgba(11, 78, 162, 0.2)
  );
  z-index: -1;
  transform: skewX(-10deg);
  animation: highlightPulse 3s ease-in-out infinite;
}

.hero-subtitle {
  font-size: 1.2rem !important;
  color: #666 !important;
  line-height: 1.8 !important;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.play-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}
.play-circle {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-grey) 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--secondary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
  position: relative;
}
.play-circle::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  animation: ripple 2s ease-out infinite;
}
.play-wrapper:hover .play-circle {
  transform: scale(1.15);
  color: var(--primary);
  box-shadow: 0 20px 50px rgba(11, 78, 162, 0.3);
}

/* Hero Image Section */
.hero-img-box {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  animation: fadeInRight 1s ease forwards;
}
.hero-shape {
  position: absolute;
  width: 550px;
  height: 550px;
  background: linear-gradient(
    135deg,
    rgba(11, 78, 162, 0.1) 0%,
    rgba(237, 28, 36, 0.05) 100%
  );
  border-radius: 50px;
  transform: rotate(15deg);
  border: 3px dashed rgba(11, 78, 162, 0.2);
  z-index: -1;
  top: 20px;
  right: 20px;
  animation: shapeFloat 6s ease-in-out infinite;
}
.hero-img {
  border-radius: 30px;
  max-height: 650px;
  box-shadow: var(--shadow-strong);
  transform: rotate(-3deg);
  border: 12px solid var(--white);
  transition: var(--transition);
}
.hero-img:hover {
  transform: rotate(0deg) scale(1.02);
}

/* Enhanced Floating Planes */
.paper-plane-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.brand-plane {
  position: absolute;
  opacity: 0.6;
  filter: drop-shadow(8px 12px 15px rgba(0, 0, 0, 0.15));
}
.pp-1 {
  top: 15%;
  left: -100px;
  width: 100px;
  animation: flyRight 15s linear infinite;
}
.pp-2 {
  top: 60%;
  left: -150px;
  width: 180px;
  animation: flyRight 20s linear infinite 5s;
}
.pp-3 {
  bottom: 10%;
  left: -100px;
  width: 80px;
  animation: flyRightCurve 18s linear infinite 2s;
}

.float-badge {
  position: absolute;
  background: var(--white);
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 20px;
  animation: float 4s ease-in-out infinite;
  border: 2px solid var(--primary-light);
}
.fb-1 {
  top: 15%;
  left: -40px;
}

/* Premium Ticker Tape */
.ticker-wrap {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1d4a 100%);
  padding: 40px 0;
  margin-top: -60px;
  position: relative;
  z-index: 5;
  transform: rotate(-2deg) scale(1.03);
  overflow: hidden;
  border-top: 5px solid var(--secondary);
  border-bottom: 5px solid var(--primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.ticker {
  display: flex;
  gap: 100px;
  animation: scroll 25s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition-fast);
}
.ticker-item:hover {
  color: var(--secondary);
  transform: scale(1.1);
}
.ticker-plane {
  width: 35px;
  transform: rotate(45deg);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

/* --- 5. INNER PAGE HEADERS --- */
.page-header {
  height: 450px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  margin-bottom: 80px;
  background-attachment: fixed;
}
.page-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(14, 17, 51, 0.95) 0%,
    rgba(11, 78, 162, 0.85) 100%
  );
  z-index: 1;
}
.ph-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease forwards;
}
.ph-content h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 15px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* --- 6. PREMIUM CARDS & GRIDS --- */
.features {
  padding: 140px 0 120px;
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-grey) 100%);
}
.feature-grid,
.services-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.feature-card {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 25px;
  border: 2px solid transparent;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-card:hover {
  transform: translateY(-20px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}
.f-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  transition: var(--transition);
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--bg-grey) 100%
  );
  color: var(--primary);
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(11, 78, 162, 0.15);
}
.feature-card:hover .f-icon {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-dark) 100%
  );
  color: var(--white);
  transform: rotateY(360deg) scale(1.1);
}

/* About Section */
.about {
  padding: 120px 0;
}
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
  transform: rotate(3deg);
  border: 15px solid white;
  transition: var(--transition);
}
.about-img:hover {
  transform: rotate(0deg) scale(1.02);
}
.about-stamp {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-grey) 100%);
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: rotate 20s linear infinite;
  border: 5px solid var(--primary-light);
}
.check-list li {
  margin-bottom: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.05rem;
  transition: var(--transition-fast);
}
.check-list li:hover {
  color: var(--primary);
  transform: translateX(10px);
}
.check-list i {
  color: var(--secondary);
  font-size: 1.2rem;
}

/* Destinations Section */
.destinations {
  background: linear-gradient(135deg, var(--bg-grey) 0%, #e6f0fa 100%);
  padding: 140px 0;
  position: relative;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.dest-card {
  background: var(--white);
  border-radius: 25px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
}
.dest-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}
.card-img-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.dest-card:hover .card-img {
  transform: scale(1.15) rotate(2deg);
}
.flag-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--white);
  padding: 5px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  border: 3px solid var(--primary-light);
  transition: var(--transition);
}
.dest-card:hover .flag-badge {
  transform: scale(1.15) rotate(360deg);
}
.card-content {
  padding: 30px;
}
.card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tag-blue {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
}
.tag-red {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-dark) 100%
  );
  color: var(--white);
}
.card-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  transition: var(--transition-fast);
}
.dest-card:hover .card-title {
  color: var(--primary);
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--body-text);
  margin-bottom: 25px;
  border-bottom: 2px dashed var(--border);
  padding-bottom: 25px;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.2rem;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.team-card {
  background: var(--white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: center;
  padding-bottom: 30px;
  transition: var(--transition);
  border: 2px solid transparent;
}
.team-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}
.team-img {
  height: 280px;
  overflow: hidden;
}
.t-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.team-card:hover .t-img {
  transform: scale(1.1);
}
.team-info {
  padding: 25px;
}
.team-info .role {
  color: var(--secondary);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

/* Stories Grid */
.stories-grid {
  columns: 3;
  column-gap: 40px;
}
.story-card {
  background: var(--white);
  border-radius: 25px;
  padding: 35px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-card);
  break-inside: avoid;
  border: 2px solid transparent;
  transition: var(--transition);
}
.story-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}
.story-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  border-bottom: 2px dashed var(--border);
  padding-bottom: 20px;
}
.story-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}
.story-info h4 {
  font-size: 1.15rem;
  margin: 0;
}
.story-uni {
  font-size: 0.9rem;
  color: var(--primary);
}
.story-badge {
  display: inline-block;
  padding: 8px 18px;
  background: var(--bg-grey);
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

/* Contact Page */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .c-item {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
}

.contact-info .c-item:hover {
  transform: translateX(10px);
}
.contact-info i {
  font-size: 1.8rem;
  color: var(--secondary);
  background: linear-gradient(
    135deg,
    var(--secondary-light) 0%,
    rgba(237, 28, 36, 0.1) 100%
  );
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(237, 28, 36, 0.2);
}
.form-box-embedded {
  background: var(--white);
  padding: 50px;
  border-radius: 30px;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--border);
}
/* Stats Banner */
.stats-banner {
  margin: 120px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.stats-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 30s linear infinite;
}
.stats-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.stat-heading h2 {
  color: var(--white);
  font-size: 3.5rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.stat-item {
  padding-left: 50px;
  border-left: 3px dashed rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}
.stat-item:hover {
  transform: translateY(-10px);
}
.stat-num {
  font-size: 4rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  text-shadow: 0 5px 20px rgba(237, 28, 36, 0.5);
}
.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-top: 10px;
}
.banner-plane-img {
  width: 280px;
  animation: hoverPlane 3s ease-in-out infinite;
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.6));
  transform: rotate(-10deg);
}
/* Newsletter Section */
.newsletter {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 30px;
  margin-bottom: 120px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-strong);
}
.newsletter::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}
.news-box {
  padding: 80px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.news-content {
  width: 60%;
}
.news-content h2 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 3rem;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.input-group {
  background: var(--white);
  padding: 10px;
  border-radius: 50px;
  display: flex;
  max-width: 550px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}
.input-group input {
  background: transparent;
  flex: 1;
  padding: 0 30px;
  color: var(--dark);
  font-size: 1.05rem;
}
.input-group button {
  border-radius: 40px;
  padding: 15px 35px;
}
.news-plane {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  opacity: 0.2;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}
/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1d4a 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 120px 0 40px;
  position: relative;
  border-top: 5px solid var(--primary);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 35px;
}
.footer-col ul li {
  margin-bottom: 18px;
  transition: var(--transition-fast);
}
.footer-col ul li a:hover {
  color: var(--secondary);
  padding-left: 15px;
}
.footer-col ul li a:hover::before {
  content: "✈";
  margin-right: 8px;
  font-size: 0.9rem;
}
.footer-logo {
  display: block;
  margin-bottom: 25px;
}
.footer-logo img {
  height: 80px;
  width: auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 12px;
  transition: var(--transition);
}
.footer-logo img:hover {
  transform: scale(1.05);
}
.socials {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}
.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  color: var(--white);
  border: 2px solid transparent;
}
.social-link:hover {
  background: var(--secondary);
  transform: translateY(-8px) rotate(360deg);
  border-color: var(--white);
}
.copyright {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: 35px;
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}
/* Modal Styles */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 17, 51, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: var(--white);
  width: 100%;
  max-width: 600px;
  border-radius: 30px;
  padding: 50px;
  position: relative;
  transform: translateY(50px) scale(0.9);
  transition: var(--transition);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-backdrop.active .modal-box {
  transform: translateY(0) scale(1);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 20px;
}
.modal-header h3 {
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.close-btn {
  font-size: 1.8rem;
  cursor: pointer;
  color: #999;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.close-btn:hover {
  color: var(--secondary);
  transform: rotate(90deg);
  background: var(--secondary-light);
}
/* CF7 Form Styles */
.wpcf7-form-control {
  width: 100%;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #ddd;
  border-radius: 12px;
  font-size: 1rem;
  background: var(--bg-grey);
  transition: var(--transition-fast);
  margin-bottom: 20px;
  box-sizing: border-box;
}
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 5px 20px rgba(11, 78, 162, 0.1);
}
.wpcf7-submit {
  width: 100%;
  padding: 18px;
  font-size: 1.05rem;
  border-radius: 50px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}
.wpcf7-submit:hover {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-dark) 100%
  );
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(237, 28, 36, 0.4);
}
.wpcf7 p {
  margin-bottom: 15px;
}
/* Floating WhatsApp Button */
.float-whatsapp {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 40px;
  right: 40px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 35px;
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  animation: pulse 2s ease-in-out infinite;
}
.float-whatsapp:hover {
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6);
}
.float-tooltip {
  position: absolute;
  right: 85px;
  background: #333;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.float-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent transparent #333;
}
.float-whatsapp:hover .float-tooltip {
  opacity: 1;
  visibility: visible;
  right: 90px;
}
/* ============================================
PRELOADER STYLES
============================================ */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0b4ea2 0%, #0e1133 100%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loader-bg-planes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.15;
}
.bg-plane {
  position: absolute;
  width: 100px;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3)) brightness(1.2);
}
.bp-1 {
  top: 10%;
  left: -100px;
  animation: flyAcrossTop 12s linear infinite;
}
.bp-2 {
  top: 40%;
  right: -100px;
  animation: flyAcrossReverse 15s linear infinite 3s;
}
.bp-3 {
  top: 70%;
  left: -100px;
  animation: flyDiagonal 18s linear infinite 6s;
}
.bp-4 {
  bottom: 15%;
  right: -100px;
  animation: flyAcrossReverse 20s linear infinite 2s;
}
.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  animation: floatCloud linear infinite;
}
.cloud1 {
  width: 120px;
  height: 50px;
  top: 20%;
  left: -150px;
  animation-duration: 25s;
}
.cloud2 {
  width: 180px;
  height: 60px;
  top: 65%;
  left: -200px;
  animation-duration: 30s;
  animation-delay: 5s;
}
.cloud3 {
  width: 100px;
  height: 45px;
  top: 85%;
  left: -120px;
  animation-duration: 22s;
  animation-delay: 3s;
}
.loader-content {
  text-align: center;
  position: relative;
  z-index: 10;
}
.plane-loader {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 50px;
}
.circle-path {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  border: 3px dashed rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: rotatePath 3s linear infinite;
}
.center-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  background: #ed1c24;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulseGlow 1.5s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(237, 28, 36, 0.8), 0 0 40px rgba(237, 28, 36, 0.5),
    0 0 60px rgba(237, 28, 36, 0.3);
}
.brand-plane-loader {
  position: absolute;
  width: 90px;
  height: 90px;
  top: 50%;
  left: 50%;
  animation: flyOrbit 3s linear infinite;
  transform-origin: 0 0;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
}
.brand-plane-loader img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: tiltPlane 3s ease-in-out infinite;
}
.plane-trail {
  position: absolute;
  top: 50%;
  left: -30px;
  width: 30px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(237, 28, 36, 0.6),
    transparent
  );
  transform: translateY(-50%);
  animation: trailPulse 1s ease-in-out infinite;
}
.loader-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}
.loader-brand-plane {
  width: 50px;
  height: 50px;
  animation: floatBounce 2s ease-in-out infinite;
  filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.3));
}
.loading-text {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  animation: textGlow 2s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
.loading-subtext {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  animation: fadeInOut 3s ease-in-out infinite;
}
.progress-container {
  width: 350px;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  margin: 0 auto;
  overflow: visible;
  position: relative;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ed1c24, #0b4ea2, #ed1c24);
  background-size: 200% 100%;
  border-radius: 10px;
  animation: loadProgressEnhanced 3s ease-in-out infinite,
    gradientShift 2s linear infinite;
  box-shadow: 0 0 15px rgba(237, 28, 36, 0.6), 0 2px 5px rgba(0, 0, 0, 0.3);
  position: relative;
}
.progress-plane {
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
  animation: planeWobble 0.5s ease-in-out infinite;
}
.loading-percentage {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 20px;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.corner-planes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.corner-plane {
  position: absolute;
  width: 120px;
  opacity: 0.2;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}
.cp-1 {
  top: 30px;
  left: 30px;
  transform: rotate(-15deg);
  animation: floatCorner 4s ease-in-out infinite;
}
.cp-2 {
  bottom: 30px;
  right: 30px;
  transform: rotate(165deg);
  animation: floatCorner 4s ease-in-out infinite 2s;
}
/* ============================================
ANIMATIONS
============================================ */
@keyframes badgePlane {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}
@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}
@keyframes highlightPulse {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.4;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes shapeFloat {
  0%,
  100% {
    transform: rotate(15deg) translateY(0);
  }
  50% {
    transform: rotate(20deg) translateY(-20px);
  }
}
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes flyRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(100vw + 200px));
  }
}
@keyframes flyRightCurve {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(calc(100vw + 200px), -100px) rotate(15deg);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes hoverPlane {
  0%,
  100% {
    transform: translateY(0) rotate(-10deg);
  }
  50% {
    transform: translateY(-25px) rotate(-5deg);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes flyAcrossTop {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  100% {
    transform: translateX(calc(100vw + 200px)) rotate(10deg);
  }
}
@keyframes flyAcrossReverse {
  0% {
    transform: translateX(0) rotate(180deg);
  }
  100% {
    transform: translateX(calc(-100vw - 200px)) rotate(190deg);
  }
}
@keyframes flyDiagonal {
  0% {
    transform: translate(0, 0) rotate(45deg);
  }
  100% {
    transform: translate(calc(100vw + 200px), -30vh) rotate(55deg);
  }
}
@keyframes flyOrbit {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(100px) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(100px)
      rotate(-360deg);
  }
}
@keyframes tiltPlane {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}
@keyframes trailPulse {
  0%,
  100% {
    opacity: 0.3;
    width: 30px;
  }
  50% {
    opacity: 0.7;
    width: 40px;
  }
}
@keyframes rotatePath {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes pulseGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    box-shadow: 0 0 20px rgba(237, 28, 36, 0.8), 0 0 40px rgba(237, 28, 36, 0.5),
      0 0 60px rgba(237, 28, 36, 0.3);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0.6;
    box-shadow: 0 0 30px rgba(237, 28, 36, 1), 0 0 60px rgba(237, 28, 36, 0.7),
      0 0 90px rgba(237, 28, 36, 0.5);
  }
}
@keyframes floatBounce {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}
@keyframes textGlow {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
  50% {
    opacity: 0.9;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  }
}
@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}
@keyframes loadProgressEnhanced {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@keyframes planeWobble {
  0%,
  100% {
    transform: translateY(-50%) rotate(0deg);
  }
  50% {
    transform: translateY(-50%) rotate(-3deg);
  }
}
@keyframes floatCloud {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(100vw + 250px));
  }
}
@keyframes floatCorner {
  0%,
  100% {
    transform: translate(0, 0) rotate(-15deg);
  }
  50% {
    transform: translate(-10px, -10px) rotate(-10deg);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.animate-up {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}
.animate-card:nth-child(1) {
  animation-delay: 0.1s;
}
.animate-card:nth-child(2) {
  animation-delay: 0.2s;
}
.animate-card:nth-child(3) {
  animation-delay: 0.3s;
}
.animate-card:nth-child(4) {
  animation-delay: 0.4s;
}
.animate-card:nth-child(5) {
  animation-delay: 0.5s;
}
.animate-card:nth-child(6) {
  animation-delay: 0.6s;
}
/* ============================================
RESPONSIVE DESIGN
============================================ */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-grid,
  .split-layout,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-img-box,
  .about-img-wrap {
    order: -1;
    max-width: 550px;
    margin: 0 auto;
  }
  .stats-wrap {
    flex-direction: column;
    gap: 50px;
  }
  .stat-item {
    border-left: none;
    padding-left: 0;
    border-top: 3px dashed rgba(255, 255, 255, 0.3);
    padding-top: 30px;
    width: 100%;
    text-align: center;
  }
  .banner-plane-img {
    display: none;
  }
  .news-content {
    width: 100%;
    text-align: center;
  }
  .input-group {
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stories-grid {
    columns: 2;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  .nav-menu.active {
    display: flex;
  }
  .wp-menu-list {
    flex-direction: column;
    gap: 20px;
  }
  .menu-toggle {
    display: block;
  }
  .feature-grid,
  .card-grid,
  .footer-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .stories-grid {
    columns: 1;
  }
  .header-actions .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .section-header h2 {
    font-size: 2.2rem;
  }
  .ph-content h1 {
    font-size: 2.5rem;
  }
  .float-whatsapp {
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    font-size: 28px;
  }
  .float-tooltip {
    display: none;
  }
  /* Preloader Mobile */
  .plane-loader {
    width: 170px;
    height: 170px;
  }
  .circle-path {
    width: 150px;
    height: 150px;
  }
  .brand-plane-loader {
    width: 70px;
    height: 70px;
  }
  .loader-brand-plane {
    width: 40px;
    height: 40px;
  }
  .loading-text {
    font-size: 1.5rem;
  }
  .loading-subtext {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }
  .progress-container {
    width: 280px;
  }
  .progress-plane {
    width: 30px;
    height: 30px;
  }
  .loading-percentage {
    font-size: 1rem;
  }
  .bg-plane {
    width: 70px;
  }
  .corner-plane {
    width: 80px;
  }

  @keyframes flyOrbit {
    0% {
      transform: translate(-50%, -50%) rotate(0deg) translateX(75px)
        rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg) translateX(75px)
        rotate(-360deg);
    }
  }
}

/* ============================================
   ENHANCED PAGE TEMPLATES CSS
   Complete styles for Destinations, Services, Team, and Stories pages
   ============================================ */

/* --- PREMIUM PAGE HEADER --- */
.premium-header {
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
}

.premium-header .overlay {
    background: linear-gradient(135deg, 
        rgba(14, 17, 51, 0.92) 0%, 
        rgba(11, 78, 162, 0.88) 100%);
}

.header-content-wrap {
    position: relative;
    z-index: 3;
}

.header-desc {
    color: rgba(255,255,255,0.9) !important;
    font-size: 1.2rem !important;
    margin: 15px 0 25px;
    max-width: 600px;
}

/* Header Flying Planes */
.header-planes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.header-plane {
    position: absolute;
    width: 120px;
    opacity: 0.15;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}

.hp-1 {
    top: 20%;
    left: -120px;
    animation: flyAcrossTop 15s linear infinite;
}

.hp-2 {
    bottom: 25%;
    right: -120px;
    animation: flyAcrossReverse 18s linear infinite 3s;
}

@keyframes flyAcrossTop {
    0% {
        left: -120px;
        transform: rotate(0deg);
    }
    100% {
        left: 110%;
        transform: rotate(10deg);
    }
}

@keyframes flyAcrossReverse {
    0% {
        right: -120px;
        transform: scaleX(-1) rotate(0deg);
    }
    100% {
        right: 110%;
        transform: scaleX(-1) rotate(-10deg);
    }
}

/* Decorative Wave */
.header-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.header-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* --- DESTINATIONS PAGE --- */
.filter-section {
    padding: 40px 0;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 90px;
    z-index: 100;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid var(--border);
    background: var(--white);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--bg-grey);
    padding: 12px 25px;
    border-radius: 50px;
    gap: 10px;
    border: 2px solid var(--border);
    transition: var(--transition-fast);
}

.search-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(11, 78, 162, 0.15);
}

.search-box input {
    border: none;
    background: transparent;
    font-size: 1rem;
    width: 250px;
}

.search-box i {
    color: var(--primary);
}

/* Enhanced Destination Cards */
.destinations-showcase {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-grey) 100%);
}

.enhanced-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.enhanced-dest-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.enhanced-dest-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.card-image-section {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-img-wrap {
    position: relative;
    height: 100%;
    width: 100%;
}

.card-img-wrap .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.enhanced-dest-card:hover .card-img {
    transform: scale(1.15) rotate(2deg);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 100%);
    opacity: 0;
    transition: var(--transition);
}

.enhanced-dest-card:hover .card-overlay {
    opacity: 1;
}

.floating-flag {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--white);
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 3px solid var(--primary-light);
    transition: var(--transition);
}

.enhanced-dest-card:hover .floating-flag {
    transform: scale(1.15) rotate(360deg);
}

.floating-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.quick-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.quick-info i {
    color: var(--primary);
}

.card-content-section {
    padding: 30px;
}

.card-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.card-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: #ffa500;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-arrow {
    transition: var(--transition-fast);
    font-size: 1.2rem;
}

.enhanced-dest-card:hover .card-arrow {
    transform: translateX(10px);
}

.card-description {
    color: #666;
    line-height: 1.7;
    margin: 15px 0 20px;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px dashed var(--border);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #555;
}

.feature-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.card-footer-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.intake-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.intake-info .label {
    font-size: 0.85rem;
    color: #888;
}

.intake-info .value {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.explore-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.explore-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(11, 78, 162, 0.4);
}

/* Destination CTA */
.destination-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-grey) 0%, var(--white) 100%);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-plane {
    width: 80px;
    margin: 0 auto 30px;
    animation: floatBounce 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0px) rotate(-5deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.cta-box h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-box p {
    color: rgba(255,255,255,0.95);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* --- SERVICES PAGE --- */
.services-journey {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-grey) 50%, var(--white) 100%);
}

.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    transform: translateX(-50%);
}

.service-timeline-item {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.service-timeline-item:nth-child(odd) .service-enhanced-card {
    margin-left: 0;
    margin-right: auto;
}

.service-timeline-item:nth-child(even) .service-enhanced-card {
    margin-right: 0;
    margin-left: auto;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    z-index: 10;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(237, 28, 36, 0.4);
    border: 5px solid var(--white);
}

.marker-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.service-enhanced-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    box-shadow: var(--shadow-card);
    width: 45%;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-enhanced-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.service-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(11, 78, 162, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-enhanced-card:hover .icon-circle {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: rotateY(360deg);
}

.service-plane {
    width: 60px;
    opacity: 0.4;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #555;
}

.service-features i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 15px;
    transition: var(--transition-fast);
    text-decoration: none;
}

.service-link:hover {
    gap: 15px;
    color: var(--secondary);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.why-choose-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 25px;
}

.why-choose-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stat-mini-item {
    text-align: center;
}

.stat-mini-item h3 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.stat-mini-item p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.why-choose-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.feature-box:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    display: block;
}

.feature-box h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-box p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Takeoff CTA */
.takeoff-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-grey) 0%, var(--white) 100%);
}

.takeoff-box {
    text-align: center;
    position: relative;
}

.takeoff-plane-animation {
    margin-bottom: 30px;
}

.animated-plane {
    width: 120px;
    animation: takeoffAnimation 3s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.2));
}

@keyframes takeoffAnimation {
    0%, 100% {
        transform: translateY(0px) rotate(-10deg);
    }
    50% {
        transform: translateY(-30px) rotate(-5deg);
    }
}

.takeoff-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.takeoff-box p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* --- TEAM PAGE --- */
.team-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-grey) 0%, var(--white) 100%);
}

.team-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-stat-item {
    text-align: center;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.team-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.team-stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.team-stat-item p {
    color: #666;
    font-weight: 600;
    margin: 0;
}

.intro-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(237, 28, 36, 0.4);
}

.team-showcase {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-grey) 100%);
}

.enhanced-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.enhanced-team-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.enhanced-team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.team-card-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.team-member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.enhanced-team-card:hover .team-member-img {
    transform: scale(1.1);
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-grey) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-img i {
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.5;
}

.team-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.enhanced-team-card:hover .team-card-overlay {
    opacity: 1;
}

.social-links-team {
    display: flex;
    gap: 15px;
}

.social-icon-team {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-icon-team:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.cert-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(237, 28, 36, 0.4);
}

.team-card-info {
    padding: 30px;
}

.team-header {
    margin-bottom: 20px;
}

.team-header h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.team-bio {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-expertise {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px dashed var(--border);
}

.team-expertise h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.team-expertise i {
    color: var(--secondary);
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.exp-tag {
    background: var(--bg-grey);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #555;
    border: 1px solid var(--border);
}

.contact-team-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-team-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(11, 78, 162, 0.4);
}

/* Join Team Section */
.join-team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-grey) 0%, var(--white) 100%);
}

.join-team-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: 30px;
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.join-team-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.join-content {
    position: relative;
    z-index: 2;
}

.join-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.join-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.join-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.join-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
}

.join-feature i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.join-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.join-plane {
    width: 150px;
    animation: floatBounce 3s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
}

/* Team CTA */
.team-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-grey) 0%, var(--white) 100%);
}

.cta-box-team {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box-team h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-box-team p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* --- STORIES PAGE --- */
.featured-story-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
}

.featured-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-story-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.featured-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(237, 28, 36, 0.4);
}

.featured-story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.story-meta-featured {
    display: flex;
    gap: 25px;
    margin: 20px 0 25px;
    flex-wrap: wrap;
}

.story-meta-featured span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-weight: 500;
}

.story-meta-featured i {
    color: var(--primary);
}

.featured-excerpt {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.stories-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-grey) 100%);
}

.stories-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.enhanced-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
}

.enhanced-story-card {
    background: var(--white);
    border-radius: 25px;
    padding: 35px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 2px solid transparent;
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.enhanced-story-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.story-card-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px dashed var(--border);
}

.student-avatar {
    position: relative;
    width: 80px;
    height: 80px;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-light);
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-grey) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
}

.student-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.university-name {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.story-rating {
    display: flex;
    gap: 5px;
}

.story-rating i {
    color: #ffa500;
    font-size: 1.1rem;
}

.story-quote {
    position: relative;
    margin-bottom: 25px;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.5;
}

.story-quote p {
    position: relative;
    z-index: 1;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

.story-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px dashed var(--border);
}

.story-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-weight: 500;
}

.story-location i {
    color: var(--secondary);
}

.read-more-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition-fast);
    text-decoration: none;
}

.read-more-link:hover {
    gap: 12px;
    color: var(--secondary);
}

/* Video Testimonials */
.video-testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    position: relative;
}

.video-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.video-testimonials .section-header h2 {
    color: var(--white);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.video-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.play-btn-overlay i {
    color: var(--secondary);
    font-size: 1.8rem;
    margin-left: 5px;
}

.video-card:hover .play-btn-overlay {
    transform: translate(-50%, -50%) scale(1.15);
}

.video-card h4 {
    color: var(--white);
    padding: 20px 20px 10px;
    font-size: 1.2rem;
}

.video-card p {
    color: rgba(255,255,255,0.8);
    padding: 0 20px 20px;
}

/* Your Story CTA */
.your-story-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-grey) 0%, var(--white) 100%);
}

.cta-content-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-plane-large {
    width: 150px;
    margin: 0 auto 30px;
    animation: takeoffAnimation 3s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.2));
}

.cta-content-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content-box p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
    .why-choose-grid,
    .featured-story-grid,
    .team-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .journey-timeline {
        max-width: 100%;
    }
    
    .service-enhanced-card {
        width: 70%;
    }
    
    .join-team-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .premium-header {
        min-height: 400px;
    }
    
    .header-desc {
        font-size: 1rem !important;
    }
    
    .cta-box h2,
    .takeoff-box h2,
    .cta-content-box h2 {
        font-size: 2rem;
    }
    
    .why-choose-content h2,
    .featured-story-content h2 {
        font-size: 2rem;
    }
    
    .filter-bar {
        flex-direction: column;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .enhanced-card-grid,
    .enhanced-team-grid,
    .enhanced-stories-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .service-enhanced-card {
        width: 100%;
        margin-left: 80px !important;
    }
    
    .stats-mini,
    .team-stats,
    .why-choose-features {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-box,
    .join-team-box {
        padding: 50px 30px;
    }
}

@media (max-width: 480px) {
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .card-content-section {
        padding: 20px;
    }
    
    .explore-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-enhanced-card {
        padding: 25px;
        margin-left: 60px !important;
    }
    
    .enhanced-story-card {
        padding: 25px;
    }
}

/* ============================================
   ENHANCED MOBILE RESPONSIVE DESIGN
   Add these styles to your existing CSS
   ============================================ */

/* --- TABLET FIXES (1024px and below) --- */
@media (max-width: 1024px) {
  /* Hero Section */
  .hero {
    padding: 100px 0 120px;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-grid,
  .split-layout,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-img-box,
  .about-img-wrap {
    order: -1;
    max-width: 550px;
    margin: 0 auto;
  }

  .hero-shape {
    width: 450px;
    height: 450px;
  }

  /* Stats */
  .stats-wrap {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .stat-item {
    border-left: none;
    padding-left: 0;
    border-top: 3px dashed rgba(255, 255, 255, 0.3);
    padding-top: 30px;
    width: 100%;
  }

  .banner-plane-img {
    display: none;
  }

  /* Newsletter */
  .news-content {
    width: 100%;
    text-align: center;
  }

  .input-group {
    margin: 0 auto;
  }

  .news-plane {
    display: none;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .stories-grid {
    columns: 2;
    column-gap: 30px;
  }

  /* Enhanced Page Templates */
  .why-choose-grid,
  .featured-story-grid,
  .team-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .journey-timeline {
    max-width: 100%;
  }

  .service-enhanced-card {
    width: 70%;
  }

  .join-team-box {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Contact Page */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* --- MOBILE LANDSCAPE (900px and below) --- */
@media (max-width: 900px) {
  .container {
    padding: 0 15px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  /* Feature Grid */
  .feature-grid,
  .services-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* --- MOBILE PORTRAIT (768px and below) --- */
@media (max-width: 768px) {
  /* Global */
  body {
    font-size: 0.95rem;
  }

  .container {
    padding: 0 20px;
  }

  /* Header/Navigation */
  header {
    padding: 15px 0;
  }

  .logo img {
    height: 55px;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 85px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 30px 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    max-height: calc(100vh - 85px);
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .wp-menu-list {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .wp-menu-list li {
    width: 100%;
  }

  .wp-menu-list li a {
    display: block;
    padding: 12px 20px;
    background: var(--bg-grey);
    border-radius: 12px;
    text-align: center;
  }

  .wp-menu-list li a::before {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  /* Hero Section */
  .hero {
    padding: 80px 0 100px;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem !important;
  }

  .hero-btns {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .play-wrapper {
    width: 100%;
    justify-content: center;
  }

  .hero-img {
    max-height: 450px;
    border: 8px solid var(--white);
  }

  .hero-shape {
    width: 350px;
    height: 350px;
  }

  .float-badge {
    padding: 15px 20px;
    font-size: 0.85rem;
  }

  /* Ticker */
  .ticker-wrap {
    padding: 25px 0;
  }

  .ticker-item {
    font-size: 1rem;
    gap: 10px;
  }

  .ticker-plane {
    width: 25px;
  }

  /* Page Headers */
  .page-header,
  .premium-header {
    height: 400px;
    min-height: 400px;
  }

  .ph-content h1 {
    font-size: 2.2rem;
  }

  .header-desc {
    font-size: 1rem !important;
  }

  .sh-flex {
    flex-direction: column;
    gap: 20px !important;
  }

  .sh-flag {
    width: 80px !important;
    height: 80px !important;
  }

  /* Quick Stats Bar (Single Destination) */
  .premium-header > .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
  }

  /* Grids */
  .feature-grid,
  .card-grid,
  .footer-grid,
  .team-grid,
  .services-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-card {
    padding: 40px 30px;
  }

  .stories-grid {
    columns: 1;
  }

  /* Cards */
  .dest-card,
  .team-card,
  .story-card {
    margin-bottom: 30px;
  }

  .card-content {
    padding: 25px;
  }

  .card-title {
    font-size: 1.3rem;
  }

  /* Stats Banner */
  .stats-banner {
    margin: 80px 0;
    padding: 60px 0;
  }

  .stat-heading h2 {
    font-size: 2.2rem;
  }

  .stat-num {
    font-size: 2.8rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  /* Newsletter */
  .newsletter {
    margin-bottom: 80px;
  }

  .news-box {
    padding: 50px 30px;
    flex-direction: column;
    text-align: center;
  }

  .news-content h2 {
    font-size: 2rem;
  }

  .input-group {
    flex-direction: column;
    max-width: 100%;
  }

  .input-group input {
    padding: 15px 20px;
  }

  .input-group button {
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }

  .copyright {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  /* Modal */
  .modal-box {
    padding: 40px 25px;
    max-width: 95%;
  }

  .modal-header h3 {
    font-size: 1.5rem;
  }

  /* WhatsApp Float */
  .float-whatsapp {
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    font-size: 28px;
  }

  .float-tooltip {
    display: none;
  }

  /* Enhanced Pages - Contact */
  .feature-grid.animate-up {
    gap: 25px;
  }

  .c-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .form-box-embedded {
    padding: 35px 25px;
  }

  /* Single Destination */
  .content-grid-layout {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .sidebar-area {
    position: static !important;
  }

  .quick-facts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .modern-tabs {
    flex-direction: column;
    padding: 8px;
    gap: 10px;
  }

  .tab-btn {
    width: 100%;
    padding: 15px 20px !important;
    font-size: 0.9rem;
  }

  .tab-content {
    padding: 35px 25px !important;
  }

  /* Enhanced Page Templates */
  .premium-header .hero-btns {
    gap: 15px;
  }

  .filter-bar {
    flex-direction: column;
    gap: 15px;
  }

  .filter-group {
    width: 100%;
    justify-content: center;
  }

  .search-box {
    width: 100%;
  }

  .search-box input {
    width: 100%;
  }

  .enhanced-card-grid,
  .enhanced-team-grid,
  .enhanced-stories-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .card-image-section {
    height: 250px;
  }

  /* Timeline */
  .timeline-line {
    left: 30px;
  }

  .timeline-marker {
    left: 30px;
    transform: translateX(0);
  }

  .service-enhanced-card {
    width: calc(100% - 80px) !important;
    margin-left: 80px !important;
    margin-right: 0 !important;
    padding: 30px 25px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  /* Team & Stories */
  .stats-mini,
  .team-stats,
  .why-choose-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .cta-box,
  .join-team-box {
    padding: 50px 30px;
  }

  .cta-box h2,
  .takeoff-box h2,
  .cta-content-box h2,
  .why-choose-content h2,
  .featured-story-content h2 {
    font-size: 2rem;
  }

  .team-card-image {
    height: 280px;
  }

  /* Preloader Mobile */
  .plane-loader {
    width: 170px;
    height: 170px;
  }

  .circle-path {
    width: 150px;
    height: 150px;
  }

  .brand-plane-loader {
    width: 70px;
    height: 70px;
  }

  .loader-brand-plane {
    width: 40px;
    height: 40px;
  }

  .loading-text {
    font-size: 1.5rem;
  }

  .loading-subtext {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }

  .progress-container {
    width: 280px;
  }

  .progress-plane {
    width: 30px;
    height: 30px;
  }

  .loading-percentage {
    font-size: 1rem;
  }

  .bg-plane {
    width: 70px;
  }

  .corner-plane {
    width: 80px;
  }

  @keyframes flyOrbit {
    0% {
      transform: translate(-50%, -50%) rotate(0deg) translateX(75px) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg) translateX(75px)
        rotate(-360deg);
    }
  }
}

/* --- SMALL MOBILE (480px and below) --- */
@media (max-width: 480px) {
  /* Typography */
  .hero-title {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .ph-content h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  /* Buttons */
  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .header-actions {
    gap: 10px;
  }

  .header-actions .btn {
    padding: 8px 15px;
    font-size: 0.8rem;
    letter-spacing: 0;
  }

  /* Badge */
  .badge {
    padding: 8px 18px;
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  /* Logo */
  .logo img {
    height: 50px;
  }

  /* Hero */
  .hero {
    padding: 60px 0 80px;
  }

  .hero::before {
    background-size: 30px 30px;
  }

  .hero-subtitle {
    font-size: 0.95rem !important;
  }

  .hero-img {
    max-height: 350px;
    border: 6px solid var(--white);
    border-radius: 20px;
  }

  .hero-shape {
    width: 280px;
    height: 280px;
    border-radius: 30px;
  }

  .play-circle {
    width: 55px;
    height: 55px;
  }

  /* Ticker */
  .ticker-wrap {
    padding: 20px 0;
  }

  .ticker-item {
    font-size: 0.85rem;
    letter-spacing: 1px;
  }

  /* Page Header */
  .page-header,
  .premium-header {
    height: 350px;
    min-height: 350px;
  }

  .header-wave svg {
    height: 40px;
  }

  .sh-flex {
    gap: 15px !important;
  }

  .sh-flag {
    width: 70px !important;
    height: 70px !important;
  }

  /* Cards */
  .feature-card {
    padding: 35px 25px;
  }

  .f-icon {
    width: 75px;
    height: 75px;
    font-size: 2rem;
  }

  .dest-card,
  .team-card,
  .story-card,
  .enhanced-story-card {
    border-radius: 20px;
  }

  .card-content,
  .card-content-section {
    padding: 20px;
  }

  .card-img-wrap,
  .card-image-section {
    height: 220px;
  }

  .flag-badge,
  .floating-flag {
    width: 50px;
    height: 50px;
    top: 15px;
    right: 15px;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-meta {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  /* Stats */
  .stats-banner {
    margin: 60px 0;
    padding: 50px 0;
  }

  .stat-heading h2 {
    font-size: 1.8rem;
  }

  .stat-num {
    font-size: 2.5rem;
  }

  .stat-item {
    padding-left: 0;
    padding-top: 25px;
  }

  /* Quick Facts (Single Destination) */
  .quick-facts-grid {
    gap: 15px;
  }

  .fact-card {
    padding: 25px 20px;
  }

  .fact-card i {
    font-size: 2.2rem;
  }

  .fact-card strong {
    font-size: 1.2rem;
  }

  /* Newsletter */
  .newsletter {
    border-radius: 20px;
    margin-bottom: 60px;
  }

  .news-box {
    padding: 40px 20px;
  }

  .news-content h2 {
    font-size: 1.8rem;
  }

  /* Footer */
  footer {
    padding: 80px 0 30px;
  }

  .footer-logo img {
    height: 60px;
  }

  .social-link {
    width: 45px;
    height: 45px;
  }

  /* Contact Page */
  .contact-info i {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .form-box-embedded {
    padding: 30px 20px;
  }

  .form-box-embedded h3 {
    font-size: 1.5rem;
  }

  /* Single Destination Tabs */
  .modern-tabs {
    gap: 8px;
  }

  .tab-btn {
    padding: 12px 15px !important;
    font-size: 0.85rem;
  }

  .tab-btn i {
    display: none;
  }

  .tab-content {
    padding: 30px 20px !important;
  }

  /* Widget Box */
  .widget-box {
    padding: 30px 20px;
  }

  .call-to-action-widget {
    padding: 35px 25px;
  }

  /* Enhanced Pages */
  .filter-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .explore-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .service-enhanced-card {
    padding: 25px 20px;
    margin-left: 60px !important;
    width: calc(100% - 60px) !important;
  }

  .service-icon-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .service-plane {
    align-self: center;
  }

  .icon-circle {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  /* Team Cards */
  .team-card-image {
    height: 250px;
  }

  .team-card-info {
    padding: 25px 20px;
  }

  .enhanced-story-card {
    padding: 25px 20px;
  }

  .story-card-header {
    gap: 12px;
  }

  .student-avatar {
    width: 70px;
    height: 70px;
  }

  /* CTA Sections */
  .cta-box,
  .join-team-box {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .cta-box h2,
  .takeoff-box h2,
  .cta-content-box h2 {
    font-size: 1.8rem;
  }

  .cta-box p,
  .takeoff-box p,
  .cta-content-box p {
    font-size: 1rem;
  }

  .cta-plane,
  .animated-plane,
  .cta-plane-large,
  .join-plane {
    width: 80px;
  }

  /* Video Cards */
  .video-thumbnail {
    height: 180px;
  }

  .play-btn-overlay {
    width: 60px;
    height: 60px;
  }

  .play-btn-overlay i {
    font-size: 1.5rem;
  }

  /* Modal */
  .modal-backdrop {
    padding: 15px;
  }

  .modal-box {
    padding: 30px 20px;
  }

  .modal-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
  }

  .modal-header h3 {
    font-size: 1.3rem;
  }

  .close-btn {
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
  }

  /* Forms */
  .wpcf7 input[type="text"],
  .wpcf7 input[type="email"],
  .wpcf7 input[type="tel"],
  .wpcf7 select,
  .wpcf7 textarea {
    padding: 12px 15px;
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .wpcf7-submit {
    padding: 15px;
    font-size: 1rem;
  }

  /* Map */
  .google-map-section {
    height: 350px;
  }

  .map-overlay-card {
    position: static;
    margin: 15px;
    padding: 25px;
    border-radius: 15px;
  }
}

/* --- EXTRA SMALL DEVICES (360px and below) --- */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .ph-content h1 {
    font-size: 1.6rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .hero {
    padding: 50px 0 70px;
  }

  .hero-img {
    max-height: 300px;
  }

  .stats-banner {
    padding: 40px 0;
  }

  .stat-num {
    font-size: 2rem;
  }

  .news-content h2 {
    font-size: 1.6rem;
  }

  .service-enhanced-card {
    margin-left: 50px !important;
    width: calc(100% - 50px) !important;
  }

  .timeline-line,
  .timeline-marker {
    left: 22px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    border: 3px solid var(--white);
  }
}

/* --- LANDSCAPE ORIENTATION FIXES --- */
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 60px 0;
  }

  .page-header,
  .premium-header {
    height: auto;
    min-height: 350px;
    padding: 60px 0;
  }

  .nav-menu.active {
    max-height: calc(100vh - 70px);
  }

  .modal-box {
    max-height: 85vh;
  }
}

/* --- UTILITY CLASSES FOR MOBILE --- */
.mobile-hide {
  display: none !important;
}

@media (min-width: 769px) {
  .mobile-hide {
    display: block !important;
  }
  
  .desktop-hide {
    display: none !important;
  }
}

/* --- TOUCH DEVICE OPTIMIZATIONS --- */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects on touch devices */
  .btn:hover::before {
    display: none;
  }

  .feature-card:hover,
  .dest-card:hover,
  .team-card:hover,
  .story-card:hover {
    transform: none;
  }

  /* Make touch targets larger */
  .btn,
  .filter-btn,
  .tab-btn {
    min-height: 44px;
    min-width: 44px;
  }

  /* Improve tap responsiveness */
  * {
    -webkit-tap-highlight-color: rgba(11, 78, 162, 0.2);
  }
}

/* --- PREVENT HORIZONTAL SCROLL --- */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .container {
    max-width: 100%;
  }

  /* Fix any elements that might overflow */
  .ticker,
  .hero-shape,
  .paper-plane-container,
  .header-planes {
    max-width: 100vw;
  }

  /* Ensure images don't overflow */
  img {
    max-width: 100%;
    height: auto;
  }
}

/* --- ACCESSIBILITY IMPROVEMENTS --- */
@media (max-width: 768px) {
  /* Increase minimum font sizes for readability */
  body {
    font-size: 16px;
  }

  /* Ensure sufficient touch target sizes */
  a,
  button,
  input,
  select,
  textarea {
    min-height: 44px;
  }

  /* Better focus states for keyboard navigation */
  a:focus,
  button:focus,
  input:focus,
  select:focus,
  textarea:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
  }
}