/* ============================================
   SKYWAY TRAVEL - ADVANCED 3D STYLES
============================================ */
:root {
  --navy: #1E3A8A;
  --navy-dark: #0F2057;
  --navy-light: #2B4C9E;
  --gold: #F5B800;
  --gold-light: #FFD54F;
  --gold-dark: #C49000;
  --sky: #8FA8C8;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-gray: #F0F2F5;
  --medium-gray: #E0E0E0;
  --text-dark: #1A1A2E;
  --text-medium: #555;
  --text-light: #777;
  --success: #10B981;
  --danger: #EF4444;
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-3d: 0 15px 35px -5px rgba(30,58,138,0.3);
  --shadow-3d-hover: 0 25px 50px -10px rgba(30,58,138,0.4);
  --gradient-primary: linear-gradient(135deg, #1E3A8A 0%, #2B4C9E 100%);
  --gradient-gold: linear-gradient(135deg, #F5B800 0%, #FFD54F 100%);
  --gradient-dark: linear-gradient(135deg, #0F2057 0%, #1E3A8A 100%);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --radius: 20px;
  --radius-lg: 30px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-white-70 { color: rgba(255,255,255,0.7) !important; }
.text-gold { color: var(--gold) !important; }

/* ============================================
   PAGE LOADER
============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--gradient-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; color: var(--white); }
.loader-plane {
  font-size: 60px;
  color: var(--gold);
  animation: planeFly 2s ease-in-out infinite;
  margin-bottom: 20px;
}
@keyframes planeFly {
  0%, 100% { transform: translateX(-30px) rotate(-15deg); opacity: 0.5; }
  50% { transform: translateX(30px) rotate(15deg); opacity: 1; }
}
.loader-text {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 5px;
}

/* ============================================
   GRADIENT TEXT & SECTION BADGES
============================================ */
.text-gradient, .gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.section-badge {
  display: inline-block;
  background: rgba(245, 184, 0, 0.15);
  color: var(--gold-dark);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  border: 1px solid rgba(245, 184, 0, 0.3);
}
.section-badge.light {
  background: rgba(245, 184, 0, 0.2);
  color: var(--gold-light);
  border-color: rgba(245, 184, 0, 0.4);
}
.section-title { text-align: center; margin-bottom: 70px; }
.section-title h2 {
  font-size: 48px;
  color: var(--navy);
  margin-bottom: 15px;
  font-weight: 700;
}
.section-title p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto;
}
.gold-line {
  width: 100px;
  height: 4px;
  background: var(--gradient-gold);
  margin: 20px auto;
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(245, 184, 0, 0.4);
}

/* ============================================
   3D BUTTONS
============================================ */
.btn-3d {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  text-decoration: none;
}
.btn-3d::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-3d:hover::before { opacity: 1; }
.btn-3d .btn-icon {
  transition: transform 0.3s;
  display: inline-flex;
}
.btn-3d:hover .btn-icon { transform: translateX(5px); }
.btn-primary-3d {
  background: var(--gradient-gold);
  color: var(--navy-dark);
  box-shadow: 0 10px 30px -5px rgba(245, 184, 0, 0.5), 0 4px 15px rgba(0,0,0,0.1);
}
.btn-primary-3d:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px -5px rgba(245, 184, 0, 0.6), 0 8px 25px rgba(0,0,0,0.15);
}
.btn-primary-3d:active { transform: translateY(-2px) scale(0.98); }
.btn-navy-3d {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 10px 30px -5px rgba(30, 58, 138, 0.5), 0 4px 15px rgba(0,0,0,0.1);
}
.btn-navy-3d:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px -5px rgba(30, 58, 138, 0.6), 0 8px 25px rgba(0,0,0,0.15);
}
.btn-dark-3d {
  background: var(--navy-dark);
  color: var(--white);
  box-shadow: 0 10px 30px -5px rgba(0,0,0,0.4);
}
.btn-dark-3d:hover { transform: translateY(-4px); background: var(--navy); }
.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-3d {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1);
}
.btn-outline-3d:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px -5px rgba(30, 58, 138, 0.4);
}

