/* ═══════════════════════════════════════════════════════════════
   TheBookFlight — Mobile Homepage Phase 1 CSS
   DARK NEUMORPHIC · NEURAL TRAVEL-TECH THEME
   Target: 320px – 480px (optimized for 360px – 430px)
   ═══════════════════════════════════════════════════════════════ */

/* ── Google Font Import ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* ── Design Tokens ── */
:root {
  /* Background System */
  --mn-bg-deepest: #050B18;
  --mn-bg-deep: #071426;
  --mn-bg-base: #0B1020;
  --mn-bg-card: #101B2F;
  --mn-bg-card-raised: #111D33;
  --mn-bg-card-glass: rgba(16, 27, 47, 0.85);
  --mn-bg-input: #0a1525;

  /* Accent System */
  --mn-blue: #2F80ED;
  --mn-cyan: #35C8FF;
  --mn-cyan-light: #7CCBFF;
  --mn-gold: #F5C766;
  --mn-gold-glow: rgba(245, 199, 102, 0.15);
  --mn-green: #25D366;
  --mn-green-glow: rgba(37, 211, 102, 0.2);
  --mn-red: #D0021B;

  /* Text System */
  --mn-text: #FFFFFF;
  --mn-text-secondary: #B8C7E0;
  --mn-text-muted: #7F8EA8;

  /* Border & Glow */
  --mn-border: rgba(255, 255, 255, 0.06);
  --mn-border-glow: rgba(47, 128, 237, 0.15);
  --mn-glow-blue: 0 0 20px rgba(47, 128, 237, 0.15);
  --mn-glow-cyan: 0 0 24px rgba(53, 200, 255, 0.12);
  --mn-glow-green: 0 0 16px rgba(37, 211, 102, 0.2);

  /* Neumorphic Shadows */
  --mn-neu-raised: 6px 6px 16px rgba(2, 5, 12, 0.6), -4px -4px 12px rgba(30, 50, 80, 0.08);
  --mn-neu-inset: inset 4px 4px 10px rgba(2, 5, 12, 0.5), inset -3px -3px 8px rgba(30, 50, 80, 0.06);
  --mn-neu-button: 4px 4px 12px rgba(2, 5, 12, 0.5), -3px -3px 10px rgba(30, 50, 80, 0.07);
  --mn-neu-pressed: inset 3px 3px 8px rgba(2, 5, 12, 0.5), inset -2px -2px 6px rgba(30, 50, 80, 0.05);

  /* Spacing & Radius */
  --mn-radius-sm: 12px;
  --mn-radius-md: 16px;
  --mn-radius-lg: 22px;
  --mn-radius-xl: 28px;
  --mn-radius-pill: 100px;

  /* Font & Transition */
  --mn-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mn-ease: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --mn-ease-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ── Base Scope ── */
.m-homepage {
  font-family: var(--mn-font);
  background: linear-gradient(180deg, var(--mn-bg-deepest) 0%, var(--mn-bg-deep) 40%, var(--mn-bg-base) 100%);
  color: var(--mn-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

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

/* ── Neural Network Background ── */
.m-homepage::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(47, 128, 237, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(53, 200, 255, 0.04) 0%, transparent 35%),
    radial-gradient(circle at 50% 90%, rgba(245, 199, 102, 0.03) 0%, transparent 30%);
}

/* Neural grid pattern */
.m-homepage::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.015;
  background-image:
    linear-gradient(rgba(53, 200, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 200, 255, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}

.m-homepage > * {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════
   SECTION 1: ANNOUNCEMENT BANNER
   ═══════════════════════════════════════════ */
.m-banner {
  background: var(--mn-bg-card-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid var(--mn-border-glow);
  box-shadow: 0 1px 12px rgba(47, 128, 237, 0.06);
}

.m-banner__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(47, 128, 237, 0.1);
  border: 1px solid rgba(47, 128, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.m-banner__icon svg {
  width: 14px;
  height: 14px;
  color: var(--mn-cyan);
}

.m-banner__text {
  flex: 1;
  color: var(--mn-text-secondary);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}

.m-banner__text strong {
  color: var(--mn-text);
  font-weight: 700;
}

.m-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--mn-green);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--mn-radius-pill);
  text-decoration: none;
  white-space: nowrap;
  transition: var(--mn-ease);
  box-shadow: var(--mn-glow-green);
  flex-shrink: 0;
}

.m-banner__cta:active {
  transform: scale(0.96);
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.35);
}

.m-banner__cta svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.m-banner__close {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--mn-text-muted);
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: var(--mn-ease);
  flex-shrink: 0;
}

.m-banner__close:active {
  background: rgba(255,255,255,0.08);
  color: var(--mn-text);
}

.m-banner.is-hidden {
  display: none;
}

/* ═══════════════════════════════════════════
   SECTION 2: STICKY HEADER
   ═══════════════════════════════════════════ */
.m-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 11, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0 16px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--mn-border);
  transition: var(--mn-ease);
}

/* Soft bottom glow line */
.m-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 128, 237, 0.3), rgba(53, 200, 255, 0.2), transparent);
  pointer-events: none;
}

.m-header.is-scrolled {
  background: rgba(5, 11, 24, 0.95);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.m-header__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.92);
  padding: 4px 8px;
  border-radius: 10px;
}

.m-header__logo {
  height: 40px;
  width: auto;
  display: block;
}

.m-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.m-header__wa-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--mn-ease);
  box-shadow: var(--mn-glow-green);
}

.m-header__wa-btn:active {
  transform: scale(0.92);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.35);
}

.m-header__wa-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--mn-green);
}

.m-header__menu-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mn-bg-card);
  border: 1px solid var(--mn-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--mn-ease);
  box-shadow: var(--mn-neu-button);
}

.m-header__menu-btn:active {
  box-shadow: var(--mn-neu-pressed);
  transform: scale(0.95);
}

.m-header__menu-icon {
  width: 16px;
  height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.m-header__menu-icon span {
  display: block;
  height: 2px;
  background: var(--mn-text-secondary);
  border-radius: 2px;
  transition: var(--mn-ease);
}

.m-header__menu-icon span:nth-child(2) { width: 65%; }

/* ── Mobile Menu Overlay ── */
.m-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 5, 12, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.m-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.m-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 88%;
  max-width: 380px;
  height: 100%;
  background: linear-gradient(180deg, #0a1528 0%, #071222 100%);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-left: 1px solid var(--mn-border);
}

.m-menu.is-open {
  transform: translateX(0);
}

.m-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--mn-border);
}

.m-menu__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--mn-text);
}

.m-menu__close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mn-bg-card);
  border: 1px solid var(--mn-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--mn-text-muted);
  transition: var(--mn-ease);
  box-shadow: var(--mn-neu-button);
}

.m-menu__close:active {
  box-shadow: var(--mn-neu-pressed);
}

.m-menu__links {
  flex: 1;
  padding: 12px 16px;
}

.m-menu__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  margin-bottom: 6px;
  text-decoration: none;
  color: var(--mn-text-secondary);
  font-size: 14.5px;
  font-weight: 600;
  border-radius: var(--mn-radius-md);
  transition: var(--mn-ease);
}

.m-menu__link:active {
  background: rgba(47, 128, 237, 0.08);
  color: var(--mn-text);
  box-shadow: var(--mn-glow-blue);
}

.m-menu__link-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--mn-radius-sm);
  background: var(--mn-bg-card);
  border: 1px solid var(--mn-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: var(--mn-neu-button);
}

.m-menu__link-icon.blue { color: var(--mn-cyan); }
.m-menu__link-icon.green { color: var(--mn-green); }
.m-menu__link-icon.gold { color: var(--mn-gold); }
.m-menu__link-icon.navy { color: var(--mn-blue); }

.m-menu__link-arrow {
  margin-left: auto;
  color: var(--mn-text-muted);
  font-size: 14px;
  opacity: 0.5;
}

.m-menu__divider {
  height: 1px;
  background: var(--mn-border);
  margin: 8px 14px;
}

.m-menu__footer {
  padding: 16px;
  border-top: 1px solid var(--mn-border);
}

.m-menu__expert-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: var(--mn-green);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--mn-radius-md);
  text-decoration: none;
  transition: var(--mn-ease);
  box-shadow: var(--mn-glow-green);
}

.m-menu__expert-cta:active {
  background: rgba(37, 211, 102, 0.15);
  transform: scale(0.98);
}

.m-menu__expert-cta svg {
  width: 18px;
  height: 18px;
}

/* ═══════════════════════════════════════════
   SECTION 3: HERO SECTION
   ═══════════════════════════════════════════ */
.m-hero {
  position: relative;
  background: linear-gradient(170deg, #050B18 0%, #0a1830 35%, #0d1f40 60%, #071426 100%);
  padding: 28px 20px 80px;
  overflow: hidden;
  min-height: 400px;
}

/* Cyan glow behind headline area */
.m-hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(53, 200, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Flight path line */
.m-hero__path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.m-hero__path-line {
  position: absolute;
  top: 65%;
  left: -20%;
  width: 140%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(47, 128, 237, 0.05) 15%,
    rgba(53, 200, 255, 0.2) 40%,
    rgba(47, 128, 237, 0.35) 50%,
    rgba(53, 200, 255, 0.2) 60%,
    rgba(47, 128, 237, 0.05) 85%,
    transparent 100%);
  transform: rotate(-4deg);
  animation: mn-path-glow 4s ease-in-out infinite;
}

@keyframes mn-path-glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Neural network dots */
.m-hero__dot {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--mn-cyan);
  opacity: 0;
  animation: mn-dot-blink 3s ease-in-out infinite;
}

