/* --- SELF-HOSTED FONTS (previously loaded from Google's CDN, which sends
   every visitor's IP address to Google without consent — a real GDPR issue
   in Germany, see LG München I, 3 O 17493/20). Font files now live locally
   in assets/fonts/, no external request is made, no consent banner needed
   for this. --- */
@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/dm-sans-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/dm-sans-latin-400-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/dm-sans-latin-500-normal.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/dm-sans-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/dm-sans-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins-latin-500-normal.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- LUXURY DESIGN SYSTEM VARIABLES --- */
:root {
  --navy-blue: #0b172a;
  --navy-blue-rgb: 11, 23, 42;
  --luxury-gold: #D4AF37;
  --luxury-gold-rgb: 212, 175, 55;
  --gold-hover: #E5C158;
  --gold-light: #F7E7C4;
  --bg-white: #FFFFFF;
  --bg-light-gray: #F8F9FA;
  --text-dark: #222222;
  --text-muted: #666666;
  --text-light: #FFFFFF;
  --success-green: #28A745;
  --danger-red: #DC3545;
  
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.04), 0 5px 15px rgba(0, 0, 0, 0.02);
  --shadow-gold: 0 10px 20px rgba(212, 175, 55, 0.2);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
  
  --border-glass: 1px solid rgba(255, 255, 255, 0.12);
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 10px;
}

/* --- RESET & BASE STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy-blue);
  line-height: 1.25;
}

p {
  color: var(--text-muted);
}

.text-gold {
  color: var(--luxury-gold);
}

.section-tag {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--luxury-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3.5rem auto;
  font-weight: 400;
}

.section-subtitle-left {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 0 2rem 0;
  text-align: left;
}

/* --- REUSABLE COMPONENTS & UTILITIES --- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: var(--transition-bounce);
  text-decoration: none;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--luxury-gold);
  color: var(--navy-blue);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--bg-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--luxury-gold);
  border: 1.5px solid var(--luxury-gold);
}

.btn-outline-gold:hover {
  background-color: var(--luxury-gold);
  color: var(--navy-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-phone {
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--bg-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
}

.btn-outline-phone:hover {
  border-color: var(--luxury-gold);
  color: var(--luxury-gold);
}

/* --- GLASSMORPHISM CARD UTILITIES --- */
.glass-panel {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: var(--border-glass);
  box-shadow: var(--shadow-glass);
  border-radius: var(--border-radius-lg);
}

.glass-panel-dark {
  background: rgba(11, 23, 42, 0.72);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-glass);
  border-radius: var(--border-radius-lg);
}

/* --- CAPSULE FLOATING NAVIGATION BAR --- */
.header {
  position: fixed;
  top: 15px;
  left: 10%;
  width: 80%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 0.65rem 2rem;
  background: rgba(11, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
}

@media (max-width: 1200px) {
  .header {
    width: 90%;
    left: 5%;
  }
}

.header.scrolled {
  top: 8px;
  background-color: rgba(11, 23, 42, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  padding: 0.5rem 2rem;
  border-color: rgba(212, 175, 55, 0.2);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 72%);
  padding: 4px 20px;
  border-radius: 4px;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bg-white);
  line-height: 1;
}

.logo-text span {
  color: var(--luxury-gold);
}

.logo-slogan {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--luxury-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--luxury-gold);
  transition: var(--transition-smooth);
}

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

.nav-cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.burger-line {
  width: 100%;
  height: 2px;
  background-color: var(--bg-white);
  transition: var(--transition-smooth);
}

/* Responsive Capsule Menu */
@media (max-width: 1200px) {
  .burger-menu {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 70px;
    right: 5%;
    width: 90%;
    max-height: 0;
    overflow: hidden;
    background-color: rgba(11, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    flex-direction: column;
    padding: 0;
    gap: 1.25rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    z-index: 999;
  }
  
  .nav.active {
    max-height: 480px;
    padding: 2rem 1.5rem;
  }
  
  .burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1920&q=85') no-repeat center center/cover;
  padding-top: 160px;
  padding-bottom: 120px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 23, 42, 0.92) 0%, rgba(11, 23, 42, 0.65) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 4rem;
}

@media (max-width: 1200px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
}

.hero-content {
  color: var(--text-light);
}

.hero-badge {
  display: inline-block;
  background-color: rgba(212, 175, 55, 0.12);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.badge-tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--luxury-gold);
  letter-spacing: 2px;
}

