/* ================================================================
   TheBookFlight — Homepage v7 Styles (hp-* Design System)
   Dark premium theme with glassmorphism + micro-animations
   ================================================================ */

/* ── Design Tokens ── */
:root {
  --hp-bg: #050b14;
  --hp-surface: #0a1628;
  --hp-surface-2: #0f1a2e;
  --hp-surface-3: #131f33;
  --hp-primary: #D0021B;
  --hp-primary-glow: rgba(208,2,27,0.3);
  --hp-primary-soft: rgba(208,2,27,0.15);
  --hp-text: #ffffff;
  --hp-text-2: rgba(255,255,255,0.7);
  --hp-text-3: rgba(255,255,255,0.4);
  --hp-border: rgba(255,255,255,0.06);
  --hp-border-2: rgba(255,255,255,0.1);
  --hp-glass: rgba(10,22,40,0.85);
  --hp-glass-border: rgba(255,255,255,0.08);
  --hp-radius: 16px;
  --hp-radius-sm: 12px;
  --hp-radius-pill: 100px;
  --hp-shadow: 0 8px 32px rgba(0,0,0,0.4);
  --hp-transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --hp-font: 'Inter','Outfit',system-ui,-apple-system,sans-serif;
  --hp-section-gap: 100px;
  --hp-green: #22c55e;
}

/* ── Base / Container ── */
.hp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hp-text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.hp-text-glow {
  background: linear-gradient(135deg, #ff4d4d, var(--hp-primary), #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px var(--hp-primary-glow));
}

/* ══════════════════════════════════════════════════
   TICKER — Urgency Marquee
   ══════════════════════════════════════════════════ */
.hp-ticker {
  background: linear-gradient(90deg, var(--hp-primary), #8b0000, var(--hp-primary));
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 50;
}
.hp-ticker__track {
  display: flex;
  gap: 48px;
  animation: hp-ticker-scroll 30s linear infinite;
  width: max-content;
}
.hp-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hp-ticker__item i { font-size: 14px; }
@keyframes hp-ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════ */
.hp-hero {
  position: relative;
  min-height: auto;
  background: linear-gradient(165deg, #050b14 0%, #0a1628 30%, #0d1f3c 60%, #050b14 100%);
  overflow: hidden;
  padding: 20px 0 40px;
}
.hp-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hp-hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--hp-primary-glow) 0%, transparent 70%);
  top: 10%; right: 10%;
  animation: hp-orb-float 8s ease-in-out infinite;
}
.hp-hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(34,197,94,0.1) 0%, transparent 70%);
  bottom: 10%; left: 5%;
  animation: hp-orb-float 10s ease-in-out infinite reverse;
}
@keyframes hp-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.1); }
}
.hp-hero__grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

/* Hero Inner — now single-column centered */
.hp-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.hp-hero__text {
  position: relative;
  z-index: 2;
}
.hp-hero__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--hp-text);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.hp-hero__sub {
  font-size: clamp(13px, 1.3vw, 16px);
  color: var(--hp-text-2);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── AI Badge ── */
.hp-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--hp-surface-2);
  border: 1px solid var(--hp-border-2);
  border-radius: var(--hp-radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--hp-green);
  margin-bottom: 20px;
  position: relative;
}
.hp-ai-badge__dot {
  width: 8px; height: 8px;
  background: var(--hp-green);
  border-radius: 50%;
  animation: hp-pulse-dot 2s ease-in-out infinite;
}
.hp-ai-badge__ring {
  position: absolute;
  left: 16px;
  width: 8px; height: 8px;
  border: 1px solid var(--hp-green);
  border-radius: 50%;
  animation: hp-pulse-ring 2s ease-in-out infinite;
}
@keyframes hp-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes hp-pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3); opacity: 0; }
}
.hp-ai-badge i { color: var(--hp-green); font-size: 14px; }

/* ── Trust Pills ── */
.hp-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}
.hp-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--hp-text-2);
  transition: var(--hp-transition);
}
.hp-trust-pill i { color: var(--hp-green); font-size: 13px; }
.hp-trust-pill:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--hp-border-2);
}

/* ── Hero CTA Buttons ── */
.hp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  justify-content: center;
}

