/* ==========================================================================
   LavaFly Lanzarote - Premium Redesign Styling
   ========================================================================== */

/* Design Tokens & Variables */
:root {
  --primary: #06b6d4;
  /* Sunset/Ocean Teal */
  --primary-hover: #0891b2;
  --secondary: #d97706;
  /* Warm Volcanic Gold */
  --secondary-hover: #b45309;

  --dark-slate: #0f172a;
  /* Deep Volcanic Slate */
  --body-text: #1e293b;
  /* Slate 800 */
  --muted-text: #475569;
  /* Slate 600 */
  --light-gray: #f8fafc;
  /* Off-White Section BG */
  --white: #ffffff;

  --font-title: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Header & Navigation */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all var(--transition-smooth);
  padding: 24px 0;
}

.main-header.scrolled {
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

@media (min-width: 1025px) {
  .header-container {
    justify-content: flex-start;
  }
}

.logo img {
  height: auto;
  width: auto;
  transition: height var(--transition-smooth);
}

.main-header.scrolled .logo img {
  height: 48px;
}

.desktop-nav {
  margin-left: 80px;
}

.desktop-nav ul {
  display: flex;
  gap: 32px;
}

.desktop-nav a {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--white);
  transition: width var(--transition-smooth);
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  width: 100%;
}

/* Mobile Navigation Trigger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--white);
  margin-bottom: 6px;
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Sidebar Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--dark-slate);
  z-index: 105;
  padding: 100px 40px 40px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  transition: right var(--transition-smooth);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  display: block;
}

.mobile-nav a:hover {
  color: var(--white);
  padding-left: 8px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  background: url("../new-img/hero-bg.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  /* smooth scroll fallback */
  color: var(--white);
  padding: 0 24px 120px 24px;
}

/* For browsers that support parallax, customize here if needed */
@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero-content {
  max-width: 1100px;
  width: 90%;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-divider {
  width: 320px;
  height: 1.5px;
  background-color: rgba(255, 255, 255, 0.6);
  margin: 20px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  opacity: 0.95;
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.scroll-indicator:hover {
  color: var(--white);
}

.scroll-indicator svg {
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-8px);
  }

  60% {
    transform: translateY(-4px);
  }
}

/* Floating Action Dock (Right Sidebar) */
.floating-dock {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dock-item {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-smooth);
}

/* Specific Colors from Mockup */
.dock-phone {
  background-color: #64748b;
  /* Slate Gray */
}

.dock-whatsapp {
  background-color: #4b5563;
  /* Medium Gray but turns green on hover */
}

.dock-whatsapp:hover {
  background-color: #25d366;
  /* WhatsApp Green */
}

.dock-mail {
  background-color: #4b5563;
  /* Slate/Medium Gray */
}

.dock-mail:hover {
  background-color: #ef4444;
  /* Alert Red */
}

.dock-clock {
  background-color: #06b6d4;
  /* Ocean Teal */
}

.dock-lang {
  background-color: #b45309;
  /* Warm Amber/Gold */
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 14px;
}

/* Dock Item Hover Effects */
.dock-item:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

/* Tooltip implementation */
.dock-item .tooltip {
  position: absolute;
  right: 68px;
  background-color: rgba(15, 23, 42, 0.95);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(15px);
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}

.dock-item .tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background-color: rgba(15, 23, 42, 0.95);
}

.dock-item:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Language Selection Dropdown Menu */
.lang-dropdown {
  position: absolute;
  right: 0;
  bottom: 58px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--transition-smooth);
  pointer-events: none;
}

.dock-lang-container {
  position: relative;
}