.m-hero__dot--1 { top: 25%; left: 15%; animation-delay: 0s; }
.m-hero__dot--2 { top: 40%; right: 20%; animation-delay: 0.8s; }
.m-hero__dot--3 { top: 70%; left: 30%; animation-delay: 1.6s; }
.m-hero__dot--4 { top: 55%; right: 35%; animation-delay: 2.4s; }
.m-hero__dot--5 { top: 80%; left: 60%; animation-delay: 0.4s; }

@keyframes mn-dot-blink {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* Airplane silhouette */
.m-hero__plane {
  position: absolute;
  right: 10px;
  top: 40px;
  width: 100px;
  height: 100px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(53, 200, 255, 0.1));
}

.m-hero__content {
  position: relative;
  z-index: 2;
}

/* Floating destination chips */
.m-hero__chips {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.m-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: var(--mn-bg-card);
  border: 1px solid var(--mn-border);
  border-radius: var(--mn-radius-pill);
  color: var(--mn-text-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  box-shadow: var(--mn-neu-button);
  animation: mn-chip-float 4s ease-in-out infinite;
}

.m-hero__chip:nth-child(2) { animation-delay: 0.7s; }
.m-hero__chip:nth-child(3) { animation-delay: 1.4s; }
.m-hero__chip:nth-child(4) { animation-delay: 2.1s; }

@keyframes mn-chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.m-hero__chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mn-cyan);
  box-shadow: 0 0 6px var(--mn-cyan);
  animation: mn-pulse 2s ease-in-out infinite;
}

@keyframes mn-pulse {
  0%, 100% { opacity: 0.4; box-shadow: 0 0 4px var(--mn-cyan); }
  50% { opacity: 1; box-shadow: 0 0 10px var(--mn-cyan); }
}

.m-hero__headline {
  font-size: 27px;
  font-weight: 900;
  color: var(--mn-text);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.m-hero__headline span {
  background: linear-gradient(135deg, var(--mn-cyan) 0%, var(--mn-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.m-hero__sub {
  font-size: 13px;
  color: var(--mn-text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 340px;
}

/* Hero Buttons */
.m-hero__actions {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.m-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 20px;
  border-radius: var(--mn-radius-md);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--mn-ease-bounce);
  min-height: 48px;
  border: none;
  cursor: pointer;
  font-family: var(--mn-font);
}

.m-hero__btn--primary {
  background: linear-gradient(135deg, var(--mn-blue) 0%, var(--mn-cyan) 100%);
  color: #fff;
  box-shadow: var(--mn-neu-raised), 0 0 20px rgba(47, 128, 237, 0.25);
  flex: 1;
}

.m-hero__btn--primary:active {
  transform: scale(0.97);
  box-shadow: var(--mn-neu-pressed), 0 0 30px rgba(53, 200, 255, 0.3);
}

.m-hero__btn--secondary {
  background: var(--mn-bg-card);
  color: var(--mn-green);
  border: 1px solid rgba(37, 211, 102, 0.25);
  box-shadow: var(--mn-neu-button);
  flex: 1;
}

.m-hero__btn--secondary:active {
  box-shadow: var(--mn-neu-pressed), var(--mn-glow-green);
  transform: scale(0.97);
}

.m-hero__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Trust Chips */
.m-hero__trust {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}

.m-hero__trust::-webkit-scrollbar { display: none; }

.m-hero__trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  background: var(--mn-bg-card);
  border: 1px solid var(--mn-border);
  border-radius: var(--mn-radius-pill);
  color: var(--mn-text-secondary);
  font-size: 10.5px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: var(--mn-neu-button);
}

.m-hero__trust-chip svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--mn-cyan);
}

/* ═══════════════════════════════════════════
   SECTION 4: FLIGHT SEARCH CARD
   ═══════════════════════════════════════════ */
.m-search {
  position: relative;
  margin: -52px 14px 0;
  z-index: 10;
}

.m-search__card {
  background: var(--mn-bg-card);
  border-radius: var(--mn-radius-xl);
  box-shadow: var(--mn-neu-raised), var(--mn-glow-blue);
  padding: 22px 18px;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

/* Subtle top-left highlight for neumorphic 3D */
.m-search__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(53, 200, 255, 0.15), transparent);
  pointer-events: none;
}

/* Search Card Header */
.m-search__header {
  text-align: center;
  margin-bottom: 18px;
}

.m-search__header-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 800;
  color: var(--mn-cyan);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.m-search__header-label svg {
  width: 14px;
  height: 14px;
}

.m-search__header-sub {
  font-size: 11.5px;
  color: var(--mn-text-muted);
  font-weight: 500;
}

/* Trip Type Tabs */
.m-search__tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  background: var(--mn-bg-input);
  border-radius: var(--mn-radius-pill);
  padding: 4px;
  box-shadow: var(--mn-neu-inset);
}

.m-search__tab {
  flex: 1;
  padding: 10px 8px;
  border: none;
  border-radius: var(--mn-radius-pill);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--mn-ease);
  background: transparent;
  color: var(--mn-text-muted);
  text-align: center;
  font-family: var(--mn-font);
}

.m-search__tab.is-active {
  background: linear-gradient(135deg, var(--mn-blue) 0%, var(--mn-cyan) 100%);
  color: #fff;
  box-shadow: 0 2px 12px rgba(47, 128, 237, 0.3);
}

/* Input Fields */
.m-search__fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.m-search__route {
  position: relative;
}

.m-search__field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--mn-bg-input);
  border: 1px solid var(--mn-border);
  border-radius: var(--mn-radius-md);
  cursor: pointer;
  transition: var(--mn-ease);
  box-shadow: var(--mn-neu-inset);
}

.m-search__field:focus-within,
.m-search__field:active {
  border-color: rgba(53, 200, 255, 0.3);
  box-shadow: var(--mn-neu-inset), 0 0 12px rgba(53, 200, 255, 0.1);
}

.m-search__field-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--mn-radius-sm);
  background: rgba(47, 128, 237, 0.08);
  border: 1px solid rgba(47, 128, 237, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.m-search__field-icon svg {
  width: 17px;
  height: 17px;
  color: var(--mn-cyan);
}

.m-search__field-content {
  flex: 1;
  min-width: 0;
}

.m-search__field-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--mn-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.m-search__field-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--mn-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.m-search__field-code {
  font-size: 11px;
  font-weight: 700;
  color: var(--mn-cyan);
  margin-left: 4px;
}

/* Swap Button */
.m-search__swap {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mn-bg-card);
  border: 1px solid var(--mn-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: var(--mn-ease-bounce);
  box-shadow: var(--mn-neu-button), 0 0 8px rgba(47, 128, 237, 0.1);
}

.m-search__swap:active {
  transform: translateY(-50%) rotate(180deg) scale(0.9);
  box-shadow: var(--mn-neu-pressed), var(--mn-glow-blue);
}

.m-search__swap svg {
  width: 16px;
  height: 16px;
  color: var(--mn-cyan);
}

/* Date & Traveller Row */
.m-search__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.m-search__row .m-search__field {
  padding: 12px 12px;
}

.m-search__row .m-search__field-icon {
  width: 30px;
  height: 30px;
}

.m-search__row .m-search__field-icon svg {
  width: 14px;
  height: 14px;
}

/* ═══════════════════════════════════════════
   SECTION 5: FARE TYPE CHIPS
   ═══════════════════════════════════════════ */
.m-search__fares {
  margin-top: 16px;
}

.m-search__fares-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--mn-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.m-search__fares-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}

.m-search__fares-row::-webkit-scrollbar { display: none; }

.m-search__fare-chip {
  padding: 8px 16px;
  border-radius: var(--mn-radius-pill);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--mn-border);
  background: var(--mn-bg-input);
  color: var(--mn-text-muted);
  white-space: nowrap;
  transition: var(--mn-ease);
  font-family: var(--mn-font);
  flex-shrink: 0;
  box-shadow: var(--mn-neu-button);
}

.m-search__fare-chip.is-active {
  background: linear-gradient(135deg, var(--mn-blue), var(--mn-cyan));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(47, 128, 237, 0.3);
}

.m-search__fare-note {
  font-size: 11px;
  color: var(--mn-gold);
  margin-top: 10px;
  display: none;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: var(--mn-gold-glow);
  border: 1px solid rgba(245, 199, 102, 0.15);
  border-radius: var(--mn-radius-sm);
}

.m-search__fare-note.is-visible {
  display: flex;
}

.m-search__fare-note svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--mn-gold);
}

/* ═══════════════════════════════════════════
   SECTION 6: SEARCH OPTIONS
   ═══════════════════════════════════════════ */
.m-search__options {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.m-search__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.m-search__option-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.m-search__option-text {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--mn-text-secondary);
}

.m-search__option-icon {
  width: 16px;
  height: 16px;
  color: var(--mn-text-muted);
}

/* Toggle Switch — Dark Neumorphic */
.m-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.m-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.m-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--mn-bg-input);
  border-radius: 24px;
  cursor: pointer;
  transition: var(--mn-ease);
  box-shadow: var(--mn-neu-inset);
  border: 1px solid var(--mn-border);
}

