/* --- 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: #030f1f;
  --navy-blue-rgb: 3, 15, 31;
  --luxury-gold: #d8b35d;
  --luxury-gold-rgb: 216, 179, 93;
  --gold-hover: #e6ca82;
  --gold-light: #f1e2bc;
  --bg-white: #fbfaf7;
  --bg-light-gray: #eef1f4;
  --text-dark: #102234;
  --text-muted: #5d6a76;
  --text-light: #ffffff;
  --accent-burgundy: #7b2438;
  --accent-blue: #2f6fa3;
  --success-green: #54735b;
  --danger-red: #9f3d46;
  
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', sans-serif;
  
  --transition-smooth: all 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-bounce: all 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-premium: 0 24px 60px rgba(2, 10, 22, 0.08), 0 6px 18px rgba(2, 10, 22, 0.04);
  --shadow-gold: 0 12px 28px rgba(216, 179, 93, 0.18);
  --shadow-glass: 0 24px 70px rgba(0, 0, 0, 0.32);
  
  --border-glass: 1px solid rgba(255, 255, 255, 0.12);
  --border-radius-lg: 18px;
  --border-radius-md: 12px;
  --border-radius-sm: 8px;
  --header-offset: 88px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  scroll-padding-top: calc(var(--header-offset) + 18px);
}

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: 500;
  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: 0.24em;
  color: #795a2d;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(2.25rem, 4vw, 3.35rem);
  margin-bottom: 1rem;
  letter-spacing: -0.035em;
}

.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;
  }
}

/* Account-first quote flow */
.search-card-vertical {
  position: relative;
}

.quote-auth-lock {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--text-dark);
  background: rgba(251, 250, 247, 0.96);
  border-radius: inherit;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.quote-auth-lock.visible {
  display: flex;
}

.quote-auth-lock-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1rem;
  border: 1px solid rgba(216, 179, 93, 0.45);
  border-radius: 50%;
  background: rgba(216, 179, 93, 0.12);
  font-size: 1.5rem;
}

.quote-auth-lock strong {
  max-width: 320px;
  color: var(--navy-blue);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 600;
}

.quote-auth-lock p {
  max-width: 340px;
  margin: 0.65rem 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.quote-auth-lock small {
  max-width: 340px;
  margin-top: 0.9rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  line-height: 1.4;
}

.marketing-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0.9rem 0 0.25rem;
  text-align: left;
}

.marketing-consent-row input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--luxury-gold);
}

.marketing-consent-row label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  line-height: 1.45;
  cursor: pointer;
}

.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;
  min-height: 44px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition-bounce);
  text-decoration: none;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, #d2b77f 0%, var(--luxury-gold) 100%);
  color: var(--navy-blue);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(216, 179, 93, 0.25);
}

.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(-2px);
}