/* ============================================
   TOP BAR
============================================ */
.top-bar {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 12px 0;
  font-size: 13px;
  position: relative;
  z-index: 100;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar-left { display: flex; gap: 25px; align-items: center; flex-wrap: wrap; }
.top-bar-left a, .top-bar-left span {
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-left a:hover { color: var(--gold); }
.top-bar-right { display: flex; gap: 15px; }
.top-bar-right a {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.top-bar-right a:hover { color: var(--gold); background: rgba(245,184,0,0.15); transform: translateY(-2px); }

/* ============================================
   NAVBAR
============================================ */
.navbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.navbar.scrolled { padding: 12px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.12); }
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.logo-icon {
  width: 54px;
  height: 54px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 24px;
  box-shadow: 0 6px 20px rgba(30,58,138,0.3), inset 0 2px 4px rgba(255,255,255,0.2);
  transition: var(--transition);
}
.logo:hover .logo-icon { transform: rotate(15deg) scale(1.1); }
.logo-text h1 {
  font-size: 24px;
  color: var(--navy);
  line-height: 1;
  font-weight: 800;
}
.logo-text span {
  font-size: 11px;
  color: var(--gold-dark);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}
.nav-links { display: flex; list-style: none; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  cursor: pointer;
  padding: 8px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient-gold);
  transition: var(--transition);
  border-radius: 3px;
  transform: translateX(-50%);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--gradient-gold);
  color: var(--navy-dark) !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 6px 20px -3px rgba(245,184,0,0.5);
  transition: var(--transition-bounce);
}
.nav-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 25px -3px rgba(245,184,0,0.6);
}
.nav-cta::after { display: none !important; }
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--navy);
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: var(--transition);
}
.mobile-menu-btn:hover { background: var(--light-gray); }

/* ============================================
   HERO SECTION
============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gradient-dark);
}
.hero-bg { position: absolute; inset: 0; z-index: 1; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease;
  transform: scale(1.05);
  animation: kenBurns 20s ease-in-out infinite;
}
.hero-slide.active { opacity: 1; }
@keyframes kenBurns {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,32,87,0.85), rgba(30,58,138,0.7));
  z-index: 2;
}

/* Floating 3D Elements */
.floating-elements {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.float-item {
  position: absolute;
  color: rgba(245, 184, 0, 0.15);
  font-size: 40px;
  animation: floatAround 15s ease-in-out infinite;
}
.float-1 { top: 15%; left: 10%; animation-delay: 0s; }
.float-2 { top: 30%; right: 15%; font-size: 60px; animation-delay: 3s; }
.float-3 { bottom: 25%; left: 15%; font-size: 50px; animation-delay: 6s; }
.float-4 { bottom: 20%; right: 10%; font-size: 45px; animation-delay: 9s; }
@keyframes floatAround {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  25% { transform: translate(30px, -30px) rotate(90deg); }
  50% { transform: translate(-20px, -50px) rotate(180deg); }
  75% { transform: translate(-30px, 20px) rotate(270deg); }
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  color: var(--white);
  max-width: 1000px;
  padding: 0 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 184, 0, 0.15);
  color: var(--gold);
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
  border: 1px solid rgba(245, 184, 0, 0.3);
  backdrop-filter: blur(20px);
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-content h1 {
  font-size: 72px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.05;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 20px;
  opacity: 0.95;
  margin-bottom: 45px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Search Box */
.hero-search {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px);
  border-radius: 25px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 60px -15px rgba(0,0,0,0.3);
}
.search-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 20px;
  align-items: end;
}
.search-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.search-field label i { color: var(--gold); }
.search-field select, .search-field input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: var(--transition);
}
.search-field select:focus, .search-field input:focus {
  outline: none;
  background: rgba(255,255,255,0.25);
  border-color: var(--gold);
}
.search-field select option { color: var(--text-dark); background: var(--white); }
.search-btn-3d {
  background: var(--gradient-gold);
  color: var(--navy-dark);
  padding: 18px 32px;
  border: none;
  border-radius: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px -5px rgba(245,184,0,0.5);
  transition: var(--transition-bounce);
}
.search-btn-3d:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px -5px rgba(245,184,0,0.6);
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}
.scroll-down a {
  color: rgba(255,255,255,0.7);
  font-size: 24px;
  animation: bounce 2s infinite;
  display: block;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-15px); }
  60% { transform: translateY(-7px); }
}

/* ============================================
   TRUST STATS
============================================ */
.trust-section {
  padding: 60px 0;
  background: var(--white);
  position: relative;
  z-index: 5;
  margin-top: -80px;
  border-radius: 30px 30px 0 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.trust-card {
  background: var(--white);
  padding: 40px 25px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.trust-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.trust-card:hover::before { transform: scaleX(1); }
.trust-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--gold);
  box-shadow: 0 10px 25px -5px rgba(30,58,138,0.4);
  transition: var(--transition);
}
.trust-card:hover .trust-icon { transform: rotate(10deg) scale(1.1); }
.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  display: inline-block;
  line-height: 1;
}
.trust-plus {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: var(--gold);
  font-weight: 800;
}
.trust-label {
  font-size: 14px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-top: 8px;
}