.m-toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 2px;
  background: var(--mn-text-muted);
  border-radius: 50%;
  transition: var(--mn-ease);
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.m-toggle input:checked + .m-toggle__slider {
  background: rgba(53, 200, 255, 0.15);
  border-color: rgba(53, 200, 255, 0.3);
  box-shadow: 0 0 10px rgba(53, 200, 255, 0.15);
}

.m-toggle input:checked + .m-toggle__slider::before {
  transform: translateX(20px);
  background: var(--mn-cyan);
  box-shadow: 0 0 8px var(--mn-cyan);
}

/* Trust option */
.m-search__trust-opt {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: rgba(37, 211, 102, 0.06);
  border: 1px solid rgba(37, 211, 102, 0.12);
  border-radius: var(--mn-radius-sm);
  margin-top: 4px;
}

.m-search__trust-opt svg {
  width: 16px;
  height: 16px;
  color: var(--mn-green);
  flex-shrink: 0;
}

.m-search__trust-opt span {
  font-size: 12px;
  font-weight: 600;
  color: var(--mn-green);
}

/* ═══════════════════════════════════════════
   SECTION 7: MAIN SEARCH CTA
   ═══════════════════════════════════════════ */
.m-search__cta-wrap {
  margin-top: 20px;
}

.m-search__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 54px;
  background: linear-gradient(135deg, var(--mn-blue) 0%, #1a6dd4 50%, var(--mn-cyan) 100%);
  background-size: 200% 200%;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  transition: var(--mn-ease);
  font-family: var(--mn-font);
  letter-spacing: 0.3px;
  box-shadow:
    var(--mn-neu-raised),
    0 0 24px rgba(47, 128, 237, 0.2),
    0 0 48px rgba(53, 200, 255, 0.08);
  position: relative;
  overflow: hidden;
  animation: mn-cta-shimmer 5s ease-in-out infinite;
}

@keyframes mn-cta-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.m-search__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transition: 0.6s;
}

.m-search__cta:active {
  transform: scale(0.98);
  box-shadow: var(--mn-neu-pressed), 0 0 32px rgba(53, 200, 255, 0.3);
}

.m-search__cta:active::before {
  left: 100%;
}

.m-search__cta svg {
  width: 18px;
  height: 18px;
}

.m-search__microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 11px;
  color: var(--mn-text-muted);
  text-align: center;
}

.m-search__microcopy svg {
  width: 13px;
  height: 13px;
  color: var(--mn-cyan);
  flex-shrink: 0;
}

.m-search__microcopy em {
  color: var(--mn-cyan);
  font-style: normal;
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   SECTION 8: QUICK TRUST BADGES
   ═══════════════════════════════════════════ */
.m-trust {
  padding: 24px 14px;
}

.m-trust__row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.m-trust__row::-webkit-scrollbar { display: none; }

.m-trust__badge {
  flex: 0 0 auto;
  min-width: 145px;
  padding: 16px;
  background: var(--mn-bg-card);
  border: 1px solid var(--mn-border);
  border-radius: 18px;
  box-shadow: var(--mn-neu-raised);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--mn-ease);
}

.m-trust__badge:active {
  box-shadow: var(--mn-neu-pressed);
  transform: scale(0.97);
}

.m-trust__badge-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--mn-radius-sm);
  background: rgba(47, 128, 237, 0.08);
  border: 1px solid rgba(47, 128, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.m-trust__badge-icon.blue svg { color: var(--mn-cyan); filter: drop-shadow(0 0 4px var(--mn-cyan)); }
.m-trust__badge-icon.green svg { color: var(--mn-green); filter: drop-shadow(0 0 4px var(--mn-green)); }
.m-trust__badge-icon.gold svg { color: var(--mn-gold); filter: drop-shadow(0 0 4px var(--mn-gold)); }
.m-trust__badge-icon.navy svg { color: var(--mn-blue); filter: drop-shadow(0 0 4px var(--mn-blue)); }

.m-trust__badge-text {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--mn-text);
  line-height: 1.3;
}

.m-trust__badge-sub {
  font-size: 10px;
  color: var(--mn-text-muted);
  font-weight: 500;
  margin-top: 1px;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
.m-fade-in {
  opacity: 0;
  transform: translateY(18px);
  animation: mn-fade-up 0.6s ease forwards;
}

.m-fade-in-delay-1 { animation-delay: 0.1s; }
.m-fade-in-delay-2 { animation-delay: 0.2s; }
.m-fade-in-delay-3 { animation-delay: 0.35s; }
.m-fade-in-delay-4 { animation-delay: 0.5s; }

@keyframes mn-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════════════════
   ═══════════════════════════════════════════════════════════════
   PHASE 2 — SECTIONS BELOW SEARCH CARD
   ═══════════════════════════════════════════════════════════════
   ═══════════════════════════════════════════════════════════════ */

/* ── Shared Section Spacing ── */
.mp2-section {
  padding: 28px 16px;
  position: relative;
}

.mp2-section__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--mn-text);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.mp2-section__sub {
  font-size: 12px;
  color: var(--mn-text-muted);
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   P2-S1: QUICK ACTIONS STRIP
   ═══════════════════════════════════════════ */
.mp2-actions__row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
}

.mp2-actions__row::-webkit-scrollbar { display: none; }

.mp2-actions__card {
  flex: 0 0 auto;
  width: 110px;
  padding: 18px 12px 14px;
  background: var(--mn-bg-card);
  border: 1px solid var(--mn-border);
  border-radius: 20px;
  box-shadow: var(--mn-neu-raised);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: var(--mn-ease);
  cursor: pointer;
}

.mp2-actions__card:active {
  box-shadow: var(--mn-neu-pressed);
  transform: scale(0.96);
}

.mp2-actions__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(47, 128, 237, 0.08);
  border: 1px solid rgba(47, 128, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.mp2-actions__icon svg {
  width: 20px;
  height: 20px;
  color: var(--mn-cyan);
}

.mp2-actions__icon.green {
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.12);
}

.mp2-actions__icon.green svg {
  color: var(--mn-green);
  filter: drop-shadow(0 0 4px rgba(37, 211, 102, 0.3));
}

.mp2-actions__icon.gold {
  background: rgba(245, 199, 102, 0.08);
  border-color: rgba(245, 199, 102, 0.1);
}

.mp2-actions__icon.gold svg {
  color: var(--mn-gold);
}

.mp2-actions__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--mn-text);
  margin-bottom: 2px;
  line-height: 1.2;
}

.mp2-actions__sub {
  font-size: 9.5px;
  color: var(--mn-text-muted);
  font-weight: 500;
  line-height: 1.3;
}

/* ═══════════════════════════════════════════
   P2-S2: LIVE OFFER / PROMOTION CARDS
   ═══════════════════════════════════════════ */
.mp2-offers__stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mp2-offer {
  position: relative;
  padding: 22px 18px;
  border-radius: 24px;
  border: 1px solid var(--mn-border);
  box-shadow: var(--mn-neu-raised);
  overflow: hidden;
  transition: var(--mn-ease);
}

.mp2-offer:active {
  transform: scale(0.99);
}

/* Gold / VIP offer */
.mp2-offer--gold {
  background: linear-gradient(145deg, #101B2F 0%, #0e1a2c 100%);
  border-color: rgba(245, 199, 102, 0.15);
  box-shadow: var(--mn-neu-raised), 0 0 20px rgba(245, 199, 102, 0.06);
}

.mp2-offer--gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 199, 102, 0.3), transparent);
}

/* Premium / luxury offer */
.mp2-offer--premium {
  background: linear-gradient(145deg, #0d1929 0%, #080f1e 100%);
  border-color: rgba(53, 200, 255, 0.1);
  box-shadow: var(--mn-neu-raised), 0 0 16px rgba(53, 200, 255, 0.04);
}

.mp2-offer--premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(53, 200, 255, 0.2), transparent);
}

.mp2-offer__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--mn-radius-pill);
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.mp2-offer--gold .mp2-offer__badge {
  background: var(--mn-gold-glow);
  color: var(--mn-gold);
  border: 1px solid rgba(245, 199, 102, 0.2);
}

.mp2-offer--premium .mp2-offer__badge {
  background: rgba(53, 200, 255, 0.08);
  color: var(--mn-cyan);
  border: 1px solid rgba(53, 200, 255, 0.15);
}

.mp2-offer__badge svg {
  width: 11px;
  height: 11px;
}

.mp2-offer__top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.mp2-offer__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mp2-offer--gold .mp2-offer__icon-wrap {
  background: rgba(245, 199, 102, 0.1);
  border: 1px solid rgba(245, 199, 102, 0.15);
}

.mp2-offer--premium .mp2-offer__icon-wrap {
  background: rgba(53, 200, 255, 0.08);
  border: 1px solid rgba(53, 200, 255, 0.12);
}

.mp2-offer__icon-wrap svg {
  width: 22px;
  height: 22px;
}

.mp2-offer--gold .mp2-offer__icon-wrap svg {
  color: var(--mn-gold);
  filter: drop-shadow(0 0 6px rgba(245, 199, 102, 0.3));
}

.mp2-offer--premium .mp2-offer__icon-wrap svg {
  color: var(--mn-cyan);
  filter: drop-shadow(0 0 6px rgba(53, 200, 255, 0.3));
}

.mp2-offer__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--mn-text);
  margin-bottom: 4px;
  line-height: 1.25;
}