/* ── Mini Stats ── */
.hp-mini-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.hp-mini-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}
.hp-mini-stat strong {
  font-size: 22px;
  font-weight: 900;
  color: var(--hp-text);
}
.hp-mini-stat span {
  font-size: 11px;
  color: var(--hp-text-3);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hp-mini-stat__divider {
  width: 1px;
  height: 32px;
  background: var(--hp-border-2);
}

/* ══════════════════════════════════════════════════
   STANDALONE SEARCH PANEL — Full Width Below Hero
   ══════════════════════════════════════════════════ */
.hp-search-standalone {
  position: relative;
  margin-top: 40px;
  z-index: 10;
}
.hp-hero__ctas .cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--hp-primary), #8b0000);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border: none;
  border-radius: var(--hp-radius-sm);
  cursor: pointer;
  overflow: hidden;
  transition: var(--hp-transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hp-hero__ctas .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--hp-primary-glow);
}
.hp-hero__ctas .cta .span { position: relative; z-index: 1; }
.hp-hero__ctas .cta .second {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.hp-hero__ctas .cta .one, .hp-hero__ctas .cta .two, .hp-hero__ctas .cta .three {
  animation: hp-cta-arrow 2s ease-in-out infinite;
}
.hp-hero__ctas .cta .two { animation-delay: 0.15s; opacity: 0.6; }
.hp-hero__ctas .cta .three { animation-delay: 0.3s; opacity: 0.3; }
@keyframes hp-cta-arrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* ── Mini Stats ── */
.hp-mini-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hp-mini-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hp-mini-stat strong {
  font-size: 22px;
  font-weight: 900;
  color: var(--hp-text);
}
.hp-mini-stat span {
  font-size: 11px;
  color: var(--hp-text-3);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hp-mini-stat__divider {
  width: 1px;
  height: 32px;
  background: var(--hp-border-2);
}

/* ══════════════════════════════════════════════════
   SEARCH GLASS — Glassmorphism Container
   ══════════════════════════════════════════════════ */
.hp-search-glass {
  background: var(--hp-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--hp-glass-border);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: var(--hp-shadow), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  overflow: visible;
}
.hp-search-glass--wide {
  /* Full-width variant for standalone mode */
  max-width: 100%;
}
.hp-search-glass::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, var(--hp-primary-soft) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
  z-index: 0;
}
.hp-search-glass__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.hp-search-glass__icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--hp-primary), #ff4d4d);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--hp-primary-glow);
}
.hp-search-glass__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--hp-text);
}
.hp-search-glass__sub {
  font-size: 11px;
  color: var(--hp-text-3);
}

/* Ensure se5 form inside glass has proper z-index */
.hp-search-glass .se5 {
  position: relative;
  z-index: 1;
}
/* In wide/standalone mode, the se5 form keeps its natural horizontal layout */
.hp-search-glass--wide .se5-pax-panel,
.hp-search-glass--wide .se5-ac {
  min-width: 340px;
}

/* ── Float Badges ── */
.hp-float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--hp-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--hp-glass-border);
  border-radius: var(--hp-radius-pill);
  font-size: 11px;
  font-weight: 700;
  color: var(--hp-text-2);
  z-index: 10;
  animation: hp-float 4s ease-in-out infinite;
}
.hp-float-badge i { color: var(--hp-primary); font-size: 14px; }
.hp-float-badge--tl { top: -16px; left: -16px; }
.hp-float-badge--br { bottom: -16px; right: -16px; animation-delay: 2s; }
@keyframes hp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ══════════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════════ */
.hp-stats-bar {
  background: var(--hp-surface);
  border-top: 1px solid var(--hp-border);
  border-bottom: 1px solid var(--hp-border);
  padding: 40px 0;
  position: relative;
}
.hp-stats-bar__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.hp-stats-bar__item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 12px 20px;
}
.hp-stats-bar__icon {
  font-size: 24px;
  color: var(--hp-primary);
  margin-bottom: 8px;
}
.hp-stats-bar__num {
  font-size: 28px;
  font-weight: 900;
  color: var(--hp-text);
  margin-bottom: 4px;
}
.hp-stats-bar__label {
  font-size: 12px;
  color: var(--hp-text-3);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hp-stats-bar__separator {
  width: 1px;
  height: 48px;
  background: var(--hp-border-2);
}

/* ══════════════════════════════════════════════════
   SECTION HEADERS (reusable)
   ══════════════════════════════════════════════════ */
.hp-section {
  padding: var(--hp-section-gap) 0;
  position: relative;
  overflow: hidden;
}
.hp-section__bg-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--hp-primary-soft) 0%, transparent 60%);
  pointer-events: none;
}
.hp-section__header {
  margin-bottom: 60px;
}
.hp-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--hp-primary-soft);
  border: 1px solid rgba(208,2,27,0.25);
  border-radius: var(--hp-radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--hp-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.hp-section__badge i { font-size: 14px; }
.hp-section__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--hp-text);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hp-section__sub {
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--hp-text-2);
  line-height: 1.6;
  max-width: 640px;
}