.hero-title {
  font-size: 3.8rem;
  color: var(--bg-white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--luxury-gold);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.25rem;
  max-width: 580px;
  font-weight: 400;
}

@media (max-width: 992px) {
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
  .hero-trust-row {
    margin: 0 auto 2.5rem auto;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.trust-icon {
  color: var(--luxury-gold);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Trustpilot styling */
.trustpilot-widget {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
  .trustpilot-widget {
    justify-content: center;
  }
}

.tp-excellent {
  font-weight: 700;
  color: var(--bg-white);
}

.tp-stars {
  display: flex;
  gap: 2px;
}

.tp-star {
  color: #00b67a;
  font-size: 1rem;
}

.tp-meta {
  color: rgba(255, 255, 255, 0.6);
}

.tp-brand {
  font-weight: 600;
  color: var(--bg-white);
}

/* --- HERO SECTION MINI REAL REVIEWS --- */
.hero-reviews-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  max-width: 580px;
}

@media (max-width: 992px) {
  .hero-reviews-mini {
    margin: 2rem auto 0 auto;
  }
}

@media (max-width: 576px) {
  .hero-reviews-mini {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.hero-review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: left;
  transition: var(--transition-smooth);
}

.hero-review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.hero-review-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.hero-review-user .avatar-initials {
  width: 32px;
  height: 32px;
  font-size: 0.8rem;
  border: 1px solid var(--luxury-gold);
}

.hero-review-user strong {
  font-size: 0.8rem;
  color: #fff;
  display: block;
}

.hero-review-user span {
  font-size: 0.65rem;
  color: var(--luxury-gold);
}

.hero-review-card p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  font-style: italic;
}

/* --- VERTICAL SEARCH CARD (Apple Glass style) --- */
.quote-card-wrapper {
  perspective: 1000px;
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.quote-card-container {
  position: relative;
  width: 100%;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-style: preserve-3d;
}

.quote-card-container.flipped {
  transform: rotateY(180deg);
}

.quote-card-front, .quote-card-back {
  width: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* Fix: iOS Safari sometimes fails to repaint text nodes inside a
     backface-visibility:hidden element after a 3D rotateY flip completes.
     Forcing this element onto its own compositing layer via translateZ(0)
     makes WebKit repaint it correctly instead of leaving text unpainted. */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.quote-card-back {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateY(180deg) translateZ(0);
  -webkit-transform: rotateY(180deg) translateZ(0);
}

/* Safari doesn't always honor backface-visibility on elements that have
   their own background/box-shadow (like buttons), so the front face can
   visibly bleed through underneath the shorter back face once flipped.
   Force it fully out of the render tree as a belt-and-braces fix. */
.quote-card-container.flipped .quote-card-front {
  visibility: hidden;
}
.quote-card-container:not(.flipped) .quote-card-back {
  visibility: hidden;
}

/* Mobile Safari has a persistent, hard-to-kill bug where text nodes fail
   to repaint inside 3D-transformed (rotateY) elements with
   backface-visibility:hidden — translateZ(0) alone doesn't always fix it.
   Rather than keep fighting that rendering bug, disable the 3D flip
   entirely on small screens and swap the two panels with plain
   show/hide instead. Visually simpler (no flip animation) but 100%
   reliable on mobile. Desktop keeps the flip animation as before. */
@media (max-width: 768px) {
  .quote-card-container {
    transform: none !important;
    transition: none !important;
  }

  .quote-card-front, .quote-card-back {
    position: relative;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
    transform: none !important;
    -webkit-transform: none !important;
  }

  .quote-card-back {
    position: absolute;
    top: 0;
    left: 0;
  }

  .quote-card-container:not(.flipped) .quote-card-front {
    display: block;
    visibility: visible;
  }
  .quote-card-container:not(.flipped) .quote-card-back {
    display: none;
    visibility: hidden;
  }
  .quote-card-container.flipped .quote-card-front {
    display: none;
    visibility: hidden;
  }
  .quote-card-container.flipped .quote-card-back {
    display: block;
    position: relative;
    visibility: visible;
  }
}

.search-card-vertical {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  padding: 2.25rem;
  color: var(--text-dark);
}

.search-card-vertical h3 {
  font-size: 1.5rem;
  color: var(--navy-blue);
  text-align: center;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.trip-types-vertical {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  padding: 0.25rem;
  margin-bottom: 1.5rem;
}

.trip-tab-v {
  background: transparent;
  border: none;
  padding: 0.5rem 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.trip-tab-v.active {
  background: var(--luxury-gold);
  color: var(--navy-blue);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.25);
}

.vertical-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  position: relative;
}

.vertical-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.v-icon {
  position: absolute;
  left: 12px;
  font-size: 0.9rem;
  pointer-events: none;
  line-height: 1;
}

.input-container input, .input-container select {
  width: 100%;
  padding: 0.7rem 0.75rem 0.7rem 2.5rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background-color: #ffffff;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition-smooth);
}

.input-container select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 2.2rem;
  padding-left: 2.5rem;
}

.input-container select:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.input-container input:focus, .input-container select:focus {
  border-color: var(--luxury-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.swap-btn {
  position: absolute;
  right: 10px;
  background: var(--bg-light-gray);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-weight: 700;
  outline: none;
  z-index: 5;
}

.swap-btn:hover {
  background: var(--luxury-gold);
  color: var(--navy-blue);
}

/* Autocomplete suggestions dropdown styling */
.autocomplete-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
  display: none;
}

.suggestion-item {
  padding: 0.65rem 0.85rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.suggestion-item:hover {
  background-color: var(--bg-light-gray);
  color: var(--luxury-gold);
}

.suggestion-code {
  font-weight: 700;
  color: var(--luxury-gold);
}

.vertical-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.budget-slider-block {
  padding: 0.5rem 0;
}

.budget-slider-block input[type="range"] {
  width: 100%;
  accent-color: var(--luxury-gold);
}

.budget-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.search-btn-submit {
  width: 100%;
  padding: 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  margin-top: 0.5rem;
}

/* --- TRUST RIBBON --- */
.trust-ribbon {
  background-color: var(--bg-white);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ribbon-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .ribbon-container {
    justify-content: center;
  }
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-blue);
}

.ribbon-icon {
  font-size: 1.1rem;
}

/* --- BOOKING AND AIRLINES ROW --- */
.booking-airlines {
  padding: 2.5rem 0;
  background-color: var(--navy-blue);
  color: var(--text-light);
}

.live-booking-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.live-activity-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #28a745;
  box-shadow: 0 0 10px #28a745;
  animation: pulseGreen 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseGreen {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.live-booking-content {
  flex: 1;
}

.live-activity-title {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--luxury-gold);
  letter-spacing: 1px;
  display: block;
}

.live-booking-content p {
  color: #fff;
  font-size: 0.85rem;
  margin: 2px 0 0 0;
}

.time-ago {
  opacity: 0.5;
  font-size: 0.8rem;
}

.dismiss-alert-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.95rem;
  cursor: pointer;
  outline: none;
}

.dismiss-alert-btn:hover {
  color: #fff;
}

.airline-logos-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.airlines-title {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--luxury-gold);
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.airlines-logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- WHY ARE WE CHEAPER & REAL SAVINGS --- */
.why-cheaper {
  padding: 8rem 0;
  background-color: var(--bg-white);
}

.cheaper-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
}

@media (max-width: 1200px) {
  .cheaper-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.cheaper-text {
  text-align: left;
}

.cheaper-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.cheaper-feat-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feat-bullet {
  color: var(--luxury-gold);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
}

.cheaper-feat-item strong {
  display: block;
  font-size: 1rem;
  color: var(--navy-blue);
  margin-bottom: 2px;
}

.cheaper-feat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Real savings box on the right */
.cheaper-savings-box {
  background-color: var(--navy-blue);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  box-shadow: 0 20px 40px rgba(11, 23, 42, 0.2);
}

.savings-box-title {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.75rem;
  text-align: left;
}

.savings-cards-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.savings-row-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.savings-route-header {
  display: flex;
  flex-direction: column;
}

.savings-route-header strong {
  font-size: 1.1rem;
  color: #fff;
}

.savings-route-header span {
  font-size: 0.75rem;
  color: var(--luxury-gold);
  text-transform: uppercase;
  font-weight: 600;
}

.savings-prices {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.savings-prices .lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  display: block;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1px;
}

.savings-prices .val {
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.savings-prices .val.gold {
  color: var(--luxury-gold);
}

.savings-badge {
  background-color: rgba(40, 167, 69, 0.15);
  color: var(--success-green);
  border: 1px solid rgba(40, 167, 69, 0.25);
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.savings-box-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  font-size: 0.95rem;
}

/* --- POPULAR DESTINATIONS --- */
.destinations {
  padding: 8rem 0;
  background-color: var(--bg-light-gray);
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.destination-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 3/2.2;
  cursor: pointer;
  box-shadow: var(--shadow-premium);
}

.destination-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-card:hover .destination-img {
  transform: scale(1.1) rotate(0.5deg);
}

.destination-overlay-v2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(11, 23, 42, 0.1) 40%, rgba(11, 23, 42, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: #fff;
  text-align: left;
}

.destination-overlay-v2 h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.destination-overlay-v2 p {
  color: var(--luxury-gold);
  font-size: 0.85rem;
  font-weight: 600;
}

/* --- WHY CHOOSE US V3 CARDS --- */
.why-card-v3 {
  background: var(--bg-light-gray);
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid rgba(11, 23, 42, 0.04);
  transition: var(--transition-bounce);
  text-align: left;
}

.why-card-v3:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  background-color: #fff;
}

.v3-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.why-card-v3 strong {
  display: block;
  font-size: 1rem;
  color: var(--navy-blue);
  margin-bottom: 0.35rem;
}

.why-card-v3 p {
  font-size: 0.85rem;
  line-height: 1.45;
}

/* --- CHEAPER FLIGHT UPLOADER & HOT DEALS --- */
.uploader-blue-panel {
  background-color: var(--navy-blue);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  color: #fff;
  box-shadow: 0 20px 40px rgba(11, 23, 42, 0.25);
  text-align: left;
}

.tag-gold {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--luxury-gold);
  font-weight: 700;
  letter-spacing: 2px;
}

.upload-dropzone {
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.upload-dropzone:hover {
  border-color: var(--luxury-gold);
  background-color: rgba(255, 255, 255, 0.05);
}

.hot-deals-panel {
  background-color: #0d1e36;
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  color: #fff;
  box-shadow: 0 20px 40px rgba(11, 23, 42, 0.2);
  text-align: left;
}

.hot-deals-rows {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hot-deal-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 1rem 1.25rem;
}

@media (max-width: 480px) {
  .hot-deal-row {
    grid-template-columns: 1.2fr 1fr;
    gap: 0.75rem;
  }
  .hot-deal-row div:nth-child(2) {
    grid-column: span 2;
    text-align: left !important;
  }
}

/* --- CONCIERGE STEPS ROW --- */
.concierge-steps-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 992px) {
  .concierge-steps-row {
    flex-direction: column;
    gap: 2.5rem;
  }
  .concierge-arrow {
    display: none !important;
  }
}

.concierge-step-card {
  flex: 1;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.concierge-step-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 1.5px solid var(--luxury-gold);
  background-color: rgba(212, 175, 55, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.concierge-step-card strong {
  font-size: 1.1rem;
  color: var(--navy-blue);
  margin-bottom: 0.5rem;
  display: block;
}

.concierge-step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.concierge-arrow {
  font-size: 1.5rem;
  color: var(--luxury-gold);
  opacity: 0.5;
  flex-shrink: 0;
}

/* --- STATISTICS SECTION --- */
.statistics {
  background-color: var(--bg-white);
  padding: 5rem 0;
  border-bottom: 1px solid rgba(11, 31, 58, 0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
}

.stat-number {
  font-family: var(--font-heading);
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* --- FAQ SECTION --- */
.faq {
  padding: 8rem 0;
  background-color: var(--bg-light-gray);
}

.faq-wrapper {
  max-width: 800px;
  margin: 3.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.01);
  transition: var(--transition-smooth);
}

.faq-item.active {
  box-shadow: var(--shadow-premium);
  border-color: rgba(212, 175, 55, 0.15);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-blue);
  padding: 1.25rem 0;
  cursor: pointer;
  outline: none;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--luxury-gold);
}

.faq-icon {
  font-size: 0.75rem;
  color: var(--luxury-gold);
  transition: transform 0.4s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-content {
  padding: 0 0 1.25rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- CTA BANNER --- */
.cta-banner {
  position: relative;
  padding: 8rem 0;
  background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.cta-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 23, 42, 0.92) 0%, rgba(11, 23, 42, 0.7) 100%);
  z-index: 1;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner-title {
  font-size: 2.6rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.cta-banner-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

@media (max-width: 576px) {
  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-banner-actions .btn {
    width: 100%;
    max-width: 280px;
  }
  .cta-banner-title {
    font-size: 2rem;
  }
}

/* --- MODAL LEAD COLLECTION DIALOG --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 2.5rem;
  text-align: left;
  border-color: rgba(212, 175, 55, 0.25);
  animation: modalIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.15rem;
  cursor: pointer;
  outline: none;
}

.modal-close-btn:hover {
  color: #fff;
}

.modal-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.15rem;
}

.modal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.modal-form-row > div {
  display: flex;
  flex-direction: column;
}

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

.modal-form-group label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.modal-form-group input {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
}

.modal-form-group input:focus {
  border-color: var(--luxury-gold);
}

/* --- GREEN FLOATING WHATSAPP PILL --- */
.whatsapp-floating-bubble {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  border-radius: 30px;
  padding: 0.6rem 1.15rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  animation: pulseBubble 3s infinite;
}

@keyframes pulseBubble {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.whatsapp-floating-bubble:hover {
  background-color: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.wa-dot {
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  display: block;
}

.wa-text {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .whatsapp-floating-bubble {
    bottom: 16px;
    right: 16px;
    padding: 0.55rem 0.9rem;
  }
  .whatsapp-floating-bubble .wa-text {
    font-size: 0.72rem;
  }
}

/* --- FOOTER STYLING --- */
.footer {
  background-color: var(--navy-blue);
  color: var(--text-light);
  padding: 6rem 0 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.85rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--luxury-gold);
  color: var(--navy-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--luxury-gold);
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  display: block;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--luxury-gold);
  padding-left: 4px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-badges-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* --- SCROLL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Spin animation for loader */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-left-color: var(--luxury-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* --- RESPONSIVE MOBILE OPTIMIZATION OVERRIDES --- */
@media (max-width: 992px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 70px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  .section-title {
    font-size: 2.1rem;
    letter-spacing: -0.25px;
  }
  .section-subtitle {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .search-card-vertical {
    padding: 1.75rem 1.25rem;
  }
  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .cheaper-savings-box {
    padding: 2rem 1.25rem !important;
  }
  .uploader-blue-panel, .hot-deals-panel {
    padding: 2rem 1.5rem !important;
  }
}

/* --- LIVE BOOKING TOAST POPUP (Bottom Left) --- */
.live-toast-popup {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: rgba(11, 23, 42, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--border-radius-md);
  padding: 1rem 1.25rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 320px;
  transform: translateY(150px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
  pointer-events: none;
}

.live-toast-popup.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-dot {
  width: 10px;
  height: 10px;
  background-color: var(--success-green);
  box-shadow: 0 0 10px var(--success-green);
  border-radius: 50%;
  animation: pulseGreen 2s infinite;
  flex-shrink: 0;
}

.toast-body {
  flex: 1;
  text-align: left;
}

.toast-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--luxury-gold);
  letter-spacing: 1.5px;
  display: block;
}

.toast-body p {
  color: #fff;
  font-size: 0.85rem;
  margin-top: 2px;
  line-height: 1.4;
}

.toast-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.1rem;
  cursor: pointer;
  outline: none;
  line-height: 1;
}

.toast-close:hover {
  color: #fff;
}

@media (max-width: 576px) {
  .live-toast-popup {
    width: calc(100% - 30px);
    left: 15px;
    bottom: 15px;
  }
}

/* --- AUTO SLIDE LOGOS MARQUEE (TRUSTED BY AIRLINES) --- */
.logo-marquee {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  position: relative;
  padding: 2rem 0;
  display: flex;
}

.logo-marquee::before, .logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--navy-blue) 0%, rgba(11, 23, 42, 0) 100%);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--navy-blue) 0%, rgba(11, 23, 42, 0) 100%);
}

.logo-marquee-content {
  display: inline-block;
  animation: logoMarqueeScroll 55s linear infinite;
  white-space: nowrap;
}

.logo-marquee-content img {
  height: 28px;
  width: auto;
  margin: 0 3.25rem;
  vertical-align: middle;
  transition: var(--transition-smooth);
  object-fit: contain;
}

/* Make logos semi-transparent white (remove original black/white backgrounds) */
.logo-marquee-content img {
  filter: invert(1) grayscale(1) brightness(1.2);
  mix-blend-mode: screen;
  opacity: 0.65;
}

.logo-marquee-content .airline-name {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 1.75rem;
  vertical-align: middle;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.logo-marquee-content .airline-name::before {
  content: "✈";
  font-size: 0.85rem;
  color: rgba(212, 175, 55, 0.55);
  transform: none;
  display: inline-block;
}

.logo-marquee-content .airline-name::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.5);
  margin-left: 1.75rem;
}