/* Show dropdown on container hover */
.dock-lang-container:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-dropdown-item {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--dark-slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-dropdown-item:hover {
  transform: scale(1.1);
  background-color: var(--white);
  color: var(--dark-slate);
  border-color: var(--white);
}

/* Intro Section */
.intro-section {
  background-color: var(--light-gray);
  padding: 120px 24px;
  text-align: center;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-section h2 {
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark-slate);
  margin-bottom: 40px;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.intro-description {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.85;
  color: var(--muted-text);
  margin-bottom: 30px;
  font-weight: 400;
}

.intro-description p {
  margin-bottom: 24px;
}

.intro-description p:last-child {
  margin-bottom: 0;
}

.intro-highlight {
  font-family: var(--font-title);
  font-size: clamp(1.125rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--dark-slate);
  margin-top: 48px;
  letter-spacing: 0.5px;
}

/* Tandem Flights Section Styles */
.flights-section {
  padding: 100px 24px;
  background-color: var(--white);
}

/* Section Headers (Global Style matching Mockup) */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-header h2 {
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800; /* Very bold Montserrat letters */
  color: var(--dark-slate);
  letter-spacing: -0.5px;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-divider {
  width: 80px;
  height: 3px; /* Thick cyan bar */
  background-color: var(--primary);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Grid Layout */
.flights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 40px auto 0;
  align-items: stretch;
}

/* Card Container & Pre-header */
.flight-card-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-pre-header {
  position: absolute;
  top: -32px;
  left: 0;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Card Main Styles */
.flight-card {
  position: relative;
  background-color: var(--white);
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.03), 0 0 0 1px rgba(15, 23, 42, 0.05);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

/* Special styling for Popular Card (Classic Flight Plus) */
.flight-card.popular-card {
  box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.1), 0 4px 6px -2px rgba(6, 182, 212, 0.05), 0 0 0 1px rgba(6, 182, 212, 0.15);
}

.flight-card.popular-card:hover {
  box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.2), 0 10px 10px -5px rgba(6, 182, 212, 0.1), 0 0 0 2px rgba(6, 182, 212, 0.25);
}

/* Card Image Wrapper & Overlays */
.card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--light-gray);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.image-overlay-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  box-shadow: var(--shadow-md);
  max-width: fit-content;
}

.image-overlay-badge svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Price Badge floating on image bottom-right */
.price-badge {
  position: absolute;
  top: -72px;
  right: 24px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #38bdf8;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 5;
  text-align: center;
  transition: transform var(--transition-smooth);
}

.flight-card:hover .price-badge {
  transform: scale(1.08) rotate(3deg);
}

.badge-duration {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  opacity: 0.95;
  margin-top: 2px;
}

.badge-price {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin: 1px 0;
}

.badge-currency {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1;
}

/* Card Body Content */
.card-body {
  position: relative;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-badge-label {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.flight-title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark-slate);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* Details list with SVGs */
.flight-meta-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  flex-grow: 1;
}

.flight-meta-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--light-gray);
  color: var(--muted-text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.meta-icon svg {
  width: 18px;
  height: 18px;
}

.meta-icon.plus-icon {
  background-color: #f1f5f9;
  color: #475569;
}

.meta-icon.check-icon {
  background-color: rgba(6, 182, 212, 0.08);
  color: var(--primary);
}

.meta-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-text);
  line-height: 1.4;
}

.meta-text.highlight-text {
  color: var(--primary);
  font-weight: 600;
}

/* Interactive Action Buttons */
.card-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.card-actions .btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition-smooth);
}

.card-actions .btn-primary {
  background-color: #38bdf8;
  color: var(--white);
  border: none;
  box-shadow: 0 4px 10px rgba(56, 189, 248, 0.2);
}

.card-actions .btn-primary:hover {
  background-color: var(--primary);
  box-shadow: 0 6px 15px rgba(6, 182, 212, 0.3);
  transform: translateY(-2px);
}

.card-actions .btn-outline {
  background-color: transparent;
  color: var(--dark-slate);
  border: 1.5px solid var(--dark-slate);
}

.card-actions .btn-outline:hover {
  background-color: var(--dark-slate);
  color: var(--white);
  transform: translateY(-2px);
}