/* ============================================
   CURVES (SVG-based section dividers)
============================================ */
.curve-top, .curve-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  overflow: hidden;
  pointer-events: none;
}
.curve-top { top: -1px; }
.curve-bottom { bottom: -1px; transform: rotate(180deg); }
.curve-top::before, .curve-bottom::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: var(--off-white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: scaleX(1.5);
}

/* ============================================
   WELCOME SECTION
============================================ */
.welcome-section { background: var(--off-white); }
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.welcome-img { position: relative; }
.img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(30,58,138,0.3);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.6s;
}
.img-wrapper:hover { transform: perspective(1000px) rotateY(0deg); }
.img-wrapper img { width: 100%; height: 550px; object-fit: cover; }
.exp-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--gradient-gold);
  color: var(--navy-dark);
  padding: 25px 35px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 35px -5px rgba(245,184,0,0.5);
  z-index: 2;
}
.exp-badge .yr { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 800; line-height: 1; }
.exp-badge .tx { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 5px; }
.floating-badge {
  position: absolute;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  box-shadow: 0 10px 30px -5px rgba(0,0,0,0.2);
  z-index: 3;
  animation: floatY 3s ease-in-out infinite;
}
.floating-badge i { color: var(--gold); font-size: 18px; }
.floating-badge-1 { top: 20px; left: -30px; animation-delay: 0s; }
.floating-badge-2 { top: 40%; right: -40px; animation-delay: 1.5s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.welcome-text h2 {
  font-size: 44px;
  color: var(--navy);
  margin-bottom: 25px;
  font-weight: 700;
}
.welcome-text p {
  font-size: 16px;
  color: var(--text-medium);
  margin-bottom: 18px;
  line-height: 1.8;
}
.welcome-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 30px 0 35px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}
.feature-item i { color: var(--gold); font-size: 20px; }

/* ============================================
   DESTINATIONS SECTION
============================================ */
.destinations-section { background: var(--white); }
.dest-grid-3d {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.dest-card-3d {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
  transform-style: preserve-3d;
  display: block;
}
.dest-card-3d:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.dest-img { position: absolute; inset: 0; }
.dest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.dest-card-3d:hover .dest-img img { transform: scale(1.15); }
.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 25px;
  background: linear-gradient(to top, rgba(15,32,87,0.95), rgba(15,32,87,0.4) 60%, transparent);
  color: var(--white);
  transition: var(--transition);
}
.dest-card-3d:hover .dest-info { padding-bottom: 40px; }
.dest-flag {
  font-size: 32px;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
.dest-info h3 {
  font-size: 26px;
  margin-bottom: 5px;
  font-weight: 700;
}
.dest-info p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 15px;
}
.dest-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}
.dest-card-3d:hover .dest-explore { transform: translateY(0); opacity: 1; }