.logo-marquee-content .airline-name:hover {
  color: var(--luxury-gold);
}

.logo-marquee-content .airline-name:hover::before {
  color: var(--luxury-gold);
}

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

/* --- HOW WE ARE LOWEST SECRETS --- */
.lowest-secrets-section {
  background-color: var(--bg-light-gray);
  padding: 8rem 0;
  border-top: 1px solid rgba(11, 31, 58, 0.05);
  border-bottom: 1px solid rgba(11, 31, 58, 0.05);
}

.secrets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.secret-card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 2rem;
  text-align: left;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-bounce);
}

.secret-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(11, 23, 42, 0.08);
  border-color: rgba(212, 175, 55, 0.2);
}

.secret-icon-wrapper {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.1);
}

.secret-card h3 {
  font-size: 1.15rem;
  color: var(--navy-blue);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.secret-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .secrets-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .secret-card {
    padding: 2rem;
  }
}

/* --- MOBILE CARD BLUR FIX --- */
@media (max-width: 576px) {
  .search-card-vertical {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #ffffff !important;
  }
  
  .logo-marquee-content img {
    margin: 0 1.5rem;
    height: 22px;
  }
}
/* --- MOBILITY OPTIMIZATION FOR SEARCH INPUTS --- */
@media (max-width: 480px) {
  .vertical-grid-2 {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* --- TESTIMONIAL CAROUSEL NAVIGATION --- */
.carousel-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.25rem;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-smooth);
}