.mp2-offer__desc {
  font-size: 12px;
  color: var(--mn-text-muted);
  line-height: 1.55;
  font-weight: 500;
}

.mp2-offer__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--mn-radius-pill);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--mn-ease);
  border: none;
  cursor: pointer;
  font-family: var(--mn-font);
}

.mp2-offer--gold .mp2-offer__cta {
  background: linear-gradient(135deg, var(--mn-gold), #e0b45a);
  color: #0a1628;
  box-shadow: 0 4px 16px rgba(245, 199, 102, 0.25);
}

.mp2-offer--premium .mp2-offer__cta {
  background: linear-gradient(135deg, var(--mn-blue), var(--mn-cyan));
  color: #fff;
  box-shadow: 0 4px 16px rgba(47, 128, 237, 0.25);
}

.mp2-offer__cta:active {
  transform: scale(0.96);
}

.mp2-offer__cta svg {
  width: 14px;
  height: 14px;
}

/* Boarding pass dashed line */
.mp2-offer__divider {
  border: none;
  border-top: 1px dashed rgba(255,255,255,0.06);
  margin: 14px 0;
}

/* ═══════════════════════════════════════════
   P2-S3: WHATSAPP ASSISTED BOOKING CTA
   ═══════════════════════════════════════════ */
.mp2-wa-cta {
  margin: 0 16px;
  padding: 20px;
  background: var(--mn-bg-card-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(37, 211, 102, 0.12);
  border-radius: 22px;
  box-shadow: var(--mn-neu-raised), var(--mn-glow-green);
  position: relative;
  overflow: hidden;
}

.mp2-wa-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.3), transparent);
}

.mp2-wa-cta__top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.mp2-wa-cta__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mp2-wa-cta__icon svg {
  width: 22px;
  height: 22px;
  fill: var(--mn-green);
  filter: drop-shadow(0 0 6px rgba(37, 211, 102, 0.4));
}

.mp2-wa-cta__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--mn-text);
  margin-bottom: 4px;
}

.mp2-wa-cta__sub {
  font-size: 12px;
  color: var(--mn-text-muted);
  line-height: 1.5;
  font-weight: 500;
}

.mp2-wa-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  background: var(--mn-green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: var(--mn-radius-md);
  text-decoration: none;
  cursor: pointer;
  font-family: var(--mn-font);
  transition: var(--mn-ease);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.mp2-wa-cta__btn:active {
  transform: scale(0.97);
  box-shadow: 0 0 28px rgba(37, 211, 102, 0.35);
}

.mp2-wa-cta__btn svg {
  width: 18px;
  height: 18px;
}

.mp2-wa-cta__micro {
  text-align: center;
  font-size: 10.5px;
  color: var(--mn-text-muted);
  margin-top: 10px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   P2-S4: WHY BOOK WITH THEBOOKFLIGHT
   ═══════════════════════════════════════════ */
.mp2-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mp2-why__card {
  padding: 18px 14px;
  background: var(--mn-bg-card);
  border: 1px solid var(--mn-border);
  border-radius: 22px;
  box-shadow: var(--mn-neu-raised);
  transition: var(--mn-ease);
}

.mp2-why__card:active {
  box-shadow: var(--mn-neu-pressed);
  transform: scale(0.97);
}

.mp2-why__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.mp2-why__icon svg {
  width: 20px;
  height: 20px;
}

.mp2-why__icon.cyan {
  background: rgba(53, 200, 255, 0.08);
  border: 1px solid rgba(53, 200, 255, 0.12);
}
.mp2-why__icon.cyan svg {
  color: var(--mn-cyan);
  filter: drop-shadow(0 0 5px rgba(53, 200, 255, 0.3));
}

.mp2-why__icon.blue {
  background: rgba(47, 128, 237, 0.08);
  border: 1px solid rgba(47, 128, 237, 0.1);
}
.mp2-why__icon.blue svg {
  color: var(--mn-blue);
  filter: drop-shadow(0 0 5px rgba(47, 128, 237, 0.3));
}

.mp2-why__icon.green {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.1);
}
.mp2-why__icon.green svg {
  color: var(--mn-green);
  filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.3));
}

.mp2-why__icon.gold {
  background: var(--mn-gold-glow);
  border: 1px solid rgba(245, 199, 102, 0.12);
}
.mp2-why__icon.gold svg {
  color: var(--mn-gold);
  filter: drop-shadow(0 0 5px rgba(245, 199, 102, 0.3));
}

.mp2-why__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--mn-text);
  margin-bottom: 5px;
  line-height: 1.2;
}

.mp2-why__desc {
  font-size: 11px;
  color: var(--mn-text-muted);
  line-height: 1.5;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   P2-S5: HOW BOOKING WORKS TIMELINE
   ═══════════════════════════════════════════ */
.mp2-steps {
  position: relative;
  padding-left: 34px;
}

/* Vertical glowing line */
.mp2-steps::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg,
    rgba(53, 200, 255, 0.4) 0%,
    rgba(47, 128, 237, 0.3) 50%,
    rgba(53, 200, 255, 0.15) 100%);
  border-radius: 2px;
}

.mp2-step {
  position: relative;
  padding: 18px 16px;
  margin-bottom: 14px;
  background: var(--mn-bg-card);
  border: 1px solid var(--mn-border);
  border-radius: 20px;
  box-shadow: var(--mn-neu-raised);
}

.mp2-step:last-child {
  margin-bottom: 0;
}

/* Numbered circle */
.mp2-step__num {
  position: absolute;
  left: -34px;
  top: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mn-bg-card);
  border: 2px solid rgba(53, 200, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--mn-cyan);
  box-shadow: 0 0 12px rgba(53, 200, 255, 0.15);
  z-index: 2;
}

.mp2-step__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.mp2-step__icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(47, 128, 237, 0.08);
  border: 1px solid rgba(47, 128, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mp2-step__icon svg {
  width: 16px;
  height: 16px;
  color: var(--mn-cyan);
}

.mp2-step__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--mn-text);
}

.mp2-step__desc {
  font-size: 11.5px;
  color: var(--mn-text-muted);
  line-height: 1.55;
  font-weight: 500;
  padding-left: 42px;
}

/* ═══════════════════════════════════════════
   P2-S6: MINI TRUST FOOTER
   ═══════════════════════════════════════════ */
.mp2-footer {
  margin: 0 16px 20px;
  padding: 18px;
  background: var(--mn-bg-card-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--mn-border-glow);
  border-radius: 18px;
  box-shadow: var(--mn-neu-raised);
}

.mp2-footer__text {
  font-size: 11.5px;
  color: var(--mn-text-muted);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 14px;
  font-weight: 500;
}

.mp2-footer__badges {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: center;
  flex-wrap: wrap;
}

.mp2-footer__badges::-webkit-scrollbar { display: none; }

.mp2-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: var(--mn-bg-input);
  border: 1px solid var(--mn-border);
  border-radius: var(--mn-radius-pill);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--mn-text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: var(--mn-neu-button);
}

.mp2-footer__badge svg {
  width: 12px;
  height: 12px;
  color: var(--mn-cyan);
  opacity: 0.7;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 340px) {
  .m-hero__headline { font-size: 23px; }
  .m-hero__actions { flex-direction: column; }
  .m-search__row { grid-template-columns: 1fr; }
  .m-search__card { padding: 16px 14px; }
  .mp2-why__grid { grid-template-columns: 1fr; }
}

@media (min-width: 414px) {
  .m-hero__headline { font-size: 29px; }
  .m-hero__sub { font-size: 14px; }
  .m-search__card { padding: 24px 20px; }
}

/* ═══════════════════════════════════════════
   VISIBILITY RULES
   ═══════════════════════════════════════════ */
@media (min-width: 769px) {
  .m-homepage {
    display: none !important;
  }
}