/* ============================================
   PACKAGES SECTION
============================================ */
.packages-section { background: var(--off-white); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.pkg-card-3d {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.pkg-card-3d:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg);
}
.pkg-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.pkg-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.pkg-card-3d:hover .pkg-img-wrap img { transform: scale(1.1); }
.pkg-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-gold);
  color: var(--navy-dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 6px 15px -3px rgba(245,184,0,0.5);
}
.pkg-heart {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--danger);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.pkg-heart:hover { transform: scale(1.15); background: var(--white); }
.pkg-body { padding: 28px; }
.pkg-body h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 700;
}
.pkg-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-light);
}
.pkg-meta span { display: flex; align-items: center; gap: 5px; }
.pkg-meta i { color: var(--gold); }
.pkg-description {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 20px;
  line-height: 1.6;
}
.pkg-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}
.pkg-features span {
  background: var(--light-gray);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  color: var(--text-medium);
  font-weight: 600;
}
.pkg-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}
.pkg-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
}
.pkg-rating i { color: var(--gold); }
.pkg-view-btn {
  background: var(--navy);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pkg-card-3d:hover .pkg-view-btn {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateX(3px);
}

/* ============================================
   SERVICES SECTION
============================================ */
.services-section {
  background: var(--gradient-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.services-bg {
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><g fill="none" fill-rule="evenodd"><g fill="%23F5B800" fill-opacity="0.03"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
  opacity: 0.5;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
}
.service-card-3d {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-bounce);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  backdrop-filter: blur(10px);
}
.service-card-3d:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px -10px rgba(245,184,0,0.2);
}
.service-icon-3d {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(245,184,0,0.2), rgba(245,184,0,0.05));
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: var(--gold);
  transition: var(--transition);
  box-shadow: 0 10px 25px -5px rgba(245,184,0,0.3);
}
.service-card-3d:hover .service-icon-3d {
  background: var(--gradient-gold);
  color: var(--navy-dark);
  transform: rotate(10deg) scale(1.15);
}
.service-card-3d h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
.service-card-3d p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  line-height: 1.6;
}
.learn-more {
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-card-3d:hover .learn-more { gap: 12px; }

/* ============================================
   WHY US SECTION
============================================ */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.why-card-3d {
  background: var(--white);
  padding: 45px 35px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
}
.why-card-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.5s;
}
.why-card-3d:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.why-card-3d:hover::before { transform: scaleX(1); }
.why-icon-3d {
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  color: var(--gold);
  box-shadow: 0 15px 30px -8px rgba(30,58,138,0.4);
  transition: var(--transition);
}
.why-card-3d:hover .why-icon-3d { transform: rotate(-10deg) scale(1.1); }
.why-card-3d h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
.why-card-3d p { font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-section {
  background: var(--gradient-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.test-card-3d {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 40px 35px;
  transition: var(--transition-bounce);
  position: relative;
  backdrop-filter: blur(10px);
}
.test-card-3d:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-8px);
  border-color: var(--gold);
}
.test-quote {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--navy-dark);
  box-shadow: 0 10px 25px -5px rgba(245,184,0,0.5);
}
.test-stars { color: var(--gold); font-size: 16px; margin: 15px 0 20px; }
.test-text {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
  font-style: italic;
  min-height: 100px;
}
.test-author { display: flex; align-items: center; gap: 15px; }
.test-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-dark);
  box-shadow: 0 8px 20px -5px rgba(245,184,0,0.5);
}
.test-info h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.test-info p { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
  background: var(--gradient-gold);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg-shapes { position: absolute; inset: 0; }
.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.shape-1 { width: 300px; height: 300px; top: -100px; left: -100px; }
.shape-2 { width: 400px; height: 400px; bottom: -150px; right: -150px; }
.cta-content { text-align: center; position: relative; z-index: 2; }
.cta-content h2 {
  font-size: 52px;
  color: var(--navy-dark);
  margin-bottom: 20px;
  font-weight: 800;
}
.cta-content h2 span { color: var(--white); text-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.cta-content p {
  font-size: 20px;
  color: var(--navy);
  margin: 0 auto 40px;
  max-width: 650px;
  opacity: 0.9;
}
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   NEWSLETTER
============================================ */
.newsletter-section {
  background: var(--navy-dark);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.news-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}
.news-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: var(--navy-dark);
  box-shadow: 0 15px 35px -5px rgba(245,184,0,0.5);
}
.news-content h2 { font-size: 40px; margin-bottom: 15px; font-weight: 700; }
.news-content p { color: rgba(255,255,255,0.7); margin-bottom: 35px; font-size: 17px; }
.news-form {
  display: flex;
  gap: 12px;
  max-width: 550px;
  margin: 0 auto;
}
.news-form input {
  flex: 1;
  padding: 18px 28px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  transition: var(--transition);
}
.news-form input::placeholder { color: rgba(255,255,255,0.5); }
.news-form input:focus {
  outline: none;
  background: rgba(255,255,255,0.15);
  border-color: var(--gold);
}
.news-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 20px;
}
.news-note i { color: var(--gold); margin-right: 5px; }

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 0;
  position: relative;
}
.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 60" preserveAspectRatio="none"><path fill="%230F2057" d="M0,0 C300,60 900,60 1200,0 L1200,60 L0,60 Z"/></svg>') no-repeat;
  background-size: cover;
  transform: rotate(180deg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; }
.footer-logo .li {
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-size: 20px;
  box-shadow: 0 8px 20px -5px rgba(245,184,0,0.5);
}
.footer-logo h3 { font-size: 22px; font-family: 'Playfair Display', serif; }
.footer-about p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  margin-bottom: 30px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gradient-gold);
  color: var(--navy-dark);
  transform: translateY(-5px) rotate(10deg);
}
.footer h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--white);
  position: relative;
  padding-bottom: 15px;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 3px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 13px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 8px; }
.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}
.footer-contact i {
  color: var(--gold);
  margin-top: 4px;
  min-width: 16px;
}
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { padding: 30px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: var(--gold); margin: 0 8px; }