/* Volcano CTA Section Styles */
.volcano-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0) 30%, rgba(15, 23, 42, 0.35) 100%), url('../new-img/volcano-sky.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  padding: 80px 48px;
  color: var(--white);
  overflow: hidden;
}

.volcano-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.volcano-content {
  max-width: 520px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.volcano-content h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.volcano-divider {
  width: 150px;
  height: 1.5px;
  background-color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.volcano-content p {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.btn-volcano {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  background-color: var(--white);
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-smooth);
}

.btn-volcano:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.35);
}

/* Full Video Banner Section Styles */
.full-video-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.25)), url('../img/image_4.png');
  background-size: cover;
  background-position: top center;
  cursor: pointer;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.full-video-content {
  text-align: center;
  color: var(--white);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-smooth);
  padding: 24px;
}

.full-video-section:hover .full-video-content {
  transform: scale(1.05);
}

.full-video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.full-video-play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
  margin-left: 4px; /* visually center the triangle */
  transition: all var(--transition-smooth);
}

.full-video-section:hover .full-video-play-btn {
  background-color: var(--white);
  border-color: var(--white);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.full-video-section:hover .full-video-play-btn svg {
  fill: #000;
}

.full-video-text {
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin: 0;
}

@media (max-width: 768px) {
  .full-video-section {
    height: 320px;
  }
  .full-video-play-btn {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
  }
  .full-video-play-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* Next Level Flights Section Styles */
.nextlevel-section {
  padding: 100px 24px;
  background-color: #e8e8e8;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.nextlevel-title {
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--dark-slate);
  letter-spacing: -0.5px;
  line-height: 1.2;
  text-transform: uppercase;
}

.nextlevel-section .section-divider {
  background-color: #5a6b50;
}

/* Next Level Price Badge - Olive/Green tone matching screenshot */
.price-badge.nextlevel-badge {
  background-color: #6b7b61;
}

.flight-card:hover .price-badge.nextlevel-badge {
  transform: scale(1.08) rotate(3deg);
}

/* Next Level Book Button - Olive/Green primary */
.card-actions .btn-primary.btn-nextlevel {
  background-color: #6b7b61;
  box-shadow: 0 4px 10px rgba(107, 123, 97, 0.2);
}

.card-actions .btn-primary.btn-nextlevel:hover {
  background-color: #5a6b50;
  box-shadow: 0 6px 15px rgba(90, 107, 80, 0.3);
  transform: translateY(-2px);
}

/* Next Level Overlay Badge - Green tint */
.nextlevel-overlay-badge svg {
  color: #6b7b61;
}

/* Team Section Styles */
.team-section {
  padding: 100px 24px;
  background-color: var(--white);
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.team-section .section-lead {
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.75;
  color: var(--muted-text);
}

.team-subheader {
  max-width: 1400px;
  margin: 0 auto 40px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  padding-bottom: 12px;
}

.team-subheader span {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.team-member {
  display: flex;
  flex-direction: column;
}

.member-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.1);
  margin-bottom: 24px;
  background-color: var(--light-gray);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.team-member:hover .member-image-wrap {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.15), 0 10px 10px -5px rgba(15, 23, 42, 0.1);
}

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

.member-info {
  display: flex;
  flex-direction: column;
}

.member-name {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 800;
  color: var(--dark-slate);
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.member-bio {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted-text);
  margin-bottom: 16px;
}

.member-quote {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  line-height: 1.6;
  color: #475569;
  border-left: 2px solid var(--primary);
  padding-left: 12px;
  margin-top: 8px;
}

/* Follow the Adventure Section Styles */
.adventure-section {
  padding: 100px 24px;
  background-color: var(--white);
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}


.adventure-box {
  background-color: #f1f5f9;
  border-radius: 12px;
  padding: 60px 48px;
  max-width: 1400px;
  margin: 40px auto 48px;
}

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

.adventure-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  background-color: var(--dark-slate);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.adventure-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.adventure-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.adventure-card:hover .adventure-card-img {
  transform: scale(1.05);
  opacity: 0.95;
}

/* Play & Instagram/Video Icons Overlays */
.card-icon-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 2;
}