/* ══════════════════════════════════════════════════
   NEURAL PATH — How It Works
   ══════════════════════════════════════════════════ */
.hp-neural-path { background: var(--hp-bg); }
.hp-neural-web {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
}
.hp-neural-web__node {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--hp-primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--hp-primary-glow);
  animation: hp-node-pulse 3s ease-in-out infinite;
}
@keyframes hp-node-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}
.hp-neural-svg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hp-neural-path-anim {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: hp-neural-draw 4s ease-in-out infinite alternate;
}
@keyframes hp-neural-draw {
  to { stroke-dashoffset: 0; }
}
.hp-neural-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}
.hp-neural-grid__arrow {
  display: none;
  color: var(--hp-text-3);
  font-size: 24px;
  align-self: center;
  justify-self: center;
}
.hp-neural-node {
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: var(--hp-transition);
  overflow: hidden;
}
.hp-neural-node:hover {
  border-color: var(--hp-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px var(--hp-primary-glow);
}
.hp-neural-node__id {
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 12px; right: 20px;
  line-height: 1;
}
.hp-neural-node__orb {
  position: absolute;
  width: 100px; height: 100px;
  background: radial-gradient(circle, var(--hp-primary-glow) 0%, transparent 70%);
  border-radius: 50%;
  top: -20px; left: -20px;
  filter: blur(30px);
  pointer-events: none;
}
.hp-neural-node__pulse {
  position: absolute;
  width: 60px; height: 60px;
  border: 1px solid var(--hp-primary);
  border-radius: 50%;
  top: 20px; left: 20px;
  animation: hp-pulse-ring 3s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.3;
}
.hp-neural-node__inner { position: relative; z-index: 1; }
.hp-neural-node__content { margin-top: 16px; }
.hp-neural-node__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--hp-text);
  margin-bottom: 8px;
}
.hp-neural-node__desc {
  font-size: 14px;
  color: var(--hp-text-2);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   ROUTE CARDS — Trending Routes
   ══════════════════════════════════════════════════ */
.hp-routes { background: var(--hp-surface); }
.hp-routes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hp-route-card {
  background: var(--hp-surface-2);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius);
  overflow: hidden;
  transition: var(--hp-transition);
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.hp-route-card:hover {
  border-color: var(--hp-primary);
  transform: translateY(-4px);
  box-shadow: var(--hp-shadow);
}
.hp-route-card__sash {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 12px;
  background: var(--hp-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--hp-radius-pill);
  z-index: 2;
}
.hp-route-card__glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0, var(--hp-primary-soft) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: var(--hp-transition);
}
.hp-route-card:hover .hp-route-card__glow { opacity: 1; }
.hp-route-card__body {
  padding: 24px;
  position: relative;
  z-index: 1;
}
.hp-route-card__route {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.hp-route-card__city {
  font-size: 18px;
  font-weight: 800;
  color: var(--hp-text);
}
.hp-route-card__meta {
  font-size: 12px;
  color: var(--hp-text-3);
  margin-bottom: 16px;
}
.hp-route-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.hp-route-card__price {
  font-size: 24px;
  font-weight: 900;
  color: var(--hp-text);
}
.hp-route-card__price-label {
  font-size: 11px;
  color: var(--hp-text-3);
}
.hp-route-card__savings {
  font-size: 12px;
  font-weight: 700;
  color: var(--hp-green);
  background: rgba(34,197,94,0.1);
  padding: 4px 10px;
  border-radius: var(--hp-radius-pill);
}
.hp-route-card__arrow {
  width: 36px; height: 36px;
  background: var(--hp-primary-soft);
  border: 1px solid rgba(208,2,27,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-primary);
  font-size: 18px;
  transition: var(--hp-transition);
}
.hp-route-card:hover .hp-route-card__arrow {
  background: var(--hp-primary);
  color: #fff;
}

/* ══════════════════════════════════════════════════
   FEATURE CARDS
   ══════════════════════════════════════════════════ */
.hp-features { background: var(--hp-bg); }
.hp-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hp-feature-card {
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--hp-transition);
  position: relative;
  overflow: hidden;
}
.hp-feature-card:hover {
  border-color: var(--hp-border-2);
  transform: translateY(-4px);
  box-shadow: var(--hp-shadow);
}
.hp-feature-card--highlight {
  border-color: var(--hp-primary);
  background: linear-gradient(165deg, var(--hp-surface) 0%, rgba(208,2,27,0.05) 100%);
}
.hp-feature-card__icon-wrap {
  position: relative;
  width: 64px; height: 64px;
  margin: 0 auto 20px;
}
.hp-feature-card__icon-bg {
  position: absolute; inset: 0;
  background: var(--hp-primary-soft);
  border-radius: 16px;
  transform: rotate(8deg);
}
.hp-feature-card__icon-wrap i {
  position: relative;
  z-index: 1;
  font-size: 28px;
  color: var(--hp-primary);
  line-height: 64px;
}
.hp-feature-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--hp-text);
  margin-bottom: 8px;
}
.hp-feature-card__desc {
  font-size: 13px;
  color: var(--hp-text-2);
  line-height: 1.6;
}
.hp-feature-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--hp-primary-soft);
  color: var(--hp-primary);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--hp-radius-pill);
  margin-top: 12px;
}