/* On mobile homepage: hide existing desktop chrome */
@media (max-width: 768px) {
  body.is-homepage .tbf-topbar,
  body.is-homepage .tbf-header,
  body.is-homepage #tbfNoticeBanner,
  body.is-homepage .app-bottom-tab,
  body.is-homepage .sticky-search-cta,
  body.is-homepage .app-sticky-cta {
    display: none !important;
  }

  body.is-homepage {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    background: #050B18 !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE SEARCH MODALS — Airport, Date, Pax
   Dark Neumorphic Theme
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* --- Modal Base --- */
  .ms-modal {
    position: fixed; inset: 0; z-index: 100000;
    display: flex; align-items: flex-end; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
    pointer-events: none;
  }
  .ms-modal.is-open { opacity: 1; pointer-events: auto; }
  .ms-modal__backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
  }
  .ms-modal__sheet {
    position: relative; z-index: 2;
    width: 100%; max-height: 90vh;
    background: linear-gradient(145deg, #0d1a30, #0a1525);
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(.22,1,.36,1);
    display: flex; flex-direction: column;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.6),
                inset 0 1px 0 rgba(53,200,255,0.08);
  }
  .ms-modal.is-open .ms-modal__sheet { transform: translateY(0); }
  .ms-modal__header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(53,200,255,0.08);
  }
  .ms-modal__title {
    font-size: 16px; font-weight: 700;
    color: #e8edf5;
  }
  .ms-modal__close {
    width: 32px; height: 32px; border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5); font-size: 18px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
  }
  .ms-modal__body {
    flex: 1; overflow-y: auto;
    padding: 0 0 env(safe-area-inset-bottom, 16px) 0;
    -webkit-overflow-scrolling: touch;
  }

  /* --- Airport Search --- */
  .ms-airport-search {
    padding: 12px 16px;
    position: sticky; top: 0; z-index: 2;
    background: linear-gradient(145deg, #0d1a30, #0a1525);
  }
  .ms-airport-input {
    width: 100%; padding: 14px 16px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(53,200,255,0.12);
    border-radius: 14px;
    color: #e8edf5; font-size: 15px;
    outline: none;
    box-shadow: inset 3px 3px 6px rgba(0,0,0,0.3),
                inset -2px -2px 4px rgba(255,255,255,0.02);
  }
  .ms-airport-input::placeholder { color: rgba(255,255,255,0.3); }
  .ms-airport-input:focus { border-color: rgba(47,128,237,0.5); }

  .ms-airport-heading {
    padding: 10px 20px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: rgba(53,200,255,0.5);
    background: rgba(0,0,0,0.2);
  }
  .ms-airport-list {
    padding-bottom: 20px;
  }
  .ms-airport-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    cursor: pointer;
    transition: background 0.2s;
  }
  .ms-airport-item:active { background: rgba(47,128,237,0.1); }
  .ms-airport-item.is-selected {
    background: rgba(47,128,237,0.08);
    border-left: 3px solid #2F80ED;
  }
  .ms-airport-item__left {
    display: flex; gap: 12px; align-items: center; flex: 1; min-width: 0;
  }
  .ms-airport-item__icon {
    width: 20px; height: 20px; flex-shrink: 0;
    color: rgba(53,200,255,0.4);
  }
  .ms-airport-item__city {
    font-size: 14px; font-weight: 600; color: #e8edf5;
  }
  .ms-airport-item__name {
    font-size: 11px; color: rgba(255,255,255,0.35);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 220px;
  }
  .ms-airport-item__code {
    font-size: 14px; font-weight: 800; color: #2F80ED;
    flex-shrink: 0; margin-left: 12px;
    background: rgba(47,128,237,0.1);
    padding: 4px 10px; border-radius: 8px;
  }

  /* --- Calendar (Date Picker) --- */
  .ms-cal {
    padding: 16px 20px;
  }
  .ms-cal__nav {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px;
  }
  .ms-cal__nav-btn {
    width: 40px; height: 40px; border-radius: 12px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.06);
    color: #e8edf5; font-size: 22px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.3), -2px -2px 4px rgba(255,255,255,0.02);
  }
  .ms-cal__nav-btn:active { transform: scale(0.95); }
  .ms-cal__month {
    font-size: 16px; font-weight: 700; color: #e8edf5;
  }
  .ms-cal__weekdays {
    display: grid; grid-template-columns: repeat(7, 1fr);
    text-align: center; margin-bottom: 8px;
  }
  .ms-cal__weekdays span {
    font-size: 12px; font-weight: 700;
    color: rgba(53,200,255,0.4);
    padding: 6px 0;
  }
  .ms-cal__days {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 4px;
  }
  .ms-cal__day {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    border-radius: 12px; font-size: 14px; font-weight: 600;
    color: #e8edf5; cursor: pointer;
    transition: all 0.2s;
    padding: 6px 2px;
    min-height: 48px;
  }
  .ms-cal__day--has-fare {
    min-height: 56px;
    padding: 4px 2px;
  }
  .ms-cal__day-num {
    line-height: 1.2;
  }
  .ms-cal__fare {
    font-size: 9px;
    font-weight: 700;
    color: #35C8FF;
    margin-top: 1px;
    line-height: 1;
    opacity: 0.85;
  }
  .ms-cal__day--lowest .ms-cal__fare {
    color: #41D37E;
    opacity: 1;
  }
  .ms-cal__day--lowest:not(.ms-cal__day--selected) {
    background: rgba(65,211,126,0.08);
    border: 1px solid rgba(65,211,126,0.15);
  }
  .ms-cal__day:active:not(.ms-cal__day--disabled):not(.ms-cal__day--empty) {
    transform: scale(0.9);
  }
  .ms-cal__day--empty { cursor: default; }
  .ms-cal__day--disabled {
    color: rgba(255,255,255,0.15); cursor: default;
  }
  .ms-cal__day--disabled .ms-cal__fare { display: none; }
  .ms-cal__day--today {
    border: 1px solid rgba(47,128,237,0.4);
  }
  .ms-cal__day--selected {
    background: linear-gradient(135deg, #2F80ED, #1a5bbf) !important;
    color: #fff !important;
    box-shadow: 0 0 12px rgba(47,128,237,0.4);
  }
  .ms-cal__day--selected .ms-cal__fare { color: rgba(255,255,255,0.8); }
  .ms-cal__day:not(.ms-cal__day--disabled):not(.ms-cal__day--empty):not(.ms-cal__day--selected):hover {
    background: rgba(47,128,237,0.12);
  }

  /* Fare hint & loading */
  .ms-cal__fare-hint {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 0 10px;
    font-size: 11px; color: #7F8EA8;
  }
  .ms-cal__fare-hint svg { fill: #35C8FF; flex-shrink: 0; }
  .ms-cal__loading {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px;
    font-size: 12px; color: #7F8EA8;
  }
  .ms-cal__spinner {
    display: inline-block; width: 14px; height: 14px;
    border: 2px solid rgba(53,200,255,0.2);
    border-top-color: #35C8FF; border-radius: 50%;
    animation: msCalSpin 0.7s linear infinite;
  }
  @keyframes msCalSpin { to { transform: rotate(360deg); } }

  /* --- Pax & Cabin --- */
  .ms-pax {
    padding: 16px 20px;
  }
  .ms-pax__row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .ms-pax__info strong {
    display: block; font-size: 15px; color: #e8edf5;
  }
  .ms-pax__info span {
    font-size: 12px; color: rgba(255,255,255,0.35);
  }
  .ms-pax__stepper {
    display: flex; align-items: center; gap: 12px;
    background: rgba(0,0,0,0.3);
    border-radius: 12px; padding: 6px;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.4),
                inset -2px -2px 4px rgba(255,255,255,0.02);
  }
  .ms-pax__btn {
    width: 38px; height: 38px; border-radius: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.06);
    color: #fff; font-size: 20px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3), -1px -1px 3px rgba(255,255,255,0.03);
    transition: all 0.2s;
  }
  .ms-pax__btn:active {
    transform: scale(0.9);
    box-shadow: inset 2px 2px 4px rgba(0,0,0,0.4);
    color: #35C8FF;
  }
  .ms-pax__val {
    width: 28px; text-align: center;
    font-size: 16px; font-weight: 800; color: #e8edf5;
  }
  .ms-pax__divider {
    height: 1px; margin: 16px 0;
    background: rgba(53,200,255,0.08);
  }
  .ms-pax__cabin-label {
    font-size: 14px; font-weight: 700; color: #e8edf5;
    margin-bottom: 12px;
  }
  .ms-pax__cabin-pills {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .ms-pax__cabin {
    padding: 10px 16px; border-radius: 12px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5); font-size: 13px; font-weight: 600;
    cursor: pointer; transition: all 0.2s;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2), -1px -1px 3px rgba(255,255,255,0.02);
  }
  .ms-pax__cabin.is-active {
    background: rgba(47,128,237,0.15);
    border-color: rgba(47,128,237,0.4);
    color: #2F80ED;
    box-shadow: inset 2px 2px 4px rgba(0,0,0,0.2), 0 0 8px rgba(47,128,237,0.15);
  }
  .ms-pax__done {
    width: 100%; padding: 14px;
    background: linear-gradient(135deg, #2F80ED, #1a5bbf);
    border: none; border-radius: 14px;
    color: #fff; font-size: 15px; font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(47,128,237,0.3);
    transition: all 0.2s;
  }
  .ms-pax__done:active { transform: scale(0.98); }

  /* --- Search Error Toast --- */
  .ms-error {
    display: none;
    padding: 12px 16px;
    margin: 0 0 12px 0;
    background: rgba(255,77,77,0.1);
    border: 1px solid rgba(255,77,77,0.3);
    border-radius: 12px;
    color: #ff6b6b;
    font-size: 13px; font-weight: 600;
    text-align: center;
    animation: msErrorIn 0.3s ease;
  }
  @keyframes msErrorIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Make search fields look clickable */
  .m-search__field {
    cursor: pointer;
  }
  .m-search__field:active {
    transform: scale(0.98);
  }
}