/* ============================================
   WHATSAPP FLOAT
============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}
.whatsapp-float a {
  position: relative;
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 32px;
  box-shadow: 0 10px 30px -5px rgba(37,211,102,0.5);
  transition: var(--transition-bounce);
}
.whatsapp-float a:hover {
  transform: scale(1.15) rotate(15deg);
  box-shadow: 0 15px 40px -5px rgba(37,211,102,0.7);
}
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid #25D366;
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================
   BACK TO TOP
============================================ */
.back-top {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  z-index: 998;
  opacity: 0;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  box-shadow: 0 10px 25px -5px rgba(30,58,138,0.4);
}
.back-top.show { opacity: 1; }
.back-top:hover {
  background: var(--gradient-gold);
  color: var(--navy-dark);
  transform: translateY(-5px);
}

/* ============================================
   PAGE HEADER (for internal pages)
============================================ */
.page-header {
  padding: 140px 0 100px;
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,32,87,0.85), rgba(30,58,138,0.7));
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { font-size: 56px; margin-bottom: 15px; font-weight: 800; }
.page-header p { font-size: 20px; opacity: 0.95; margin-bottom: 25px; }
.breadcrumb {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  padding: 10px 25px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb i { font-size: 10px; }

/* ============================================
   DETAIL PAGES (Package/Visa Detail)
============================================ */
.detail-page { background: var(--off-white); padding: 60px 0 100px; }
.detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  align-items: start;
}
.detail-main { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.detail-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(15,32,87,0.95), transparent);
  color: var(--white);
}
.detail-hero-overlay h1 { font-size: 42px; font-weight: 800; margin-bottom: 15px; }
.detail-tags { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 15px; }
.detail-tag {
  background: var(--gradient-gold);
  color: var(--navy-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}
.detail-content { padding: 50px; }
.detail-section { margin-bottom: 50px; }
.detail-section h2 {
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
}
.detail-section p, .detail-section li {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 15px;
}
.detail-section ul { list-style: none; padding-left: 0; }
.detail-section ul li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
}
.detail-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 18px;
}
.itinerary-day {
  background: var(--off-white);
  padding: 25px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  border-left: 4px solid var(--gold);
}
.itinerary-day h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}
.day-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}
.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-grid img:hover { transform: scale(1.05); }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}
.highlight-item {
  background: var(--off-white);
  padding: 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: var(--transition);
}
.highlight-item:hover { background: rgba(245,184,0,0.1); transform: translateX(5px); }
.highlight-item i { color: var(--gold); font-size: 24px; }

/* Sidebar */
.detail-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px;
  box-shadow: var(--shadow-md);
  margin-bottom: 25px;
}
.sidebar-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--light-gray);
}
.info-list { list-style: none; }
.info-list li {
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--light-gray);
  font-size: 14px;
}
.info-list li:last-child { border: none; }
.info-list li strong { color: var(--navy); }
.info-list li span { color: var(--text-medium); }
.sidebar-cta {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 35px;
  border-radius: var(--radius);
  text-align: center;
}
.sidebar-cta h3 { color: var(--white); font-size: 24px; margin-bottom: 10px; }
.sidebar-cta p { color: rgba(255,255,255,0.85); margin-bottom: 20px; font-size: 14px; }
.sidebar-cta .btn-3d { width: 100%; justify-content: center; margin-bottom: 12px; }

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1200px) {
  .dest-grid-3d, .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .welcome-grid { grid-template-columns: 1fr; gap: 60px; }
  .dest-grid-3d, .packages-grid, .services-grid, .why-grid, .test-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content h1 { font-size: 50px; }
  .detail-wrapper { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-links {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    border-radius: 0 0 var(--radius) var(--radius);
  }
  .nav-links.active { display: flex; }
  .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
  .hero-content h1 { font-size: 36px; }
  .hero-content p { font-size: 16px; }
  .search-form { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .dest-grid-3d, .packages-grid, .services-grid, .why-grid, .test-grid,
  .footer-grid, .trust-grid, .cta-buttons { grid-template-columns: 1fr; }
  .section-title h2, .cta-content h2 { font-size: 32px; }
  .news-form { flex-direction: column; }
  .section { padding: 70px 0; }
  .welcome-features { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 36px; }
  .detail-content { padding: 30px 25px; }
  .detail-hero-overlay h1 { font-size: 28px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: 1fr; }
  .exp-badge { right: 0; bottom: -15px; padding: 15px 25px; }
  .floating-badge { display: none; }
  .cta-buttons { flex-direction: column; align-items: center; }
}