/* ══════════════════════════════════════════════════
   HOLIDAYS — Destination Grid
   ══════════════════════════════════════════════════ */
.hp-holidays { background: var(--hp-surface); }
.hp-holiday-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hp-holiday-card {
  position: relative;
  border-radius: var(--hp-radius);
  overflow: hidden;
  min-height: 260px;
  cursor: pointer;
  transition: var(--hp-transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.hp-holiday-card:hover { transform: translateY(-4px); }
.hp-holiday-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hp-holiday-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
}
.hp-holiday-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  z-index: 2;
}
.hp-holiday-card__name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.hp-holiday-card__count {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.hp-holiday-card__price {
  font-size: 14px;
  font-weight: 700;
  color: var(--hp-green);
  margin-top: 4px;
}
.hp-holiday-card__arrow {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  opacity: 0;
  transition: var(--hp-transition);
  z-index: 3;
}
.hp-holiday-card:hover .hp-holiday-card__arrow { opacity: 1; }

/* Holiday Hero Card */
.hp-holiday-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--hp-radius);
  grid-column: span 2;
  grid-row: span 2;
  min-height: 540px;
}
.hp-holiday-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hp-holiday-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 50%); }
.hp-holiday-hero__content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; z-index: 2; }
.hp-holiday-hero__badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--hp-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--hp-radius-pill);
  margin-bottom: 8px;
}
.hp-holiday-hero__title { font-size: 28px; font-weight: 900; color: #fff; margin-bottom: 4px; }
.hp-holiday-hero__price { font-size: 16px; font-weight: 700; color: var(--hp-green); }

/* ══════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════ */
.hp-testimonials { background: var(--hp-bg); }
.hp-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hp-testimonial-card {
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  border-radius: 20px;
  padding: 28px;
  transition: var(--hp-transition);
}
.hp-testimonial-card:hover {
  border-color: var(--hp-border-2);
  transform: translateY(-2px);
}
.hp-testimonial-card--featured {
  border-color: var(--hp-primary);
  background: linear-gradient(165deg, var(--hp-surface) 0%, rgba(208,2,27,0.05) 100%);
}
.hp-testimonial-card__stars {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 12px;
}
.hp-testimonial-card__text {
  font-size: 14px;
  color: var(--hp-text-2);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.hp-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hp-testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--hp-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-primary);
  font-weight: 800;
  font-size: 16px;
}
.hp-testimonial-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--hp-text);
}
.hp-testimonial-card__role {
  font-size: 12px;
  color: var(--hp-text-3);
}

/* ══════════════════════════════════════════════════
   FAQ — Accordion
   ══════════════════════════════════════════════════ */
.hp-faq { background: var(--hp-surface); }
.hp-faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hp-faq__item {
  background: var(--hp-surface-2);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius);
  overflow: hidden;
  transition: var(--hp-transition);
}
.hp-faq__item:hover { border-color: var(--hp-border-2); }
.hp-faq__item.active { border-color: var(--hp-primary); }
.hp-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--hp-text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: var(--hp-transition);
}
.hp-faq__question:hover { color: var(--hp-primary); }
.hp-faq__icon {
  font-size: 18px;
  color: var(--hp-text-3);
  transition: transform 0.3s ease;
}
.hp-faq__item.active .hp-faq__icon { transform: rotate(45deg); color: var(--hp-primary); }
.hp-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
  padding: 0 24px;
  font-size: 14px;
  color: var(--hp-text-2);
  line-height: 1.7;
}
.hp-faq__item.active .hp-faq__answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ══════════════════════════════════════════════════
   BLOG CARDS
   ══════════════════════════════════════════════════ */