.card-icon-overlay svg {
  width: 12px;
  height: 12px;
}

.card-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 64px;
  height: 64px;
  background-color: rgba(6, 182, 212, 0.9);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  z-index: 3;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.card-play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 4px;
}

.adventure-card:hover .card-play-btn {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.btn-adventure {
  max-width: fit-content;
  margin: 0 auto;
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 1.5px;
  border-color: var(--dark-slate);
}

/* Video Modal Styles */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 880px;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 12px;
  overflow: visible;
  z-index: 1010;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: transform var(--transition-smooth);
}

.video-modal.open .modal-content {
  transform: scale(1);
}

.video-iframe-container {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.video-iframe-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition-fast);
}

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

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  /* Reposition floating dock slightly on tablets */
  .floating-dock {
    right: 16px;
    gap: 12px;
  }

  .dock-item {
    width: 44px;
    height: 44px;
  }

  .dock-item .tooltip {
    display: none;
    /* Hide tooltips on touch devices */
  }

  .lang-dropdown {
    bottom: 52px;
  }

  .lang-dropdown-item {
    width: 38px;
    height: 38px;
  }

  /* Flights Section Tablet Responsiveness */
  .flights-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    gap: 40px 28px;
    margin-top: 50px;
  }

  /* Team Section Tablet Responsiveness */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  /* Adventure Section Tablet Responsiveness */
  .adventure-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .adventure-box {
    padding: 40px 24px;
  }

  /* Volcano Section Tablet Responsiveness */
  .volcano-section {
    min-height: 60vh;
    padding: 60px 32px;
    background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0) 20%, rgba(15, 23, 42, 0.45) 100%), url('../new-img/volcano-sky.jpg');
  }

  /* Next Level Section Tablet Responsiveness */
  .nextlevel-section {
    padding: 80px 24px;
  }
}

@media (max-width: 768px) {
  .intro-section {
    padding: 80px 20px;
  }

  /* Shift dock to a fixed bar on mobile or adjust size */
  .floating-dock {
    right: 12px;
  }

  /* Flights Section Mobile Responsiveness */
  .flights-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 50px auto 0;
    gap: 50px;
  }

  .flights-section {
    padding: 80px 20px;
  }

  /* Team Section Mobile Responsiveness */
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 48px;
  }

  .team-section {
    padding: 80px 20px;
  }

  /* Adventure Section Mobile Responsiveness */
  .adventure-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
    gap: 24px;
  }

  .adventure-section {
    padding: 80px 20px;
  }

  /* Volcano Section Mobile Responsiveness */
  .volcano-section {
    min-height: 55vh;
    padding: 60px 24px;
    background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0) 10%, rgba(15, 23, 42, 0.55) 100%), url('../new-img/volcano-sky.jpg');
  }

  .volcano-container {
    justify-content: center;
  }

  .volcano-content {
    max-width: 480px;
    text-align: center;
    align-items: center;
  }

  .volcano-divider {
    margin: 0 auto 24px;
  }

  /* Next Level Section Mobile Responsiveness */
  .nextlevel-section {
    padding: 80px 20px;
  }
}
/* Special Flights Section */
.special-flights-section {
  padding: 80px 0;
  background-color: #fff;
}

.special-flights-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto 40px auto;
}

.special-flights-header .special-col:first-child {
  grid-column: span 2;
}

.special-title {
  font-size: 28px;
  font-weight: 700;
  color: #2b3a4a;
  text-transform: uppercase;
}

.highlight-feature span {
  color: #b08d55;
  font-weight: 600;
}

@media (max-width: 991px) {
  .special-flights-header {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
  }
  .add-ons-col {
    margin-top: 20px;
  }
}