/* ═══════════════════════════════════════════════════════════════
   PHASE 3 — Trending Routes, Group Travel, Enquiry Form
   Dark Neumorphic Theme
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Section: Trending Routes ── */
  .mp3-routes {
    padding: 40px 0 24px;
  }
  .mp3-routes__header {
    padding: 0 20px 20px;
  }
  .mp3-routes__title {
    font-size: 22px; font-weight: 800; color: #fff;
    margin: 0 0 6px;
  }
  .mp3-routes__sub {
    font-size: 13px; color: #7F8EA8; margin: 0;
  }

  /* Route Scroll */
  .mp3-routes__scroll {
    display: flex; gap: 14px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 0 20px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mp3-routes__scroll::-webkit-scrollbar { display: none; }

  /* Route Card — Boarding Pass Style */
  .mp3-route {
    flex: 0 0 260px; scroll-snap-align: start;
    background: #111D33;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 0;
    text-decoration: none;
    display: flex; flex-direction: column;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 6px 6px 16px rgba(0,0,0,0.4),
                -3px -3px 10px rgba(255,255,255,0.02);
  }
  .mp3-route:active {
    transform: scale(0.97);
  }

  /* Badge */
  .mp3-route__badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 6px 14px;
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.8px;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .mp3-route__badge--cyan { color: #35C8FF; }
  .mp3-route__badge--gold { color: #F5C766; }
  .mp3-route__badge--blue { color: #2F80ED; }
  .mp3-route__badge--green { color: #41D37E; }

  /* Body */
  .mp3-route__body {
    padding: 16px 18px 14px;
    flex: 1;
  }
  .mp3-route__cities {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 6px;
  }
  .mp3-route__city {
    font-size: 15px; font-weight: 700; color: #fff;
  }
  .mp3-route__path {
    flex: 1; display: flex; align-items: center; justify-content: center;
    position: relative; margin: 0 10px;
  }
  .mp3-route__path-line {
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, #35C8FF, transparent);
  }
  .mp3-route__plane {
    position: absolute;
    width: 16px; height: 16px;
    fill: #35C8FF;
    animation: mp3PlaneFloat 3s ease-in-out infinite;
  }
  @keyframes mp3PlaneFloat {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
  }
  .mp3-route__codes {
    display: flex; align-items: center; gap: 6px;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .mp3-route__code {
    font-size: 13px; font-weight: 800; color: #35C8FF;
    letter-spacing: 0.5px;
  }
  .mp3-route__arrow {
    font-size: 12px; color: rgba(255,255,255,0.2);
    flex: 1; text-align: center;
  }
  .mp3-route__detail {
    font-size: 10px; color: #7F8EA8;
  }

  /* CTA */
  .mp3-route__cta {
    padding: 0 18px 16px;
  }
  .mp3-route__cta-btn {
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: 10px;
    background: linear-gradient(135deg, rgba(47,128,237,0.15), rgba(53,200,255,0.08));
    border: 1px solid rgba(47,128,237,0.25);
    border-radius: 12px;
    color: #2F80ED; font-size: 13px; font-weight: 700;
    transition: all 0.2s;
  }
  .mp3-route:active .mp3-route__cta-btn {
    background: linear-gradient(135deg, rgba(47,128,237,0.3), rgba(53,200,255,0.15));
  }

  /* Fare Disclaimer */
  .mp3-routes__disclaimer {
    display: flex; align-items: flex-start; gap: 8px;
    margin: 0 20px;
    padding: 10px 14px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(53,200,255,0.06);
    border-radius: 12px;
  }
  .mp3-routes__disclaimer svg {
    width: 14px; height: 14px; flex-shrink: 0;
    fill: #35C8FF; margin-top: 1px;
  }
  .mp3-routes__disclaimer span {
    font-size: 11px; color: #7F8EA8; line-height: 1.4;
  }

  /* ── Section: Group Travel Desk ── */
  .mp3-group {
    padding: 40px 20px 0;
  }
  .mp3-group__card {
    background: #101B2F;
    border-radius: 26px;
    border: 1px solid rgba(53,200,255,0.06);
    padding: 28px 22px;
    box-shadow: 8px 8px 20px rgba(0,0,0,0.4),
                -4px -4px 12px rgba(255,255,255,0.015),
                0 0 30px rgba(47,128,237,0.04);
  }
  .mp3-group__icon-wrap {
    width: 52px; height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(47,128,237,0.15), rgba(53,200,255,0.08));
    border: 1px solid rgba(47,128,237,0.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
  }
  .mp3-group__icon {
    width: 26px; height: 26px; fill: #2F80ED;
  }
  .mp3-group__title {
    font-size: 20px; font-weight: 800; color: #fff;
    margin: 0 0 8px; line-height: 1.3;
  }
  .mp3-group__gold {
    color: #F5C766;
  }
  .mp3-group__sub {
    font-size: 13px; color: #B8C7E0; margin: 0 0 20px;
    line-height: 1.5;
  }

  /* Category Chips */
  .mp3-group__chips {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 24px;
  }
  .mp3-group__chip {
    padding: 7px 14px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    font-size: 12px; font-weight: 600; color: #B8C7E0;
    box-shadow: inset 2px 2px 4px rgba(0,0,0,0.2),
                inset -1px -1px 3px rgba(255,255,255,0.02);
  }
  .mp3-group__chip--gold {
    border-color: rgba(245,199,102,0.25);
    color: #F5C766;
  }

  /* Benefits Grid */
  .mp3-group__benefits {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  }
  .mp3-group__benefit {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.25),
                -2px -2px 6px rgba(255,255,255,0.01);
  }
  .mp3-group__benefit-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 10px;
  }
  .mp3-group__benefit-icon svg {
    width: 18px; height: 18px;
  }
  .mp3-group__benefit-icon--blue {
    background: rgba(47,128,237,0.12);
    border: 1px solid rgba(47,128,237,0.15);
  }
  .mp3-group__benefit-icon--blue svg { fill: #2F80ED; }
  .mp3-group__benefit-icon--cyan {
    background: rgba(53,200,255,0.1);
    border: 1px solid rgba(53,200,255,0.12);
  }
  .mp3-group__benefit-icon--cyan svg { fill: #35C8FF; }
  .mp3-group__benefit-icon--gold {
    background: rgba(245,199,102,0.1);
    border: 1px solid rgba(245,199,102,0.12);
  }
  .mp3-group__benefit-icon--gold svg { fill: #F5C766; }
  .mp3-group__benefit-icon--green {
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.12);
  }
  .mp3-group__benefit-icon--green svg { fill: #25D366; }
  .mp3-group__benefit-text strong {
    display: block;
    font-size: 12px; font-weight: 700; color: #e8edf5;
    margin-bottom: 4px;
  }
  .mp3-group__benefit-text span {
    font-size: 11px; color: #7F8EA8; line-height: 1.4;
  }

  /* ── Section: Group Form ── */
  .mp3-form-section {
    padding: 32px 20px 0;
  }
  .mp3-form-card {
    background: #101B2F;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 28px 22px;
    box-shadow: 8px 8px 20px rgba(0,0,0,0.4),
                -4px -4px 12px rgba(255,255,255,0.015);
  }
  .mp3-form-card__title {
    font-size: 20px; font-weight: 800; color: #fff;
    margin: 0 0 6px;
  }
  .mp3-form-card__sub {
    font-size: 13px; color: #B8C7E0; margin: 0 0 24px;
    line-height: 1.5;
  }

  /* Form Success */
  .mp3-form-success {
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    padding: 32px 16px; gap: 12px;
  }
  .mp3-form-success svg {
    width: 48px; height: 48px; fill: #41D37E;
  }
  .mp3-form-success strong {
    font-size: 18px; color: #41D37E;
  }
  .mp3-form-success span {
    font-size: 14px; color: #B8C7E0; line-height: 1.5;
  }

  /* Form Error */
  .mp3-form__error {
    padding: 12px 16px;
    margin-bottom: 16px;
    background: rgba(255,107,107,0.1);
    border: 1px solid rgba(255,107,107,0.25);
    border-radius: 12px;
    color: #FF6B6B;
    font-size: 13px; font-weight: 600;
    text-align: center;
  }

  /* Form Fields */
  .mp3-form {
    display: flex; flex-direction: column; gap: 16px;
  }
  .mp3-form__field {
    display: flex; flex-direction: column; gap: 6px;
    flex: 1;
  }
  .mp3-form__row {
    display: flex; gap: 12px;
  }
  .mp3-form__label {
    font-size: 11px; font-weight: 700;
    color: #7F8EA8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .mp3-form__input {
    width: 100%;
    padding: 13px 14px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    color: #e8edf5;
    font-size: 14px; font-weight: 500;
    font-family: inherit;
    outline: none;
    box-shadow: inset 3px 3px 6px rgba(0,0,0,0.3),
                inset -2px -2px 4px rgba(255,255,255,0.02);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
  }
  .mp3-form__input::placeholder { color: #7F8EA8; }
  .mp3-form__input:focus {
    border-color: rgba(53,200,255,0.4);
    box-shadow: inset 3px 3px 6px rgba(0,0,0,0.3),
                inset -2px -2px 4px rgba(255,255,255,0.02),
                0 0 8px rgba(53,200,255,0.1);
  }
  .mp3-form__select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237F8EA8'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 34px;
  }
  .mp3-form__select option {
    background: #0d1a30;
    color: #e8edf5;
  }
  .mp3-form__textarea {
    resize: vertical;
    min-height: 70px;
  }

  /* Submit Button */
  .mp3-form__submit {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 15px;
    background: linear-gradient(135deg, #2F80ED, #1a5bbf);
    border: none; border-radius: 16px;
    color: #fff; font-size: 15px; font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(47,128,237,0.3);
    transition: all 0.2s;
  }
  .mp3-form__submit svg {
    width: 18px; height: 18px;
  }
  .mp3-form__submit:active { transform: scale(0.98); }
  .mp3-form__submit:disabled {
    opacity: 0.6; pointer-events: none;
  }

  /* Spinner */
  .mp3-spinner {
    display: inline-block;
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: mp3Spin 0.7s linear infinite;
  }
  @keyframes mp3Spin {
    to { transform: rotate(360deg); }
  }

  /* OR divider */
  .mp3-form__or {
    text-align: center;
    position: relative;
    margin: 4px 0;
  }
  .mp3-form__or span {
    font-size: 12px; font-weight: 600;
    color: #7F8EA8;
    background: #101B2F;
    padding: 0 12px;
    position: relative; z-index: 1;
  }
  .mp3-form__or::before {
    content: '';
    position: absolute; top: 50%; left: 0; right: 0;
    height: 1px;
    background: rgba(255,255,255,0.06);
  }

  /* WhatsApp Button */
  .mp3-form__wa-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 14px;
    background: linear-gradient(135deg, #25D366, #1fb855);
    border: none; border-radius: 16px;
    color: #fff; font-size: 15px; font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,211,102,0.25);
    transition: all 0.2s;
  }
  .mp3-form__wa-btn svg {
    width: 18px; height: 18px;
  }
  .mp3-form__wa-btn:active { transform: scale(0.98); }

  /* ── Section: Urgent Group CTA ── */
  .mp3-urgentcta {
    padding: 32px 20px 40px;
  }
  .mp3-urgentcta__card {
    background: linear-gradient(145deg, #111D33, #0d1a30);
    border-radius: 24px;
    border: 1px solid rgba(53,200,255,0.08);
    padding: 28px 22px;
    text-align: center;
    box-shadow: 8px 8px 20px rgba(0,0,0,0.4),
                -4px -4px 12px rgba(255,255,255,0.015),
                0 0 40px rgba(47,128,237,0.04);
  }
  .mp3-urgentcta__icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(47,128,237,0.15), rgba(53,200,255,0.08));
    border: 1px solid rgba(47,128,237,0.2);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
  }
  .mp3-urgentcta__icon svg {
    width: 22px; height: 22px; fill: #35C8FF;
  }
  .mp3-urgentcta__title {
    font-size: 17px; font-weight: 800; color: #fff;
    margin: 0 0 8px;
  }
  .mp3-urgentcta__sub {
    font-size: 13px; color: #B8C7E0; margin: 0 0 20px;
    line-height: 1.5;
  }
  .mp3-urgentcta__btns {
    display: flex; gap: 10px;
  }
  .mp3-urgentcta__btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 13px 10px;
    border-radius: 14px;
    font-size: 13px; font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
  }
  .mp3-urgentcta__btn svg {
    width: 16px; height: 16px;
  }
  .mp3-urgentcta__btn:active { transform: scale(0.97); }
  .mp3-urgentcta__btn--wa {
    background: linear-gradient(135deg, #25D366, #1fb855);
    color: #fff;
    box-shadow: 0 4px 12px rgba(37,211,102,0.25);
  }
  .mp3-urgentcta__btn--wa svg { fill: #fff; }
  .mp3-urgentcta__btn--call {
    background: linear-gradient(135deg, rgba(47,128,237,0.15), rgba(53,200,255,0.08));
    border: 1px solid rgba(47,128,237,0.25);
    color: #2F80ED;
  }
  .mp3-urgentcta__btn--call svg { fill: #2F80ED; }
}

/* ═══════════════════════════════════════════════════════════════
   PHASE 4 — Corporate · Holidays · Testimonials · Credibility
   Dark Neumorphic Theme
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── CORPORATE TRAVEL ── */
  .mp4-corp {
    padding: 40px 20px 0;
  }
  .mp4-corp__header {
    margin-bottom: 20px;
  }
  .mp4-corp__badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(245,199,102,0.25);
    border-radius: 20px;
    font-size: 11px; font-weight: 700; color: #F5C766;
    text-transform: uppercase; letter-spacing: 0.6px;
    margin-bottom: 14px;
  }
  .mp4-corp__badge svg { width: 13px; height: 13px; }
  .mp4-corp__title {
    font-size: 22px; font-weight: 800; color: #fff;
    margin: 0 0 8px; line-height: 1.3;
  }
  .mp4-corp__gold { color: #F5C766; }
  .mp4-corp__sub {
    font-size: 13px; color: #B8C7E0; margin: 0;
    line-height: 1.5;
  }

  /* Feature Chips */
  .mp4-corp__chips {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 24px;
  }
  .mp4-corp__chip {
    padding: 7px 14px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    font-size: 12px; font-weight: 600; color: #B8C7E0;
    box-shadow: inset 2px 2px 4px rgba(0,0,0,0.2),
                inset -1px -1px 3px rgba(255,255,255,0.02);
  }
  .mp4-corp__chip--gold {
    border-color: rgba(245,199,102,0.25);
    color: #F5C766;
  }
  .mp4-corp__chip--cyan {
    border-color: rgba(53,200,255,0.2);
    color: #35C8FF;
  }

  /* Benefits Grid */
  .mp4-corp__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    margin-bottom: 24px;
  }
  .mp4-corp__card {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.3),
                -2px -2px 6px rgba(255,255,255,0.01);
    transition: border-color 0.2s;
  }
  .mp4-corp__card:active { border-color: rgba(47,128,237,0.2); }
  .mp4-corp__card-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 10px;
  }
  .mp4-corp__card-icon svg { width: 18px; height: 18px; }
  .mp4-corp__card-icon--gold { background: rgba(245,199,102,0.1); border: 1px solid rgba(245,199,102,0.12); }
  .mp4-corp__card-icon--gold svg { fill: #F5C766; }
  .mp4-corp__card-icon--cyan { background: rgba(53,200,255,0.1); border: 1px solid rgba(53,200,255,0.12); }
  .mp4-corp__card-icon--cyan svg { fill: #35C8FF; }
  .mp4-corp__card-icon--blue { background: rgba(47,128,237,0.12); border: 1px solid rgba(47,128,237,0.15); }
  .mp4-corp__card-icon--blue svg { fill: #2F80ED; }
  .mp4-corp__card-icon--green { background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.12); }
  .mp4-corp__card-icon--green svg { fill: #25D366; }
  .mp4-corp__card strong {
    display: block; font-size: 12px; font-weight: 700; color: #e8edf5;
    margin-bottom: 4px;
  }
  .mp4-corp__card span {
    font-size: 11px; color: #7F8EA8; line-height: 1.4;
  }

  /* Corporate CTA Card */
  .mp4-corp__cta-card {
    background: #101B2F;
    border-radius: 24px;
    border: 1px solid rgba(53,200,255,0.06);
    padding: 24px 20px;
    text-align: center;
    margin-bottom: 16px;
    box-shadow: 8px 8px 20px rgba(0,0,0,0.4),
                -4px -4px 12px rgba(255,255,255,0.015),
                0 0 30px rgba(47,128,237,0.04);
  }
  .mp4-corp__cta-title {
    font-size: 17px; font-weight: 800; color: #fff; margin: 0 0 8px;
  }
  .mp4-corp__cta-sub {
    font-size: 13px; color: #B8C7E0; margin: 0 0 18px; line-height: 1.5;
  }
  .mp4-corp__cta-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 14px;
    background: linear-gradient(135deg, #2F80ED, #1a5bbf);
    border: none; border-radius: 16px;
    color: #fff; font-size: 15px; font-weight: 700;
    font-family: inherit; cursor: pointer;
    box-shadow: 0 4px 16px rgba(47,128,237,0.3);
    margin-bottom: 10px;
    transition: all 0.2s;
  }
  .mp4-corp__cta-btn svg { width: 18px; height: 18px; }
  .mp4-corp__cta-btn:active { transform: scale(0.98); }
  .mp4-corp__wa-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 14px;
    background: linear-gradient(135deg, #25D366, #1fb855);
    border: none; border-radius: 16px;
    color: #fff; font-size: 15px; font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,211,102,0.25);
    transition: all 0.2s;
  }
  .mp4-corp__wa-btn svg { width: 18px; height: 18px; }
  .mp4-corp__wa-btn:active { transform: scale(0.98); }

  /* Corporate Form */
  .mp4-corp__form-wrap {
    margin-top: 16px;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
  }
  .mp4-corp__form-wrap.is-open { opacity: 1; transform: translateY(0); }
  .mp4-corp__form-card {
    background: #101B2F;
    border-radius: 24px;
    border: 1px solid rgba(53,200,255,0.08);
    padding: 24px 20px;
    box-shadow: 8px 8px 20px rgba(0,0,0,0.4),
                -4px -4px 12px rgba(255,255,255,0.015);
  }
  .mp4-corp__form-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px;
  }
  .mp4-corp__form-header h3 {
    font-size: 17px; font-weight: 800; color: #e8edf5; margin: 0;
  }
  .mp4-corp__form-close {
    width: 32px; height: 32px; border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5); font-size: 18px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
  }

  /* Shared form styles (reuse mp3 pattern) */
  .mp4-form { display: flex; flex-direction: column; gap: 14px; }
  .mp4-form__field { display: flex; flex-direction: column; gap: 5px; flex: 1; }
  .mp4-form__row { display: flex; gap: 12px; }
  .mp4-form__label {
    font-size: 11px; font-weight: 700; color: #7F8EA8;
    text-transform: uppercase; letter-spacing: 0.5px;
  }
  .mp4-form__input {
    width: 100%; padding: 12px 14px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px; color: #e8edf5;
    font-size: 14px; font-weight: 500; font-family: inherit;
    outline: none; box-sizing: border-box;
    box-shadow: inset 3px 3px 6px rgba(0,0,0,0.3),
                inset -2px -2px 4px rgba(255,255,255,0.02);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .mp4-form__input::placeholder { color: #7F8EA8; }
  .mp4-form__input:focus {
    border-color: rgba(53,200,255,0.4);
    box-shadow: inset 3px 3px 6px rgba(0,0,0,0.3),
                inset -2px -2px 4px rgba(255,255,255,0.02),
                0 0 8px rgba(53,200,255,0.1);
  }
  .mp4-form__select {
    -webkit-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237F8EA8'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center;
    background-size: 18px; padding-right: 34px;
  }
  .mp4-form__select option { background: #0d1a30; color: #e8edf5; }
  .mp4-form__textarea { resize: vertical; min-height: 70px; }
  .mp4-form__error {
    padding: 12px 16px; margin-bottom: 4px;
    background: rgba(255,107,107,0.1);
    border: 1px solid rgba(255,107,107,0.25);
    border-radius: 12px; color: #FF6B6B;
    font-size: 13px; font-weight: 600; text-align: center;
  }
  .mp4-form__submit {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 14px;
    background: linear-gradient(135deg, #2F80ED, #1a5bbf);
    border: none; border-radius: 16px;
    color: #fff; font-size: 15px; font-weight: 700;
    font-family: inherit; cursor: pointer;
    box-shadow: 0 4px 16px rgba(47,128,237,0.3);
    transition: all 0.2s;
  }
  .mp4-form__submit svg { width: 18px; height: 18px; }
  .mp4-form__submit:active { transform: scale(0.98); }
  .mp4-form__submit:disabled { opacity: 0.6; pointer-events: none; }
  .mp4-form-success {
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    padding: 32px 16px; gap: 12px;
  }
  .mp4-form-success svg { width: 48px; height: 48px; fill: #41D37E; }
  .mp4-form-success strong { font-size: 18px; color: #41D37E; }
  .mp4-form-success span { font-size: 14px; color: #B8C7E0; line-height: 1.5; }
  .mp4-spinner {
    display: inline-block; width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff; border-radius: 50%;
    animation: mp4Spin 0.7s linear infinite;
  }
  @keyframes mp4Spin { to { transform: rotate(360deg); } }

  /* ── HOLIDAY PACKAGES ── */
  .mp4-holidays {
    padding: 40px 0 24px;
  }
  .mp4-holidays__header {
    padding: 0 20px 20px;
  }
  .mp4-holidays__title {
    font-size: 22px; font-weight: 800; color: #fff;
    margin: 0 0 6px;
  }
  .mp4-holidays__sub {
    font-size: 13px; color: #7F8EA8; margin: 0;
  }

  /* Holiday Scroll */
  .mp4-holidays__scroll {
    display: flex; gap: 14px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 0 20px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mp4-holidays__scroll::-webkit-scrollbar { display: none; }

  /* Holiday Card */
  .mp4-hcard {
    flex: 0 0 220px; scroll-snap-align: start;
    border-radius: 24px;
    overflow: hidden; position: relative;
    min-height: 260px;
    box-shadow: 6px 6px 16px rgba(0,0,0,0.5),
                -3px -3px 10px rgba(255,255,255,0.02);
  }
  .mp4-hcard__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
  }
  /* Gradient illustrations for each destination */
  .mp4-hcard__bg--goa {
    background: linear-gradient(160deg, #0c2340 0%, #1a4060 30%, #1e6090 60%, #2a9d8f 100%);
  }
  .mp4-hcard__bg--manali {
    background: linear-gradient(160deg, #0d1b2a 0%, #1b3a4b 30%, #3a6b7e 60%, #a8dadc 100%);
  }
  .mp4-hcard__bg--jaipur {
    background: linear-gradient(160deg, #2d1b0e 0%, #5c3a1e 30%, #c4823a 60%, #f5c766 100%);
  }
  .mp4-hcard__bg--kerala {
    background: linear-gradient(160deg, #0d2818 0%, #1a5032 30%, #2d8f56 60%, #41D37E 100%);
  }
  .mp4-hcard__bg--dubai {
    background: linear-gradient(160deg, #1a1020 0%, #3a1f5c 30%, #6b3fa0 60%, #9b59b6 100%);
  }
  .mp4-hcard__bg--thailand {
    background: linear-gradient(160deg, #0c1a30 0%, #1a3050 30%, #2a5080 60%, #35C8FF 100%);
  }
  .mp4-hcard__content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    height: 100%; padding: 16px;
    background: linear-gradient(to top, rgba(5,11,24,0.95) 0%, rgba(5,11,24,0.6) 50%, transparent 100%);
  }
  .mp4-hcard__badge {
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 8px;
  }
  .mp4-hcard__badge--cyan { background: rgba(53,200,255,0.15); color: #35C8FF; border: 1px solid rgba(53,200,255,0.2); }
  .mp4-hcard__badge--gold { background: rgba(245,199,102,0.15); color: #F5C766; border: 1px solid rgba(245,199,102,0.2); }
  .mp4-hcard__badge--green { background: rgba(65,211,126,0.15); color: #41D37E; border: 1px solid rgba(65,211,126,0.2); }
  .mp4-hcard__badge--blue { background: rgba(47,128,237,0.15); color: #2F80ED; border: 1px solid rgba(47,128,237,0.2); }
  .mp4-hcard__name {
    font-size: 20px; font-weight: 800; color: #fff;
    margin: 0 0 4px; text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  }
  .mp4-hcard__desc {
    font-size: 12px; color: rgba(255,255,255,0.7);
    margin: 0 0 12px; line-height: 1.4;
  }
  .mp4-hcard__cta {
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: 10px;
    background: linear-gradient(135deg, rgba(47,128,237,0.2), rgba(53,200,255,0.1));
    border: 1px solid rgba(47,128,237,0.3);
    border-radius: 12px;
    color: #fff; font-size: 13px; font-weight: 700;
    font-family: inherit; cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.2s;
  }
  .mp4-hcard__cta:active { transform: scale(0.96); }

  /* Holiday Disclaimer */
  .mp4-holidays__disclaimer {
    display: flex; align-items: flex-start; gap: 8px;
    margin: 0 20px;
    padding: 10px 14px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(53,200,255,0.06);
    border-radius: 12px;
  }
  .mp4-holidays__disclaimer svg {
    width: 14px; height: 14px; flex-shrink: 0;
    fill: #35C8FF; margin-top: 1px;
  }
  .mp4-holidays__disclaimer span {
    font-size: 11px; color: #7F8EA8; line-height: 1.4;
  }

  /* ── TESTIMONIALS ── */
  .mp4-testimonials {
    padding: 40px 0 24px;
  }
  .mp4-testimonials__header {
    padding: 0 20px 20px;
  }
  .mp4-testimonials__title {
    font-size: 22px; font-weight: 800; color: #fff;
    margin: 0 0 6px;
  }
  .mp4-testimonials__sub {
    font-size: 13px; color: #7F8EA8; margin: 0;
  }
  .mp4-testimonials__scroll {
    display: flex; gap: 14px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 0 20px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mp4-testimonials__scroll::-webkit-scrollbar { display: none; }

  /* Testimonial Card */
  .mp4-tcard {
    flex: 0 0 280px; scroll-snap-align: start;
    background: #111D33;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 20px;
    box-shadow: 6px 6px 16px rgba(0,0,0,0.4),
                -3px -3px 10px rgba(255,255,255,0.02);
  }
  .mp4-tcard__quote {
    margin-bottom: 10px;
  }
  .mp4-tcard__quote svg {
    width: 24px; height: 24px;
    fill: rgba(47,128,237,0.3);
  }
  .mp4-tcard__stars {
    font-size: 14px; color: #F5C766;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .mp4-tcard__text {
    font-size: 13px; color: #B8C7E0;
    line-height: 1.6; margin: 0 0 16px;
    font-style: italic;
  }
  .mp4-tcard__author {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 10px;
  }
  .mp4-tcard__avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(47,128,237,0.2), rgba(53,200,255,0.1));
    border: 1px solid rgba(47,128,237,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 800; color: #35C8FF;
  }
  .mp4-tcard__name {
    display: block; font-size: 13px; font-weight: 700; color: #e8edf5;
  }
  .mp4-tcard__loc {
    font-size: 11px; color: #7F8EA8;
  }
  .mp4-tcard__tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(47,128,237,0.08);
    border: 1px solid rgba(47,128,237,0.12);
    border-radius: 8px;
    font-size: 10px; font-weight: 600; color: rgba(47,128,237,0.6);
    text-transform: uppercase; letter-spacing: 0.3px;
  }

  /* ── BRAND CREDIBILITY STRIP ── */
  .mp4-credibility {
    padding: 24px 20px 40px;
  }
  .mp4-credibility__text {
    font-size: 13px; color: #7F8EA8;
    text-align: center; margin-bottom: 14px;
    line-height: 1.5;
  }
  .mp4-credibility__badges {
    display: flex; gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mp4-credibility__badges::-webkit-scrollbar { display: none; }
  .mp4-credibility__badge {
    flex: 0 0 auto;
    display: inline-flex; align-items: center; gap: 5px;
    padding: 8px 14px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(47,128,237,0.1);
    border-radius: 22px;
    font-size: 11px; font-weight: 600; color: #B8C7E0;
    white-space: nowrap;
  }
  .mp4-credibility__badge svg {
    width: 13px; height: 13px; fill: #35C8FF; flex-shrink: 0;
  }
  .mp4-credibility__badge--green {
    border-color: rgba(37,211,102,0.15);
  }
  .mp4-credibility__badge--green svg { fill: #25D366; }
}