.hp-blog { background: var(--hp-bg); }
.hp-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hp-blog-card {
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius);
  padding: 24px;
  transition: var(--hp-transition);
}
.hp-blog-card:hover {
  border-color: var(--hp-border-2);
  transform: translateY(-2px);
}
.hp-blog-card__date {
  font-size: 11px;
  color: var(--hp-text-3);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hp-blog-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--hp-text);
  margin-bottom: 12px;
  line-height: 1.4;
}
.hp-blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hp-primary);
  text-decoration: none;
}
.hp-blog-card__link:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════
   CTA — Bottom Call To Action
   ══════════════════════════════════════════════════ */
.hp-cta {
  background: linear-gradient(165deg, #050b14 0%, #0d1f3c 50%, #050b14 100%);
  padding: var(--hp-section-gap) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hp-cta__inner {
  position: relative;
  z-index: 2;
}
.hp-cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hp-cta__orb--1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--hp-primary-glow) 0%, transparent 70%);
  top: -20%; left: 20%;
}
.hp-cta__orb--2 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
  bottom: -10%; right: 15%;
}
.hp-cta__badge { margin-bottom: 20px; }
.hp-cta__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--hp-text);
  margin-bottom: 16px;
}
.hp-cta__sub {
  font-size: clamp(14px, 1.3vw, 18px);
  color: var(--hp-text-2);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hp-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hp-cta__trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════ */
.hp-btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--hp-primary), #8b0000);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  border: none;
  border-radius: var(--hp-radius-sm);
  cursor: pointer;
  transition: var(--hp-transition);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hp-btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--hp-primary-glow);
}
.hp-btn-premium--large {
  padding: 18px 40px;
  font-size: 17px;
}
.hp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--hp-text);
  font-size: 15px;
  font-weight: 700;
  border: 1px solid var(--hp-border-2);
  border-radius: var(--hp-radius-sm);
  cursor: pointer;
  transition: var(--hp-transition);
  text-decoration: none;
}
.hp-btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--hp-text-3);
}
.hp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: transparent;
  color: var(--hp-primary);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(208,2,27,0.3);
  border-radius: var(--hp-radius-pill);
  cursor: pointer;
  transition: var(--hp-transition);
  text-decoration: none;
}
.hp-btn-outline:hover {
  background: var(--hp-primary-soft);
  border-color: var(--hp-primary);
}
.hp-btn-3d {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--hp-primary), #ff4d4d);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  border: none;
  border-radius: var(--hp-radius-sm);
  cursor: pointer;
  box-shadow: 0 4px 0 #8b0000, 0 8px 20px var(--hp-primary-glow);
  transition: var(--hp-transition);
  text-decoration: none;
  text-transform: uppercase;
}
.hp-btn-3d:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #8b0000, 0 12px 30px var(--hp-primary-glow);
}
.hp-btn-3d:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #8b0000, 0 4px 10px var(--hp-primary-glow);
}
.hp-btn-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--hp-surface-2);
  color: var(--hp-text);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius-sm);
  cursor: pointer;
  transition: var(--hp-transition);
  text-decoration: none;
}
.hp-btn-card:hover { border-color: var(--hp-border-2); background: var(--hp-surface-3); }

/* ══════════════════════════════════════════════════
   STICKY CTA
   ══════════════════════════════════════════════════ */
.hp-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: var(--hp-glass);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--hp-glass-border);
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.hp-sticky-cta.visible { transform: translateY(0); }

/* ══════════════════════════════════════════════════
   PROMO POPUP
   ══════════════════════════════════════════════════ */
.hp-promo-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.hp-promo-overlay.show { display: flex; }
.hp-promo-card {
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  border-radius: 24px;
  padding: 40px;
  max-width: 480px;
  width: 90%;
  position: relative;
  text-align: center;
}
.hp-promo-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: var(--hp-text-3);
  font-size: 20px;
  cursor: pointer;
}

/* ══════════════════════════════════════════════════
   CURSOR EFFECTS
   ══════════════════════════════════════════════════ */