.carousel-dot.active {
  width: 24px;
  border-radius: 4px;
  background-color: var(--luxury-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.carousel-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  outline: none;
}

.carousel-arrow-btn:hover {
  background-color: var(--luxury-gold);
  border-color: var(--luxury-gold);
  color: var(--navy-blue);
  box-shadow: var(--shadow-gold);
}

/* --- COOKIE / CONSENT BANNER --- */
.consent-banner {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 9999;
  max-width: 380px;
  background: var(--navy-blue);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  padding: 1.5rem;
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.35s ease;
}

.consent-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.consent-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.consent-banner-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0;
}

.consent-banner-text a {
  color: var(--luxury-gold);
  text-decoration: underline;
}

.consent-banner-actions {
  display: flex;
  gap: 0.65rem;
}

.consent-btn-reject,
.consent-btn-accept {
  flex: 1;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  border-radius: 30px;
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 640px) {
  .consent-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: none;
  }
}

/* --- ILLUSTRATIVE TESTIMONIAL AVATAR (initials, no stock photos of unrelated people) --- */
.avatar-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--luxury-gold), var(--gold-hover));
  color: var(--navy-blue);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* --- CONFIRMATION PANEL POLISH --- */
.success-icon-pulse {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--luxury-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--luxury-gold);
  margin: 0 auto;
  position: relative;
  animation: success-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon-pulse::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  animation: success-ring 1.6s ease-out infinite;
}