.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(3, 15, 31, 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: 10px;
  left: 10%;
  width: 80%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 0.38rem 1.25rem;
  background: rgba(3, 15, 31, 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: 1400px) {
  .header {
    width: 94%;
    left: 3%;
  }
}

.header.scrolled {
  top: 6px;
  background-color: rgba(3, 15, 31, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  padding: 0.28rem 1.15rem;
  border-color: rgba(216, 179, 93, 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: 34px;
  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: 3px 14px;
  border-radius: 4px;
}

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

.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: 1rem;
}

.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.45rem 1.1rem;
  font-size: 0.85rem;
  min-height: 44px;
}

/* Clearly visible bilingual control in the dark navigation bar. */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  flex: 0 0 auto;
  padding: 3px;
  margin: 0 0.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(216, 179, 93, 0.58);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lang-toggle-icon {
  flex: 0 0 auto;
  margin: 0 0.25rem 0 0.4rem;
  color: var(--luxury-gold);
}

.lang-toggle-btn {
  min-width: 34px;
  height: 28px;
  padding: 0 0.55rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font: 700 0.72rem/1 var(--font-body);
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lang-toggle-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.lang-toggle-btn.active {
  background: var(--luxury-gold);
  color: var(--navy-blue);
  box-shadow: 0 3px 12px rgba(216, 179, 93, 0.28);
}

.lang-toggle-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.region-toggle {
  min-height: 34px;
  padding: 0.35rem 0.62rem;
  border: 1px solid rgba(216, 179, 93, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #f5e8bd;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.region-toggle:hover,
.region-toggle:focus-visible {
  border-color: var(--gold-primary);
  background: rgba(216, 179, 93, 0.12);
  transform: translateY(-1px);
  outline: none;
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  padding: 14px 11px;
  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: 1400px) {
  .burger-menu {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: calc(var(--header-offset) + 10px);
    right: 5%;
    width: 90%;
    max-height: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    background-color: rgba(3, 15, 31, 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 1.25rem;
    gap: 0.15rem;
    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: min(78vh, 680px);
    overflow-y: auto;
    padding: 1rem 1.25rem 1.35rem;
  }

  .nav .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .nav .nav-link::after {
    display: none;
  }

  .nav .lang-toggle,
  .nav .region-toggle {
    margin: 0.4rem 0;
  }

  .nav .nav-phone,
  .nav .nav-cta {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    margin-top: 0.2rem;
  }

  .lang-toggle-btn {
    min-width: 44px;
    height: 36px;
  }

  .region-toggle {
    min-height: 44px;
    padding: 0.45rem 0.9rem;
  }
  
  .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: auto;
  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: 108px;
  padding-bottom: 72px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(3, 15, 31, 0.92) 0%, rgba(3, 15, 31, 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(216, 179, 93, 0.12);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(216, 179, 93, 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(216, 179, 93, 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: 1rem;
  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;
  min-height: 44px;
  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(216, 179, 93, 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(216, 179, 93, 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;
  min-height: 48px;
  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: 5rem 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(3, 15, 31, 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: 5rem 0;
  background-color: var(--bg-light-gray);
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.75rem;
  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;
  min-height: 168px;
  background: #152232;
  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(3, 15, 31, 0.1) 40%, rgba(3, 15, 31, 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(3, 15, 31, 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(3, 15, 31, 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: #1a1513;
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  color: #fff;
  box-shadow: 0 20px 40px rgba(3, 15, 31, 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(216, 179, 93, 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 --- */
.why-us,
.price-match,
.concierge-works {
  padding: 5rem 0;
}

.price-match {
  background-color: var(--bg-light-gray);
}

.concierge-works {
  background-color: var(--bg-white);
  text-align: center;
}

.statistics {
  background-color: var(--bg-white);
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(3, 15, 31, 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: 5rem 0;
  background-color: var(--bg-light-gray);
}

.faq-wrapper {
  max-width: 800px;
  margin: 2rem 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(216, 179, 93, 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;
  min-height: 48px;
  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.98rem;
  color: #334352;
  line-height: 1.7;
}

/* --- CTA BANNER --- */
.cta-banner {
  position: relative;
  padding: 5rem 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(3, 15, 31, 0.92) 0%, rgba(3, 15, 31, 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(3, 15, 31, 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;
  overflow-y: auto;
}

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

.modal-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  text-align: left;
  border-color: rgba(216, 179, 93, 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: var(--navy-blue);
  border: 1px solid rgba(216, 179, 93, 0.5);
  border-radius: 999px;
  padding: 0.6rem 1.15rem;
  min-height: 44px;
  box-shadow: 0 10px 28px rgba(3, 15, 31, 0.35);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

.whatsapp-floating-bubble:hover {
  background-color: #07182c;
  border-color: var(--luxury-gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(3, 15, 31, 0.42);
}

.whatsapp-floating-bubble.is-hidden,
body.has-consent-banner .whatsapp-floating-bubble,
body.nav-open .whatsapp-floating-bubble {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
}

.wa-dot {
  width: 8px;
  height: 8px;
  background-color: var(--luxury-gold);
  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.9rem;
  color: rgba(255, 255, 255, 0.78);
  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.84);
  text-decoration: none;
  font-size: 0.92rem;
  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.82rem;
  color: rgba(255, 255, 255, 0.68);
}

.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: 96px;
    padding-bottom: 48px;
  }
}

@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(3, 15, 31, 0.95);
  border: 1px solid rgba(216, 179, 93, 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(3, 15, 31, 0) 100%);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--navy-blue) 0%, rgba(3, 15, 31, 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(216, 179, 93, 0.55);
  transform: none;
  display: inline-block;
}

.logo-marquee-content .airline-name::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(216, 179, 93, 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: 5rem 0;
  border-top: 1px solid rgba(3, 15, 31, 0.05);
  border-bottom: 1px solid rgba(3, 15, 31, 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(3, 15, 31, 0.08);
  border-color: rgba(216, 179, 93, 0.2);
}

.secret-icon-wrapper {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(216, 179, 93, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(216, 179, 93, 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 ---
   Forces the actual search-form card to a solid white fallback on small
   screens (disabling backdrop-filter, which some mobile browsers render
   unreliably). Deliberately excludes .search-loader and
   .confirmation-panel — those two reuse .search-card-vertical for layout
   only and need to stay dark (their text is white), so this must not
   clobber their own background. */
@media (max-width: 576px) {
  .search-card-vertical:not(.search-loader):not(.confirmation-panel) {
    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(216, 179, 93, 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(216, 179, 93, 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;
  min-height: 44px;
  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(216, 179, 93, 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(216, 179, 93, 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(216, 179, 93, 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(216, 179, 93, 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(216, 179, 93, 0.05);
}

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

/* ========================================================================== 
   ROSE VOYAGE — DEEP MIDNIGHT NAVY TRUST REFINEMENT
   Restrained contrast, editorial typography and quieter motion replace the
   brighter generic booking-site treatment while preserving every layout.
   ========================================================================== */
body {
  background:
    radial-gradient(circle at 8% 4%, rgba(216, 179, 93, 0.07), transparent 24rem),
    var(--bg-white);
}

::selection {
  background: var(--accent-burgundy);
  color: var(--text-light);
}

.header {
  background: linear-gradient(180deg, rgba(3, 15, 31, 0.96), rgba(3, 15, 31, 0.82));
  border-bottom: 1px solid rgba(216, 179, 93, 0.16);
}

.header.scrolled {
  background: rgba(3, 15, 31, 0.97);
  border-bottom-color: rgba(216, 179, 93, 0.24);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.nav-link {
  letter-spacing: 0.035em;
}

.hero {
  min-height: auto;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 24%, rgba(123, 36, 56, 0.42), transparent 34%),
    linear-gradient(102deg, rgba(3, 15, 31, 0.97) 0%, rgba(3, 15, 31, 0.87) 46%, rgba(3, 15, 31, 0.62) 100%);
}

.hero-badge {
  background: rgba(216, 179, 93, 0.09);
  border-color: rgba(216, 179, 93, 0.34);
  border-radius: 4px;
  padding: 0.45rem 0.8rem;
}

.badge-tag {
  font-weight: 600;
  letter-spacing: 0.2em;
}

.hero-title {
  font-size: clamp(3rem, 5.5vw, 5.25rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-title span {
  color: #d2b77f;
  font-style: italic;
}

.hero-subtitle {
  max-width: 650px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.76);
}

.hero-review-card,
.live-booking-box {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(216, 179, 93, 0.15);
  border-radius: 8px;
}

.search-card-vertical {
  background: rgba(255, 255, 255, 0.975);
  border: 1px solid rgba(216, 179, 93, 0.32);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.38);
  border-radius: 16px;
}

.search-card-vertical::before {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  margin: 0 auto 1.25rem;
  background: var(--luxury-gold);
}

.search-card-vertical h3 {
  font-size: 1.75rem;
  letter-spacing: -0.025em;
}

.trip-tab-v,
.vertical-form-group input,
.vertical-form-group select,
.modal-form-group input,
.modal-form-group select {
  border-radius: 7px;
}

.vertical-form-group input,
.vertical-form-group select {
  background: #fffdf9;
  border-color: rgba(16, 34, 52, 0.14);
}

.vertical-form-group input:focus,
.vertical-form-group select:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(47, 111, 163, 0.12);
}

.trust-ribbon {
  background: #edf2f7;
  border-color: rgba(16, 34, 52, 0.08);
}

.booking-airlines,
.footer {
  background:
    radial-gradient(circle at 15% 10%, rgba(123, 36, 56, 0.26), transparent 30rem),
    var(--navy-blue);
}

.why-cheaper,
.faq,
.legal-content-section,
.contact-section,
.about-section {
  background-color: var(--bg-white);
}

.destinations,
.statistics,
.lowest-secrets-section {
  background-color: var(--bg-light-gray) !important;
}

.cheaper-savings-box,
.uploader-blue-panel,
.hot-deals-panel,
.testimonials-box-v2 {
  background:
    radial-gradient(circle at 100% 0%, rgba(123, 36, 56, 0.42), transparent 18rem),
    linear-gradient(145deg, #0a2a4a 0%, #030f1f 100%);
  border: 1px solid rgba(216, 179, 93, 0.17);
  box-shadow: 0 32px 80px rgba(3, 15, 31, 0.18);
}

.savings-row-card,
.hot-deal-row {
  border-radius: 7px;
  border-color: rgba(216, 179, 93, 0.13);
}

.destination-card,
.why-card-v3,
.faq-item,
.legal-card,
.contact-card {
  border-radius: 10px;
}

.why-card-v3,
.faq-item,
.legal-card,
.contact-card {
  border-color: rgba(16, 34, 52, 0.08);
  box-shadow: 0 16px 40px rgba(3, 15, 31, 0.045);
}

.why-card-v3:hover,
.destination-card:hover,
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(3, 15, 31, 0.1);
}

.destination-card:hover .destination-img {
  transform: scale(1.045);
}

.destination-overlay-v2 {
  background: linear-gradient(to bottom, rgba(3, 15, 31, 0.05) 25%, rgba(3, 15, 31, 0.91) 100%);
}

.cta-banner-overlay {
  background:
    radial-gradient(circle at 78% 30%, rgba(123, 36, 56, 0.38), transparent 30%),
    linear-gradient(100deg, rgba(3, 15, 31, 0.96), rgba(3, 15, 31, 0.74));
}

.modal-overlay {
  background: rgba(2, 8, 18, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.modal-card,
.consent-banner-inner {
  border-color: rgba(216, 179, 93, 0.22);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.whatsapp-floating-bubble {
  filter: none;
}

.footer-col-title {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.18em;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- MOBILE RELIABILITY PASS --- */
.gate-message {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  line-height: 1.45;
}

.gate-message.error {
  padding: 0.7rem 0.8rem;
  color: #ffe2a8;
  background: rgba(159, 61, 70, 0.28);
  border: 1px solid rgba(255, 182, 190, 0.46);
  border-radius: 8px;
}

.gate-message.success {
  padding: 0.7rem 0.8rem;
  color: #dcf5df;
  background: rgba(84, 115, 91, 0.32);
  border: 1px solid rgba(177, 223, 183, 0.4);
  border-radius: 8px;
}

@media (max-width: 768px) {
  :root {
    --header-offset: 68px;
  }

  .header {
    top: max(8px, env(safe-area-inset-top));
    left: 0.75rem;
    width: calc(100% - 1.5rem);
    padding: 0.28rem 0.7rem;
    border-radius: 16px;
  }

  .header.scrolled {
    top: max(6px, env(safe-area-inset-top));
    padding: 0.22rem 0.7rem;
  }

  .logo-img,
  .header.scrolled .logo-img {
    height: 28px;
    padding: 2px 10px;
  }

  .nav {
    top: calc(var(--header-offset) + 8px);
    right: 0.75rem;
    width: calc(100% - 1.5rem);
  }

  .hero {
    min-height: 0;
    padding: calc(var(--header-offset) + 20px) 0 2.25rem;
  }

  .hero-container {
    gap: 1.5rem;
    text-align: left;
  }

  .hero-content {
    order: 1;
  }

  .quote-card-wrapper {
    order: 2;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.45rem);
    margin-bottom: 0.7rem;
  }

  .hero-subtitle {
    margin: 0 0 1rem;
    font-size: 0.95rem;
  }

  .hero-trust-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    margin: 0 0 1.1rem;
  }

  .hero-actions {
    margin-bottom: 1.25rem;
  }

  .hero-reviews-mini {
    margin-top: 1.1rem;
  }

  .search-card-vertical {
    padding: 1.25rem;
  }

  .search-card-vertical h3 {
    font-size: 1.28rem;
    margin-bottom: 1rem;
  }

  .vertical-form-group {
    margin-bottom: 0.75rem;
  }

  .input-container input,
  .input-container select {
    min-height: 48px;
    font-size: 16px;
  }

  /* Safari sometimes paints the custom SVG chevron as repeated marks. */
  .input-container select,
  .input-container select:focus {
    -webkit-appearance: menulist;
    appearance: menulist;
    background-image: none;
    padding-right: 0.65rem;
  }

  .trust-ribbon {
    padding: 1.1rem 0 1.35rem;
  }

  .ribbon-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem 0.7rem;
  }

  .ribbon-item {
    font-size: 0.74rem;
    line-height: 1.25;
    align-items: flex-start;
  }

  .whatsapp-floating-bubble {
    right: 0.85rem;
    bottom: calc(0.85rem + env(safe-area-inset-bottom));
    z-index: 950;
  }

  .why-cheaper,
  .destinations,
  .faq,
  .lowest-secrets-section,
  .cta-banner,
  .why-us,
  .statistics,
  .price-match,
  .concierge-works {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .footer {
    padding: 3.5rem 0 2.25rem;
  }

  .swap-btn {
    width: 32px;
    height: 32px;
  }

  .modal-overlay {
    align-items: flex-start;
    padding: max(1rem, env(safe-area-inset-top)) 1rem max(1.25rem, env(safe-area-inset-bottom));
    overflow-y: auto;
  }

  .modal-card {
    max-height: none;
    margin: auto 0;
    padding: 1.35rem;
    border-radius: 16px;
  }

  .account-modal-card {
    width: 100%;
  }

  .modal-close-btn {
    top: 12px;
    right: 12px;
  }

  .modal-form-group {
    margin-bottom: 0.8rem;
  }

  .modal-form-group input,
  .marketing-consent-row {
    font-size: 16px;
  }

  .marketing-consent-row label {
    font-size: 0.78rem;
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.45rem);
  }

  .search-card-vertical {
    border-radius: 12px;
  }
}

/* ==========================================================================
   TRUST / CONVERSION LAYOUT POLISH
   Compact sticky header offsets, CTA hierarchy, section rhythm, and
   readable supporting copy. Tokens stay navy / gold.
   ========================================================================== */
#home,
#quote-form-section,
#deals,
#destinations,
#why-choose-us,
#reviews,
#faq,
#contact {
  scroll-margin-top: calc(var(--header-offset) + 18px);
}

.lowest-secrets-section,
.price-match,
.concierge-works {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.destinations-grid {
  margin-top: 0 !important;
}

.destination-card.reveal {
  opacity: 1;
  transform: none;
}

.concierge-works .section-title {
  margin-bottom: 2rem;
}

.hero-actions .btn-secondary,
.cta-banner-actions .btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  box-shadow: none;
}

.hero-actions .btn-secondary:hover,
.cta-banner-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.9rem !important;
}

.footer-badges .trust-badges-list span {
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 0.8rem !important;
}

.wa-text {
  color: #f7f1df;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .lowest-secrets-section,
  .price-match,
  .concierge-works {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }

  .lowest-secrets-section .section-subtitle {
    margin-bottom: 2rem;
  }
}

/* --- BLOG SECTION STYLES --- */
.blog-hero {
  padding: 10rem 0 5rem 0;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, rgba(3, 15, 31, 0.98) 0%, rgba(3, 15, 31, 0.9) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-badge {
  display: inline-block;
  background-color: rgba(216, 179, 93, 0.12);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(216, 179, 93, 0.25);
}

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

.blog-title {
  font-size: 3.5rem;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

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

.blog-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-content-section {
  padding: 5rem 0 7rem 0;
  background-color: var(--navy-blue);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.blog-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  text-decoration: none;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 179, 93, 0.4);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 36px rgba(216, 179, 93, 0.1);
}

.blog-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

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

.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(3, 15, 31, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--luxury-gold);
  border: 1px solid rgba(216, 179, 93, 0.35);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 0.85rem;
}

.blog-card-meta time {
  color: rgba(255, 255, 255, 0.6);
}

.blog-card-title {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.35;
  font-weight: 600;
  transition: color 0.25s ease;
}

.blog-card:hover .blog-card-title {
  color: var(--luxury-gold);
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--luxury-gold);
}

/* --- BLOG POST DETAIL STYLES --- */
.post-hero {
  padding: 9.5rem 0 4.5rem 0;
  position: relative;
  background: linear-gradient(135deg, rgba(3, 15, 31, 0.98) 0%, rgba(3, 15, 31, 0.92) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.post-header-container {
  max-width: 860px;
  margin: 0 auto;
}

.post-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.post-breadcrumbs a {
  color: var(--luxury-gold);
  text-decoration: none;
}

.post-breadcrumbs a:hover {
  text-decoration: underline;
}

.post-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.post-lead {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.post-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.post-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.post-meta-item strong {
  color: #fff;
  font-weight: 500;
}

.post-featured-media {
  max-width: 960px;
  margin: 2.5rem auto 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.post-featured-media img {
  width: 100%;
  height: auto;
  display: block;
}

.post-featured-caption {
  padding: 0.75rem 1.25rem;
  background: rgba(3, 15, 31, 0.95);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.post-body-section {
  padding: 4.5rem 0 6rem 0;
  background-color: var(--navy-blue);
}

.post-layout {
  max-width: 860px;
  margin: 0 auto;
}

.post-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.post-content p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.6rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.post-content h2 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: #fff;
  margin: 2.5rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(216, 179, 93, 0.2);
}

.post-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--luxury-gold);
  margin: 2rem 0 0.85rem 0;
}

.post-content ul,
.post-content ol {
  margin: 0 0 1.6rem 1.5rem;
  color: rgba(255, 255, 255, 0.82);
}

.post-content li {
  margin-bottom: 0.6rem;
  line-height: 1.7;
}

.post-content strong {
  color: #fff;
}

.post-callout {
  background: rgba(216, 179, 93, 0.06);
  border-left: 4px solid var(--luxury-gold);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.post-callout p {
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
}

.post-callout p:last-child {
  margin-bottom: 0;
}

.post-callout strong {
  color: var(--luxury-gold);
}

.post-cta-card {
  background: linear-gradient(135deg, rgba(216, 179, 93, 0.12) 0%, rgba(8, 31, 55, 0.95) 100%);
  border: 1px solid rgba(216, 179, 93, 0.25);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  margin-top: 4rem;
  box-shadow: var(--shadow-premium);
}

.post-cta-card h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.post-cta-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin: 0 auto 1.75rem auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .blog-title {
    font-size: 2.35rem;
  }
  .blog-hero,
  .post-hero {
    padding: 7.5rem 0 3.5rem 0;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .post-title {
    font-size: 1.9rem;
  }
  .post-content {
    font-size: 0.98rem;
  }
  .post-cta-card {
    padding: 2.25rem 1.5rem;
  }
}