.cursor-plane {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  color: var(--hp-primary);
  opacity: 0.6;
  transition: transform 0.1s ease;
  display: none;
}
.cursor-trail {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 20px; height: 20px;
  background: radial-gradient(circle, var(--hp-primary-glow) 0%, transparent 70%);
  border-radius: 50%;
  display: none;
}
@media (hover: hover) {
  .cursor-plane, .cursor-trail { display: block; }
}

/* ══════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
/* JS adds .will-reveal first, then .revealed on scroll */
[data-reveal].will-reveal {
  opacity: 0;
  transform: translateY(30px);
}
[data-reveal="left"].will-reveal { transform: translateX(-30px); }
[data-reveal="right"].will-reveal { transform: translateX(30px); }
[data-reveal="up"].will-reveal { transform: translateY(30px); }
[data-reveal].revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Magnetic Card */
.magnetic-card { transition: transform 0.2s ease; }

/* ══════════════════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hp-search-standalone .se5-fields { flex-direction: column; gap: 8px; }
  .hp-search-standalone .se5-field,
  .hp-search-standalone .se5-field--from,
  .hp-search-standalone .se5-field--to,
  .hp-search-standalone .se5-field--date,
  .hp-search-standalone .se5-field--pax { flex: unset; width: 100%; }
  .hp-search-standalone .se5-swap-wrap { width: 100%; height: 0; }
  .hp-search-standalone .se5-swap { top: -20px; right: 14px; transform: rotate(90deg); }
  .hp-search-standalone .se5-divider { width: 100%; height: 1px; }
  .hp-routes__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-features__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-neural-grid { grid-template-columns: 1fr; }
  .hp-holiday-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-holiday-hero { grid-column: span 2; grid-row: span 1; min-height: 300px; }
  .hp-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-blog__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root {
    --hp-section-gap: 56px;
  }
  .hp-container { padding: 0 16px; }
  .hp-hero { padding: 12px 0 40px; }
  .hp-hero__title { font-size: 24px; letter-spacing: -0.3px; }
  .hp-hero__sub { font-size: 13px; }
  .hp-ai-badge { font-size: 11px; padding: 5px 12px; }
  .hp-trust-pills { gap: 6px; }
  .hp-trust-pill { font-size: 11px; padding: 4px 10px; }
  .hp-hero__ctas .cta { padding: 12px 24px; font-size: 14px; }
  .hp-mini-stats { gap: 12px; }
  .hp-mini-stat strong { font-size: 18px; }
  .hp-stats-bar { padding: 28px 0; }
  .hp-stats-bar__grid { gap: 8px; }
  .hp-stats-bar__item { min-width: 80px; padding: 8px 8px; }
  .hp-stats-bar__num { font-size: 18px; }
  .hp-stats-bar__label { font-size: 10px; }
  .hp-stats-bar__separator { height: 28px; }
  .hp-routes__grid { grid-template-columns: 1fr; }
  .hp-features__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hp-feature-card { padding: 20px 16px; }
  .hp-feature-card__title { font-size: 14px; }
  .hp-feature-card__desc { font-size: 12px; }
  .hp-holiday-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hp-holiday-card { min-height: 180px; }
  .hp-holiday-hero { grid-column: span 2; min-height: 200px; }
  .hp-testimonials__grid { grid-template-columns: 1fr; }
  .hp-blog__grid { grid-template-columns: 1fr; }
  .hp-search-glass { padding: 16px; border-radius: 16px; }
  .hp-float-badge { display: none; }
  .hp-section { padding: 56px 0; }
  .hp-section__header { margin-bottom: 32px; }
  .hp-section__title { font-size: 24px; }
  .hp-section__sub { font-size: 13px; }
  .hp-section__badge { font-size: 10px; padding: 4px 12px; }
  .hp-neural-node { padding: 20px; }
  .hp-neural-node__title { font-size: 17px; }
  .hp-neural-node__desc { font-size: 13px; }
  .hp-route-card__city { font-size: 16px; }
  .hp-route-card__price { font-size: 20px; }
  .hp-testimonial-card { padding: 20px; }
  .hp-faq__question { font-size: 14px; padding: 16px 20px; }
  .hp-faq__answer { font-size: 13px; }
  .hp-cta__title { font-size: 24px; }
  .hp-cta__sub { font-size: 14px; }
  .hp-btn-premium { padding: 12px 24px; font-size: 14px; }
  .hp-btn-premium--large { padding: 14px 28px; font-size: 15px; }
}