@keyframes success-pop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes success-ring {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}

.confirmation-trip-summary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin-bottom: 1.5rem;
}

.confirmation-route-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.confirmation-route-arrow {
  color: var(--luxury-gold);
  font-size: 0.9rem;
}

.confirmation-trip-details {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.confirmation-dot {
  color: rgba(255, 255, 255, 0.3);
}

.confirmation-timeline {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.confirmation-timeline-step {
  display: flex;
  gap: 0.85rem;
  position: relative;
  padding-bottom: 1.1rem;
}

.confirmation-timeline-step:last-child {
  padding-bottom: 0;
}

.confirmation-timeline-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 16px;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.confirmation-timeline-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  margin-top: 3px;
}

.confirmation-timeline-step.active .confirmation-timeline-dot {
  background: var(--luxury-gold);
  border-color: var(--luxury-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.confirmation-timeline-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.confirmation-timeline-text strong {
  font-size: 0.85rem;
  color: #fff;
}

.confirmation-timeline-text span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

/* --- MODAL SCREENSHOT UPLOAD FIELD --- */
.modal-upload-dropzone {
  border: 1.5px dashed rgba(212, 175, 55, 0.35);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

.modal-upload-dropzone:hover {
  border-color: var(--luxury-gold);
  background: rgba(212, 175, 55, 0.05);
}

.modal-upload-dropzone.has-file {
  border-color: var(--luxury-gold);
  color: var(--luxury-gold);
  font-weight: 600;
}
