/* ==========================================================================
   SkyScan - Ultra-Professional Multi-Page Airline Fares Portal
   ========================================================================== */

:root {
  --primary: #0052cc;
  --primary-dark: #003e99;
  --primary-hover: #0041a8;
  --primary-light: #e6f0ff;
  --secondary: #10b981;
  --secondary-hover: #059669;
  --accent-gold: #f59e0b;
  --accent-red: #ef4444;
  --dark: #0f172a;
  --dark-surface: #1e293b;
  --dark-muted: #334155;
  --gray-bg: #f8fafc;
  --gray-border: #cbd5e1;
  --gray-text: #64748b;
  --white: #ffffff;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.18);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: #f8fafc;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
}

button, input, select {
  font-family: inherit;
}

/* Container */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Top Announcement Header Bar */
.top-announcement {
  background: linear-gradient(90deg, #091e42 0%, #0f172a 50%, #1e3a8a 100%);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.65rem 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge-live-promo {
  background: var(--accent-red);
  color: var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-right: 0.5rem;
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
}

.top-phone-link {
  color: #fef08a;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.top-phone-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.top-trust-pill {
  color: #38bdf8;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Sticky Main Navigation Header */
.main-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid #e2e8f0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.header-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.25);
  border: 2px solid rgba(5, 150, 105, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-logo:hover .header-logo-img {
  transform: scale(1.06) rotate(3deg);
  box-shadow: 0 6px 18px rgba(5, 150, 105, 0.35);
}

.brand-logo-text {
  color: #0f172a;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.brand-logo-text .logo-highlight {
  color: #059669;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-muted);
  transition: var(--transition);
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.header-phone-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-meta {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.phone-meta-label {
  font-size: 0.725rem;
  color: var(--gray-text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phone-meta-number {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}

.btn-header-call {
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
  color: var(--white);
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.28);
}

.btn-header-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 82, 204, 0.38);
}

/* ==========================================================================
   Refined Premium 2-Column Split Hero Section (Ultra-High-Converting & Clean)
   ========================================================================== */

.hero-wrapper-split-refined {
  position: relative;
  padding: 4.5rem 0 5.5rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.82) 0%, rgba(30, 58, 138, 0.88) 100%), 
              url('https://images.pexels.com/photos/2026324/pexels-photo-2026324.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
  color: var(--white);
  overflow: visible !important;
  margin-bottom: 3.5rem;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.live-deal-badge-clean {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #38bdf8;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseDot 1.6s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-headline-split-clean {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
  color: var(--white);
}

.hero-headline-split-clean span {
  color: #38bdf8;
}

.hero-subheadline-split-clean {
  font-size: 1.15rem;
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Glassmorphism Live Price Deal Showcase Card */
.live-price-deal-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.price-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.route-tag-clean {
  font-size: 0.775rem;
  font-weight: 800;
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.discount-pill-clean {
  background: var(--accent-red);
  color: var(--white);
  font-size: 0.725rem;
  font-weight: 900;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.route-cities-clean {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.price-row-clean {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.old-price-strike-clean {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: #cbd5e1;
  font-weight: 600;
}

.hero-live-price-clean {
  font-size: 2.5rem;
  font-weight: 900;
  color: #34d399;
  line-height: 1;
}

.savings-amount-clean {
  background: rgba(16, 185, 129, 0.25);
  color: #a7f3d0;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.price-card-foot {
  font-size: 0.85rem;
  color: #cbd5e1;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 0.65rem;
}

/* Micro Perks Badges Row */
.hero-perks-row-clean {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.perk-item-clean {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.perk-item-clean i {
  font-size: 1.35rem;
  color: #38bdf8;
}

.perk-item-clean strong {
  display: block;
  font-size: 0.8rem;
  color: var(--white);
}

.perk-item-clean span {
  display: block;
  font-size: 0.7rem;
  color: #cbd5e1;
}

/* Refined Green Phone Action Banner */
.hero-call-action-card {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  border-radius: 18px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
}

.hero-call-action-card i {
  font-size: 1.8rem;
  color: var(--white);
}

.btn-hero-call-action {
  background: var(--white);
  color: #065f46;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 900;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-hero-call-action:hover {
  background: #fef08a;
  color: var(--dark);
}

/* Right Column: Vertical Glassmorphism Card Engine */
.vertical-search-card-refined {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  padding: 2.25rem;
  color: var(--dark);
  position: relative;
  z-index: 50;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.search-card-phone-banner-clean {
  background: linear-gradient(135deg, #065f46 0%, #059669 100%);
  color: var(--white);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.phone-avatar-clean {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}

.phone-num-clean {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fef08a;
  display: block;
}

.vertical-form-layout {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dates-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Dynamic Trip Mode Overrides (One Way & Multi-City) */
#main-search-form.one-way-mode .col-ret {
  display: none !important;
}

#main-search-form.one-way-mode .dates-row-2col {
  grid-template-columns: 1fr !important;
}

/* Multi-City Mode Styles */
.multi-city-legs-container {
  display: none;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

#main-search-form.multi-city-mode .vertical-form-layout > .input-box,
#main-search-form.multi-city-mode .dates-row-2col {
  display: none !important;
}

#main-search-form.multi-city-mode .multi-city-legs-container {
  display: flex !important;
}

.multi-leg-box {
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 14px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.multi-leg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
}

.btn-remove-leg {
  background: none;
  border: none;
  color: var(--accent-red);
  font-size: 0.8rem;
  cursor: pointer;
  font-weight: 700;
}

.btn-add-leg {
  background: var(--primary-light);
  color: var(--primary);
  border: 1.5px dashed var(--primary);
  padding: 0.65rem 1rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.btn-add-leg:hover {
  background: var(--primary);
  color: var(--white);
}

.search-card-trust-footer {
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}

/* Base Form Control Shared Overrides */
.flight-options-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-muted);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.radio-label:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.radio-label input {
  accent-color: var(--primary);
  width: 17px;
  height: 17px;
  cursor: pointer;
}

.input-box {
  position: relative;
  z-index: 10;
  transition: var(--transition);
  width: 100%;
}

.input-box:focus-within {
  z-index: 100;
}

.box-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.775rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  margin-bottom: 0.55rem;
  white-space: nowrap;
}

.box-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.box-icon {
  position: absolute;
  left: 0.9rem;
  color: var(--primary);
  font-size: 1.05rem;
  pointer-events: none;
  z-index: 2;
}

.input-control {
  width: 100%;
  height: 54px;
  padding: 0.5rem 0.75rem 0.5rem 2.6rem;
  border: 2px solid #cbd5e1;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  background: #ffffff;
  transition: var(--transition);
  outline: none;
}

.input-control:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.15);
}

.input-control[type="date"] {
  font-family: var(--font-family);
  font-size: 0.95rem !important;
  color: var(--primary-dark);
  padding: 0.5rem 1rem 0.5rem 2.6rem !important;
  cursor: pointer;
}

.input-control[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  background-color: var(--primary-light);
  color: var(--primary);
  padding: 0.4rem;
  border-radius: 8px;
  opacity: 1;
  transition: var(--transition);
}

.input-control[type="date"]::-webkit-calendar-picker-indicator:hover {
  background-color: var(--primary);
  filter: invert(1);
}

.btn-search-main {
  width: 100%;
  height: 56px;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: var(--white);
  border: none;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
  white-space: nowrap;
}

.btn-search-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
  background: #047857;
}

.dropdown-suggest-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  max-height: 320px;
  overflow-y: auto;
  background: #ffffff;
  border: 2px solid var(--primary);
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  z-index: 9999 !important;
  display: none;
  list-style: none;
  padding: 0.25rem 0;
}

.dropdown-suggest-list.show {
  display: block;
  animation: fadeIn 0.15s ease;
}

.suggest-item {
  padding: 0.85rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid #f1f5f9;
}

.suggest-item:hover {
  background: var(--primary-light);
}

.suggest-city { font-weight: 800; font-size: 0.95rem; color: var(--dark); }
.suggest-country { font-size: 0.775rem; color: var(--gray-text); font-weight: 500; }
.suggest-code {
  background: var(--primary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

/* Standalone Flight Results Container Styling */
.flight-results-container {
  display: none;
  margin-top: 3.5rem;
  animation: slideUp 0.4s ease;
}

.flight-results-container.show {
  display: block;
}

.results-header-bar {
  background: linear-gradient(135deg, #065f46 0%, #059669 100%);
  color: var(--white);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.25);
}

.results-header-text h3 {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.results-header-text p {
  font-size: 0.95rem;
  opacity: 0.95;
}

.flight-card-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.flight-ticket-card {
  background: var(--white);
  border-radius: 18px;
  border: 1.5px solid var(--gray-border);
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: 2.2fr 3.2fr 2fr;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.flight-ticket-card:hover {
  box-shadow: 0 12px 30px rgba(0, 82, 204, 0.15);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.airline-brand {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.airline-logo-box {
  width: 52px;
  height: 52px;
  background: var(--gray-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  border: 1px solid var(--gray-border);
}

.airline-name { font-weight: 800; font-size: 1.1rem; }
.flight-number { font-size: 0.85rem; color: var(--gray-text); }

.flight-timing-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.time-point { text-align: center; }
.time-hour { font-size: 1.4rem; font-weight: 900; color: var(--dark); }
.time-code { font-size: 0.875rem; font-weight: 800; color: var(--primary); }

.route-flight-line {
  flex-grow: 1;
  text-align: center;
  position: relative;
}

.duration-text { font-size: 0.8rem; color: var(--gray-text); font-weight: 600; }
.flight-line {
  height: 2px;
  background: var(--gray-border);
  position: relative;
  margin: 0.5rem 0;
}

.flight-line::after {
  content: '\f072';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary);
  font-size: 0.95rem;
}

.stops-badge {
  font-size: 0.75rem;
  background: #dcfce7;
  color: #15803d;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.pricing-action-box {
  text-align: right;
  border-left: 1.5px dashed var(--gray-border);
  padding-left: 2rem;
}

.original-price-tag {
  font-size: 0.95rem;
  text-decoration: line-through;
  color: var(--gray-text);
  font-weight: 600;
}

.discount-price-tag {
  font-size: 2.25rem;
  font-weight: 900;
  color: #059669;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.btn-lock-fare {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: var(--white);
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.btn-lock-fare:hover {
  background: #047857;
  transform: scale(1.03);
}

/* ==========================================================================
   Trusted Global Partner Airlines & Travel Hub UI (Version 2.0 - High Impact)
   ========================================================================== */

.partners-showcase-section-v2 {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.partners-showcase-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 3rem;
}

.partner-kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.775rem;
  font-weight: 800;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.75px;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  border: 1px solid #bae6fd;
}

.partners-main-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.partners-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
}

/* Category Filter Pills Bar */
.partner-filter-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.75rem;
  flex-wrap: wrap;
}

.partner-tab-btn {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #475569;
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.partner-tab-btn:hover,
.partner-tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(0, 82, 204, 0.28);
}

/* Partner Brand Cards Grid */
.partners-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.partner-brand-card {
  background: transparent;
  border: none;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
  height: 100px;
}

.partner-brand-card:hover {
  transform: translateY(-4px);
  /* Hover effect is mostly on the logo itself now */
}

.brand-logo-frame {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-brand-card:hover .brand-logo-frame {
  /* No nested box effect needed now */
}

.brand-logo-frame img {
  max-height: 80px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply; /* This removes any white background boxes from the logos themselves */
  transition: transform 0.25s ease;
}

.partner-brand-card:hover .brand-logo-frame img {
  transform: scale(1.08);
}

.brand-logo-frame svg {
  max-height: 48px;
  max-width: 150px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}

.logo-fallback {
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
}

.brand-name-heading {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.35rem;
  letter-spacing: -0.2px;
}

.brand-verification-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.brand-perk-note {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.35;
}

/* Bottom Metrics Bar */
.partners-trust-metrics-bar {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 1.85rem 2.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-stat-box {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.metric-stat-box i {
  font-size: 1.8rem;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.25);
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metric-number-val {
  font-size: 1.65rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.metric-label-text {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 600;
  margin-top: 0.15rem;
}

/* Reviews Section */
.testimonials-section {
  padding: 5rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray-border);
}

.trustpilot-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #f1f5f9;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  border: 1px solid var(--gray-border);
}

.tp-star-box { background: #00b67a; color: #fff; font-weight: 800; font-size: 0.8rem; padding: 0.25rem 0.6rem; border-radius: 4px; }
.tp-stars { color: #00b67a; font-size: 0.95rem; }
.tp-score { font-size: 0.875rem; font-weight: 700; color: var(--dark); }

.reviews-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  padding: 1rem 0;
}

.reviews-cards-grid {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scroll-carousel 50s linear infinite;
  padding-left: 2rem; /* Initial offset so it flows smoothly */
}

.reviews-carousel-wrapper:hover .reviews-cards-grid {
  animation-play-state: paused;
}

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

.testimonial-card-item {
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  width: 380px;
  flex-shrink: 0;
}

.testimonial-card-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--white);
  border-color: var(--primary);
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.star-rating-row { color: var(--accent-gold); font-size: 1.05rem; display: flex; gap: 0.25rem; }
.saved-amount-badge { background: #dcfce7; color: #15803d; font-size: 0.75rem; font-weight: 900; padding: 0.25rem 0.6rem; border-radius: var(--radius-full); letter-spacing: 0.5px; }
.testimonial-quote { font-size: 0.975rem; color: var(--dark-muted); font-style: italic; margin-bottom: 1.75rem; line-height: 1.7; }
.reviewer-meta { display: flex; align-items: center; gap: 1rem; }
.reviewer-photo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
.reviewer-name { font-size: 1rem; font-weight: 800; }
.reviewer-country-tag { font-size: 0.8rem; color: var(--gray-text); display: flex; align-items: center; gap: 0.35rem; margin-top: 0.15rem; }

/* Payments Section */
.payments-section { padding: 5rem 0; background: var(--white); }
.section-title-box { text-align: center; max-width: 800px; margin: 0 auto 3.5rem; }
.section-kicker { color: var(--primary); font-weight: 800; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; display: block; }
.section-main-heading { font-size: 2.25rem; font-weight: 900; color: var(--dark); margin-bottom: 1rem; letter-spacing: -0.5px; }
.section-description { font-size: 1.1rem; color: var(--gray-text); }
.payment-cards-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.payment-offer-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: 16px; padding: 1.75rem 1.5rem; text-align: center; position: relative; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; align-items: center; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.payment-offer-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); border-color: var(--primary); }
.payment-offer-card.featured-card { border: 2px solid var(--secondary); background: #f8fafc; }
.featured-ribbon { position: absolute; top: -14px; background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%); color: var(--white); font-size: 0.75rem; font-weight: 800; padding: 0.4rem 1rem; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 4px 10px rgba(234, 88, 12, 0.3); }
.pay-logo-img { height: 42px; width: auto; object-fit: contain; margin-bottom: 1.25rem; }
.card-save-label { font-size: 0.75rem; font-weight: 800; color: #ef4444; background: #fee2e2; padding: 0.25rem 0.75rem; border-radius: 20px; letter-spacing: 0.5px; margin-bottom: 0.5rem; display: inline-block; }
.card-discount-val { font-size: 2.25rem; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 1.25rem; }
.payment-offer-card.featured-card .card-discount-val { color: var(--secondary); }
.card-bullet-list { list-style: none; font-size: 0.85rem; color: var(--dark-muted); font-weight: 600; display: flex; flex-direction: column; gap: 0.6rem; width: 100%; border-top: 1px solid var(--gray-border); padding-top: 1.25rem; text-align: left; align-items: flex-start; margin-bottom: auto; }
.card-bullet-list li { display: flex; align-items: center; justify-content: flex-start; gap: 0.5rem; }
.card-bullet-list li i { color: var(--secondary); font-size: 1rem; }

.blue-callout-bar { background: linear-gradient(90deg, #1d4ed8 0%, #0052cc 50%, #1e40af 100%); border-radius: var(--radius-lg); padding: 2rem; color: var(--white); box-shadow: 0 12px 30px rgba(0, 82, 204, 0.25); margin-bottom: 3rem; }
.callout-flex-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.callout-box { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.callout-box-icon { font-size: 2rem; }
.callout-box h4 { color: var(--white); font-size: 1.15rem; font-weight: 800; }
.callout-box p { font-size: 0.9rem; opacity: 0.95; }

.call-action-banner { text-align: center; }
.call-action-title { font-size: 1.2rem; font-weight: 800; color: var(--dark-muted); margin-bottom: 1.25rem; }
.btn-green-phone-call { background: linear-gradient(135deg, #059669 0%, #10b981 100%); color: var(--white); font-size: 1.35rem; font-weight: 900; padding: 1.15rem 3rem; border-radius: var(--radius-full); display: inline-flex; align-items: center; gap: 0.85rem; box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4); transition: var(--transition); }
.btn-green-phone-call:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 32px rgba(16, 185, 129, 0.5); }

/* Destinations Section */
.destinations-section { padding: 5rem 0; background: #f1f5f9; }
.destinations-grid-layout { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.dest-city-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); }
.dest-city-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dest-photo-box { position: relative; height: 220px; overflow: hidden; }
.dest-photo { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest-city-card:hover .dest-photo { transform: scale(1.08); }
.dest-promo-badge { position: absolute; top: 1rem; right: 1rem; background: var(--accent-red); color: var(--white); font-size: 0.775rem; font-weight: 900; padding: 0.3rem 0.75rem; border-radius: var(--radius-full); }
.dest-details-box { padding: 1.5rem; }
.dest-details-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.6rem; }
.dest-city-name { font-size: 1.3rem; font-weight: 800; }
.dest-deal-price { font-size: 1.45rem; font-weight: 900; color: var(--primary); }
.dest-old-fare { font-size: 0.875rem; text-decoration: line-through; color: var(--gray-text); margin-right: 0.4rem; font-weight: 500; }
.dest-route-info { font-size: 0.875rem; color: var(--gray-text); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.4rem; }
.btn-book-dest { width: 100%; padding: 0.75rem; background: var(--primary-light); color: var(--primary); border: 1.5px solid rgba(0, 82, 204, 0.25); border-radius: var(--radius-md); font-weight: 800; font-size: 0.95rem; cursor: pointer; transition: var(--transition); text-align: center; display: block; }
.btn-book-dest:hover { background: var(--primary); color: var(--white); }

/* Floating Desk Widget */
.floating-desk-widget { position: fixed; bottom: 2rem; right: 2rem; z-index: 1000; display: flex; flex-direction: column; align-items: flex-end; }
.floating-trigger-btn { background: linear-gradient(135deg, #059669 0%, #10b981 100%); color: var(--white); border: none; border-radius: var(--radius-full); padding: 0.95rem 1.6rem; font-size: 1rem; font-weight: 800; display: flex; align-items: center; gap: 0.75rem; box-shadow: 0 10px 30px rgba(16, 185, 129, 0.45); cursor: pointer; transition: var(--transition); position: relative; }
.floating-trigger-btn::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: var(--radius-full); border: 2px solid #10b981; animation: pulseRing 2s infinite; }
@keyframes pulseRing { 0% { transform: scale(1); opacity: 0.9; } 100% { transform: scale(1.35); opacity: 0; } }
.chat-modal-window { display: none; width: 360px; background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25); border: 1px solid var(--gray-border); margin-bottom: 1rem; overflow: hidden; animation: popUp 0.3s ease; }
.chat-modal-window.show { display: block; }
@keyframes popUp { from { opacity: 0; transform: translateY(20px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.chat-header { background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%); color: var(--white); padding: 1.25rem; display: flex; justify-content: space-between; align-items: center; }
.chat-agent-info { display: flex; align-items: center; gap: 0.75rem; }
.chat-agent-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--white); }
.chat-header-title { font-size: 1rem; font-weight: 800; color: var(--white); }
.chat-status-text { font-size: 0.75rem; color: #93c5fd; }
.chat-close-btn { background: none; border: none; color: var(--white); font-size: 1.35rem; cursor: pointer; opacity: 0.8; }
.chat-body-messages { height: 250px; overflow-y: auto; padding: 1rem; background: #f8fafc; display: flex; flex-direction: column; gap: 0.75rem; }
.msg-bubble { max-width: 82%; padding: 0.75rem 1rem; border-radius: var(--radius-md); font-size: 0.875rem; line-height: 1.45; }
.msg-bubble.bot { background: var(--white); color: var(--dark); border: 1px solid var(--gray-border); align-self: flex-start; }
.msg-bubble.user { background: var(--primary); color: var(--white); align-self: flex-end; }
.chat-input-row { padding: 0.75rem 1rem; background: var(--white); border-top: 1px solid var(--gray-border); display: flex; gap: 0.5rem; }
.chat-input-field { flex-grow: 1; padding: 0.6rem 0.85rem; border: 1px solid var(--gray-border); border-radius: var(--radius-md); font-size: 0.9rem; outline: none; }
.chat-send-btn { background: var(--primary); color: var(--white); border: none; padding: 0.6rem 1rem; border-radius: var(--radius-md); cursor: pointer; font-weight: 700; }

/* Promo Congrats Modal Popup */
.promo-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.promo-modal-overlay.show {
  display: flex;
  opacity: 1;
}

.promo-modal-box {
  background: #ffffff;
  border-radius: 24px;
  max-width: 540px;
  width: 100%;
  padding: 2.25rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.promo-modal-overlay.show .promo-modal-box {
  transform: scale(1) translateY(0);
}

.promo-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.35rem;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.promo-close-btn:hover {
  background: #e2e8f0;
  color: var(--dark);
}

.promo-icon-badge {
  width: 64px;
  height: 64px;
  background: #dcfce7;
  color: #15803d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 10px 25px rgba(22, 128, 61, 0.2);
}

.promo-modal-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.promo-modal-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.promo-fare-preview-card {
  background: linear-gradient(135deg, #091e42 0%, #0f172a 100%);
  color: var(--white);
  border-radius: 18px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.fare-preview-route {
  font-size: 1.15rem;
  font-weight: 800;
  color: #38bdf8;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fare-preview-prices {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.fare-old-price {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: #94a3b8;
}

.fare-live-price {
  font-size: 2.25rem;
  font-weight: 900;
  color: #34d399;
  line-height: 1;
}

.fare-save-tag {
  white-space: nowrap;
  background: var(--accent-red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.fare-perks-list {
  list-style: none;
  font-size: 0.825rem;
  color: #cbd5e1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.75rem;
}

.fare-perks-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.timer-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-popup-call-green {
  width: 100%;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: var(--white);
  padding: 1.1rem;
  border-radius: 16px;
  font-size: 1.15rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
  transition: var(--transition);
  margin-bottom: 0.85rem;
}

.btn-popup-call-green:hover {
  transform: translateY(-2px);
  background: #047857;
}

.btn-view-results-link {
  background: none;
  border: none;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  transition: var(--transition);
}

.btn-view-results-link:hover {
  color: var(--primary);
}

/* Footer Section */
.main-footer { background: var(--dark); color: #94a3b8; padding: 4.5rem 0 2rem; font-size: 0.9rem; }
.footer-columns-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3.5rem; }
.footer-col h4 { color: var(--white); font-size: 1.15rem; margin-bottom: 1.25rem; }
.footer-col p { line-height: 1.7; margin-bottom: 1.25rem; }
.footer-menu { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-menu a { transition: var(--transition); }
.footer-menu a:hover { color: var(--white); padding-left: 0.3rem; }
.footer-hotline-box { background: var(--dark-surface); padding: 1.5rem; border-radius: var(--radius-md); border: 1px solid var(--dark-muted); }
.footer-hotline-box h5 { color: var(--white); margin-bottom: 0.4rem; font-size: 1rem; }
.footer-phone-big { font-size: 1.3rem; color: #60a5fa; font-weight: 900; }
.footer-bottom-bar { border-top: 1px solid var(--dark-muted); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-headline-split-clean { font-size: 2.5rem; }
  .hero-perks-row-clean { grid-template-columns: 1fr; }
  .payment-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid-layout, .partners-brand-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-columns-grid { grid-template-columns: 1fr 1fr; }
  .flight-ticket-card { grid-template-columns: 1fr; text-align: center; }
  .pricing-action-box { text-align: center; border-left: none; border-top: 1px dashed var(--gray-border); padding-left: 0; padding-top: 1rem; }
}

@media (max-width: 640px) {
  .partners-brand-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .partners-trust-metrics-bar { grid-template-columns: 1fr; padding: 1.5rem; }
  .metric-stat-box { justify-content: center; text-align: center; flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 768px) {
  .top-announcement-content { flex-direction: column; text-align: center; gap: 0.5rem; padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .top-announcement-content > div { justify-content: center; width: 100%; display: flex; flex-wrap: wrap; line-height: 1.4; }
  .top-trust-pill { display: none; }
  
  .header-container { padding-top: 0.75rem; padding-bottom: 0.75rem; height: auto; flex-wrap: nowrap; justify-content: space-between; gap: 0.5rem; }
  .phone-meta { display: none; }
  .brand-logo { font-size: 1.4rem; }
  .header-logo-img { width: 36px; height: 36px; }
  .btn-header-call { padding: 0.6rem 1rem; font-size: 0.85rem; flex-shrink: 0; }
  
  .hero-headline-split-clean { font-size: 2.2rem; }
  .price-card-top { flex-wrap: wrap; gap: 0.6rem; }
  .discount-pill-clean { text-align: center; }
  .route-cities-clean { font-size: 1.15rem; line-height: 1.3; }
  .price-row-clean { flex-wrap: wrap; align-items: center; gap: 0.6rem; }
  .old-price-strike-clean { font-size: 1.1rem; }
  .hero-live-price-clean { font-size: 2.25rem; }
  .savings-amount-clean { font-size: 0.75rem; padding: 0.25rem 0.5rem; }
  
  .vertical-search-card-refined { padding: 1.5rem; }
  .main-nav { display: none; }
  .payment-cards-grid, .destinations-grid-layout { grid-template-columns: 1fr; }
  .callout-flex-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer-columns-grid { grid-template-columns: 1fr; }
  .dates-row-2col { grid-template-columns: 1fr; }
  .partners-trust-metrics-bar { grid-template-columns: repeat(2, 1fr); }
  
  .floating-desk-widget { bottom: 1rem; right: 1rem; transform: scale(0.8); transform-origin: bottom right; z-index: 99; }
  .hero-wrapper-split-refined { padding-bottom: 5rem; }
}

/* ==========================================================================
   WELCOME PAGE-LOAD PROMO POPUP
   ========================================================================== */

/* Overlay */
.wpp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.wpp-overlay.wpp-visible {
  opacity: 1;
  visibility: visible;
}

/* Modal Split Box (Premium Layout) */
.wpp-modal-split {
  background: #ffffff;
  border-radius: 24px;
  max-width: 860px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25), 0 15px 30px rgba(0, 82, 204, 0.15);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  overflow: hidden;
  display: flex;
  flex-direction: row;
}
.wpp-overlay.wpp-visible .wpp-modal-split {
  transform: translateY(0) scale(1);
}

/* Close Button */
.wpp-close-btn-split {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(241, 245, 249, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}
.wpp-close-btn-split:hover {
  background: #fee2e2;
  color: #ef4444;
  border-color: #fca5a5;
  transform: rotate(90deg);
}

/* Left Visual Side */
.wpp-split-visual {
  flex: 0 0 340px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}
.wpp-split-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at top right, rgba(56, 189, 248, 0.25), transparent 60%);
}
.wpp-visual-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wpp-visual-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.wpp-visual-title {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.wpp-glow-text {
  font-size: 3.5rem;
  display: block;
  background: linear-gradient(to right, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.4));
  margin: 0.25rem 0;
}
.wpp-visual-sub {
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 500;
  margin-bottom: 2rem;
}
.wpp-visual-timer-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2.5rem;
}
.wpp-visual-timer-box i {
  font-size: 1.8rem;
  color: #fbbf24;
}
.wpp-visual-timer-box .timer-text {
  text-align: left;
  display: flex;
  flex-direction: column;
}
.wpp-visual-timer-box .timer-text span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #cbd5e1;
}
.wpp-visual-timer-box .timer-text strong {
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.wpp-visual-art {
  font-size: 6rem;
  color: rgba(255,255,255,0.05);
  position: absolute;
  bottom: -20px;
  right: -20px;
  transform: rotate(-15deg);
}

/* Right Content Side */
.wpp-split-content {
  flex: 1;
  padding: 2.5rem 3rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
}
.wpp-content-header {
  margin-bottom: 1.5rem;
}
.wpp-content-header h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 0.4rem;
}
.wpp-content-header p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

/* Savings List */
.wpp-savings-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.wpp-saving-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wpp-saving-item:hover {
  transform: translateX(4px);
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.saving-icon {
  width: 72px;
  height: 48px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0,0,0,0.06);
  padding: 0.35rem;
  border: 1px solid #e2e8f0;
}
.saving-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.saving-icon i {
  font-size: 1.2rem;
}
.giftcard-theme .saving-icon i { color: #d97706; }

.saving-details {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.saving-details h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 0.1rem;
}
.saving-details span {
  font-size: 0.8rem;
  color: #64748b;
}
.saving-details strong {
  color: #15803d;
  font-weight: 800;
  font-size: 0.85rem;
}

/* Action Group */
.wpp-split-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.wpp-call-btn-split {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  border-radius: 14px;
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.25);
  transition: all 0.3s ease;
}
.wpp-call-btn-split:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(22, 163, 74, 0.35);
}
.btn-icon-wrapper {
  background: rgba(0, 0, 0, 0.15);
  padding: 1.25rem 1.5rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-icon-wrapper i {
  animation: wpp-phone-ring 2s infinite;
}
.btn-text-wrapper {
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.btn-top-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 800;
  color: #bbf7d0;
}
.btn-bottom-text {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.wpp-skip-btn-split {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
  text-align: center;
  padding: 0.5rem;
}
.wpp-skip-btn-split:hover {
  color: #475569;
  text-decoration: underline;
}

/* Trust Footer */
.wpp-split-trust {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}
.wpp-split-trust span {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.wpp-split-trust i {
  color: #38bdf8;
  font-size: 0.9rem;
}

/* Responsive Split */
@media (max-width: 800px) {
  .wpp-modal-split { flex-direction: column; max-width: 420px; max-height: 85vh; overflow-y: auto; border-radius: 16px; margin: auto; }
  .wpp-split-visual { flex: none; padding: 2rem 1.25rem 1.5rem; }
  .wpp-visual-title { font-size: 1.5rem; }
  .wpp-glow-text { font-size: 2.5rem; }
  .wpp-visual-badge { margin-bottom: 0.75rem; }
  .wpp-visual-timer-box { margin-bottom: 0; padding: 0.5rem 1rem; }
  .wpp-visual-timer-box i { font-size: 1.4rem; }
  .wpp-visual-timer-box .timer-text strong { font-size: 1.2rem; }
  .wpp-split-content { padding: 1.5rem 1.25rem; }
  .wpp-content-header { margin-bottom: 1rem; }
  .wpp-content-header h3 { font-size: 1.25rem; }
  .wpp-content-header p { font-size: 0.85rem; }
  .wpp-savings-list { gap: 0.5rem; margin-bottom: 1.25rem; }
  .wpp-saving-item { padding: 0.6rem 0.75rem; gap: 0.75rem; }
  .saving-icon { width: 50px; height: 35px; border-radius: 6px; }
  .saving-icon img { height: 24px; max-width: 100%; }
  .saving-details h4 { font-size: 0.85rem; margin-bottom: 0.1rem; }
  .saving-details span { font-size: 0.8rem; }
  .btn-text-wrapper { padding: 0.5rem 1rem; }
  .btn-top-text { font-size: 0.65rem; }
  .btn-bottom-text { font-size: 1.15rem; }
  .wpp-split-trust { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .wpp-close-btn-split { top: 1rem; right: 1rem; width: 32px; height: 32px; font-size: 0.9rem; }
}


/* Mobile Trip Select Dropdown */
.mobile-trip-select {
  display: none;
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 2px solid #e2e8f0;
  background-color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2364748b%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem top 50%;
  background-size: 0.65rem auto;
  transition: var(--transition);
}

.mobile-trip-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

@media (max-width: 768px) {
  .flight-options-bar {
    display: none !important;
  }
  .mobile-trip-select {
    display: block;
  }
}
