/* ============================================================ */
/* GLOBAL TYPOGRAPHY ENFORCEMENT */
/* ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif !important;
}

p,
body,
html {
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
}

/* ============================================================
   AYUSH HOLIDAYS — HERO SECTION CSS
   Matches the original design: navy #003D73, orange #FF9100
   Fonts: Space Grotesk (headline), Plus Jakarta Sans (body)
   ============================================================ */

/* ── Reset helpers ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Hero wrapper ── */
.ah-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Gradient overlay (left heavy, matching original) */
.ah-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 61, 115, 0.92) 0%, rgba(0, 61, 115, 0.55) 55%, rgba(0, 61, 115, 0.10) 100%);
  z-index: 1;
}

/* ── Inner grid ── */
.ah-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  margin-top: 100px;
}

/* ── LEFT COLUMN ── */
.ah-hero__left {
  color: #fff;
}

/* Badge */
.ah-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 145, 0, 0.18);
  border: 1px solid rgba(255, 145, 0, 0.35);
  border-radius: 9999px;
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffdcc6;
  margin-bottom: 28px;
}

.ah-hero__badge-star {
  color: #FF9100;
  font-size: 0.85rem;
}

/* Headline */
.ah-hero__headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #ffffff;
}

/* Subtext */
.ah-hero__subtext {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Buttons */
.ah-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.ah-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 9999px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.ah-btn--primary {
  background: linear-gradient(135deg, #FF9100 0%, #F59E0B 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(255, 145, 0, 0.30);
}

.ah-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 145, 0, 0.40);
  color: #fff;
}

.ah-btn--ghost {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.ah-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.20);
  color: #fff;
  transform: translateY(-2px);
}

/* Tags row */
.ah-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.ah-hero__tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
}

/* ── RIGHT COLUMN — Glass Card ── */
.ah-hero__right {
  display: flex;
  justify-content: flex-end;
}

.ah-hero__glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: 0 32px 64px -15px rgba(0, 61, 115, 0.25);
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

/* Feature row */
.ah-hero__feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ah-hero__feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: #fff;
}

.ah-hero__feature-icon--orange {
  background: #FF9100;
}

.ah-hero__feature-icon--navy {
  background: #003D73;
}

.ah-hero__feature-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.ah-hero__feature-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}

/* ── Floating WhatsApp Button ── */
.ah-wa-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0;
  background: #25D366;
  color: #fff;
  border-radius: 9999px;
  padding: 14px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
  overflow: hidden;
  max-width: 56px;
}

@media (max-width: 768px) {
  .ah-wa-btn {
    bottom: 16px;
    right: 16px;
    padding: 12px;
  }
}

.ah-wa-btn:hover {
  max-width: 180px;
  padding: 14px 22px 14px 14px;
  gap: 10px;
}

.ah-wa-btn__label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease 0.1s;
  width: 0;
  overflow: hidden;
}

.ah-wa-btn:hover .ah-wa-btn__label {
  opacity: 1;
  width: auto;
}

/* ── Navigation Styles ── */
.glass-nav {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 61, 115, 0.05);
  padding: 16px 0;
  position: fixed;
  /* Changed from sticky to fixed for better reliability */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  box-shadow: 0 32px 64px -15px rgba(0, 61, 115, 0.06);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  /* Increased from 1.25rem */
  font-weight: 900;
  color: #003D73;
  letter-spacing: -0.05em;
  text-transform: none;
}

/* Removed hazardous Home link hider */

/* Ensure logo remains visible */
.logo-area a,
.logo-text {
  display: inline-block !important;
}

.menu-area ul {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}

.menu-area a {
  text-decoration: none;
  color: rgba(0, 61, 115, 0.7);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  padding: 8px 0;
  position: relative;
}

/* Animated Underline Effect */
.menu-area a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FF9100;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-area li.current-menu-item a,
.menu-area a:hover {
  color: #FF9100;
}

.menu-area li.current-menu-item a::after,
.menu-area a:hover::after {
  width: 100%;
}

.menu-area li.current-menu-item a {
  font-weight: 700;
}

.nav-wa-btn {
  background: #003D73;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 9999px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.3s;
  display: inline-block;
}

.nav-wa-btn:hover {
  background: #1a3a6b;
  transform: scale(0.95);
}

/* ── CTA area: Packages pill + WA button side by side ── */
.cta-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hide the Packages item from the main nav list (it moves to cta-area) */
.menu-area .ah-hide-pkg-item {
  display: none !important;
}

/* ── Packages pill button ── */
.nav-pkg-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 9999px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
  background: rgba(255, 145, 0, 0.12);
  color: #c96000;
  border: 1.5px solid rgba(255, 145, 0, 0.35);
  transition: transform 0.2s ease, background 0.25s ease, border-color 0.25s ease;
}

.nav-pkg-btn:hover {
  background: rgba(255, 145, 0, 0.22);
  border-color: rgba(255, 145, 0, 0.65);
  color: #c96000;
  transform: scale(0.95);
}

/* ── Packages dropdown wrapper ── */
.pkg-drop-wrap {
  position: relative;
}

/* Invisible bridge to prevent hover state dropping when moving mouse to panel */
.pkg-drop-wrap::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 15px;
  background: transparent;
  z-index: 10;
}

/* Chevron inside the pill button */
.nav-pkg-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pkg-drop-chevron {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.pkg-drop-wrap:hover .pkg-drop-chevron {
  transform: rotate(180deg);
}

/* Dropdown panel */
.pkg-drop-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 50px -8px rgba(0, 61, 115, 0.18), 0 4px 16px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 61, 115, 0.07);
  padding: 8px;
  min-width: 210px;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

/* Arrow pointer */
.pkg-drop-panel::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 28px;
  width: 11px;
  height: 11px;
  background: #ffffff;
  border-left: 1px solid rgba(0, 61, 115, 0.07);
  border-top: 1px solid rgba(0, 61, 115, 0.07);
  rotate: 45deg;
}

/* Show on hover */
.pkg-drop-wrap:hover .pkg-drop-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* ── Mega-menu panel: fixed and centered horizontally ── */
.pkg-mega-panel {
  position: fixed;
  top: 90px;
  left: 50%;
  right: auto;
  transform: translateX(-50%) translateY(6px);
  width: min(1200px, calc(100vw - 24px));
  max-width: 1200px;
  padding: 0;
  overflow: hidden;
}

.pkg-drop-wrap:hover .pkg-mega-panel {
  transform: translateX(-50%) translateY(0);
}

/* Arrow pointer: hide for centered mega menu */
.pkg-mega-panel::before {
  display: none;
}

/* 5-column grid: 4 product cols + 1 promo */
.pkg-mega__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 220px;
  gap: 0;
  align-items: start;
}

/* Each product column */
.pkg-mega__col {
  padding: 22px 18px 24px;
  border-right: 1px solid rgba(0, 61, 115, 0.06);
}

.pkg-mega__col-title {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.pkg-mega__col-title:hover {
  opacity: 0.75;
}

/* Product list */
.pkg-mega__list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: visible;
}

.pkg-mega__list li {
  margin-bottom: 2px;
}

.pkg-mega__link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 6px;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  line-height: 1.4;
  transition: background 0.15s ease, color 0.15s ease;
}

.pkg-mega__link:hover {
  background: rgba(0, 61, 115, 0.05);
  color: #003D73;
}

.pkg-mega__bullet {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 61, 115, 0.25);
  flex-shrink: 0;
}

.pkg-mega__empty {
  font-size: 0.8rem;
  color: rgba(0,61,115,0.4);
  font-style: italic;
  padding: 4px 6px;
  display: block;
}

/* Promo card */
.pkg-mega__promo {
  background: linear-gradient(145deg, #003D73 0%, #005EB8 100%);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
}

.pkg-mega__promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,145,0,0.25);
  color: #FF9100;
  border: 1px solid rgba(255,145,0,0.4);
  border-radius: 9999px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  width: fit-content;
  letter-spacing: 0.02em;
}

.pkg-mega__promo-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.pkg-mega__promo-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin: 0;
}

.pkg-mega__promo-btn {
  display: inline-block;
  background: #FF9100;
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 18px;
  border-radius: 9999px;
  text-decoration: none;
  text-align: center;
  margin-top: auto;
  transition: background 0.2s ease, transform 0.2s ease;
}

.pkg-mega__promo-btn:hover {
  background: #e67e00;
  transform: scale(0.97);
}

/* ── Burger Button ── */

.pkg-drop__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #003D73;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.pkg-drop__item:hover {
  background: rgba(0, 61, 115, 0.05);
}

.pkg-drop__item--budget:hover    { color: #15803d; }
.pkg-drop__item--honeymoon:hover { color: #be185d; }
.pkg-drop__item--family:hover    { color: #1d4ed8; }
.pkg-drop__item--luxury:hover    { color: #b45309; }

/* Colour dots */
.pkg-drop__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pkg-drop__dot--budget    { background: #22c55e; }
.pkg-drop__dot--honeymoon { background: #ec4899; }
.pkg-drop__dot--family    { background: #3b82f6; }
.pkg-drop__dot--luxury    { background: #f59e0b; }

/* ── Burger Button ── */
.ah-burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 2100;
  /* Increased to be above the drawer (2000) */
}

.ah-burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #003D73;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* ── Mobile Off-canvas Drawer ── */
.ah-mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: white;
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.ah-mobile-drawer.is-active {
  right: 0;
}

.ah-mobile-drawer__header {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(0, 61, 115, 0.05);
}

.ah-mobile-drawer__content {
  flex: 1;
  padding: 32px;
  overflow-y: auto;
}

.ah-mobile-drawer__content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ah-mobile-drawer__content li {
  margin-bottom: 24px;
}

.ah-mobile-drawer__content a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #003D73;
  text-decoration: none;
  display: block;
  transition: color 0.3s;
}

.ah-mobile-drawer__content a:hover {
  color: #FF9100;
}

.ah-mobile-drawer__footer {
  padding: 32px;
  border-top: 1px solid rgba(0, 61, 115, 0.05);
}

.nav-wa-btn--full {
  display: block !important;
  text-align: center;
  width: 100%;
  color: #ffffff !important;
  /* Force white text */
}

/* ── Overlay ── */
.ah-mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 61, 115, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.ah-mobile-drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* ── Burger Animation ── */
.ah-burger-btn.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.ah-burger-btn.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.ah-burger-btn.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ah-desktop-only {
    display: none !important;
  }

  .ah-burger-btn {
    display: flex;
  }

  .ah-hero__inner {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    text-align: center;
  }

  .ah-hero__right {
    display: none;
  }

  .ah-hero__badge {
    margin: 0 auto 24px;
  }

  .ah-hero__subtext {
    margin: 0 auto 32px;
  }

  .ah-hero__buttons {
    justify-content: center;
  }

  .ah-hero__tags {
    justify-content: center;
  }
}

@media (max-width: 1200px) {
  .pkg-mega__col-title {
    font-size: 0.8rem;
  }
  .pkg-mega__link {
    font-size: 0.7rem;
  }
  .pkg-mega__col {
    padding: 16px 12px;
  }
}

/* ============================================================ */
/* LAYOUT: OFFERS BANNER */
/* ============================================================ */
.ah-offers-banner {
  background-color: #FF9100;
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.ah-offers-marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ah-marquee 40s linear infinite;
}

.ah-offers-marquee-track:hover {
  animation-play-state: paused;
}

.ah-offers-group {
  display: flex;
  gap: 48px;
  align-items: center;
  color: #00274D;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ah-banner-icon {
  font-size: 0.875rem;
}

@keyframes ah-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 24px));
  }
}

/* ============================================================ */
/* LAYOUT: AUDIENCE CATEGORIES */
/* ============================================================ */
.ah-audience {
  padding: 96px 32px;
  max-width: 1280px;
  margin: 0 auto;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.ah-audience__header {
  text-align: center;
  margin-bottom: 64px;
}

.ah-audience__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: #003D73;
  margin-bottom: 16px;
}

.ah-audience__subtitle {
  color: #43474f;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

.ah-audience__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 640px) {
  .ah-audience__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ah-audience__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ah-audience__card {
  position: relative;
  height: 384px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 64px -15px rgba(0, 61, 115, 0.06);
  cursor: pointer;
  transition: transform 0.4s ease;
}

.ah-audience__card .ah-audience__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.ah-audience__card:hover .ah-audience__img {
  transform: scale(1.1);
}

.ah-audience__card:hover {
  transform: translateY(-8px);
}

.ah-audience__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 61, 115, 0.9) 0%, rgba(0, 61, 115, 0.2) 50%, transparent 100%);
}

.ah-audience__content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
}

.ah-audience__icon {
  color: #FF9100;
  margin-bottom: 8px;
  display: block;
  font-size: 1.5rem;
}

.ah-audience__card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

/* ============================================================ */
/* LAYOUT: FEATURED EXPERIENCES */
/* ============================================================ */
.ah-experiences {
  background-color: #F1F5F9;
  padding: 96px 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.ah-exp-container {
  max-width: 1280px;
  margin: 0 auto;
}

.ah-exp-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 64px;
  gap: 24px;
}

@media (min-width: 768px) {
  .ah-exp-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.ah-exp-eyebrow {
  color: #F59E0B;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.ah-exp-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #003D73;
  margin: 0;
}

.ah-exp-nav {
  display: flex;
  gap: 16px;
}

.ah-exp-nav-btn {
  background: #ffffff;
  padding: 12px;
  border-radius: 9999px;
  border: 1px solid rgba(196, 198, 208, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: #003D73;
}

.ah-exp-nav-btn:hover {
  border-color: #F59E0B;
}

.ah-exp-nav-btn--primary {
  background: #003D73;
  color: #ffffff;
  border: none;
}

.ah-exp-nav-btn--primary:hover {
  background: #1a3a6b;
}

.ah-exp-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 32px;
  scrollbar-width: none;
  /* Hide scrollbar for Firefox */
  -ms-overflow-style: none;
  /* Hide scrollbar for IE/Edge */
  scroll-behavior: smooth;
  padding-bottom: 32px;
  /* Extra padding for neatness if shadow clips */
}

.ah-exp-grid::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Webkit */
}

.ah-exp-card {
  background-color: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 32px 64px -15px rgba(0, 61, 115, 0.06);
  display: flex;
  flex-direction: column;
  flex: 0 0 100%;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .ah-exp-card {
    flex: 0 0 calc((100% - 32px) / 2);
  }
}

@media (min-width: 1024px) {
  .ah-exp-card {
    flex: 0 0 calc((100% - 64px) / 3);
  }
}


.ah-exp-card:hover .ah-exp-img {
  transform: scale(1.05);
}

.ah-exp-img-wrapper {
  height: 256px;
  position: relative;
  overflow: hidden;
}

.ah-exp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ah-exp-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: #FF9100;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.ah-exp-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ah-exp-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 16px;
}

.ah-exp-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #003D73;
  margin: 0;
  line-height: 1.2;
}

.ah-exp-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FF9100;
}

.ah-exp-desc {
  color: #43474f;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.ah-exp-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ah-exp-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #1E293B;
  font-size: 0.875rem;
}

.ah-exp-feature-icon {
  color: #FF9100;
  font-size: 1.25rem;
  font-variation-settings: 'FILL' 1;
}

.ah-exp-btn {
  margin-top: auto;
  width: 100%;
  padding: 16px;
  border-radius: 9999px;
  border: 2px solid #1a3a6b;
  color: #1a3a6b;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.3s ease, color 0.3s ease;
  font-family: 'Space Grotesk', sans-serif;
  background: transparent;
  display: inline-block;
  cursor: pointer;
}

.ah-exp-buttons {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.ah-exp-buttons .ah-exp-btn {
  margin-top: 0;
  flex: 1;
  padding: 12px 8px;
  /* Slightly tighter padding for side-by-side */
  font-size: 0.875rem;
  /* Slightly smaller text */
}

.ah-exp-btn:hover {
  background-color: #1a3a6b;
  color: #ffffff;
  transform: translateY(-2px);
}

.ah-exp-btn--solid {
  background-color: #003D73;
  /* primary */
  border-color: #003D73;
  color: #ffffff;
}

.ah-exp-btn--solid:hover {
  background-color: #1a3a6b;
  border-color: #1a3a6b;
}

/* ============================================================ */
/* LAYOUT: TRUST & PROOF */
/* ============================================================ */
.ah-trust {
  padding: 64px 24px;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

@media (min-width: 768px) {
  .ah-trust {
    padding: 96px 32px;
  }
}

.ah-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .ah-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }
}

.ah-trust-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #003D73;
  margin-bottom: 32px;
  line-height: 1.2;
}

.ah-trust-points {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ah-trust-point {
  display: flex;
  gap: 24px;
}

.ah-trust-point-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ah-trust-point-icon-wrapper--bg1 {
  background-color: #ffdcc6;
  color: #311300;
}

.ah-trust-point-icon-wrapper--bg2 {
  background-color: #d7e2ff;
  color: #001b3f;
}

.ah-trust-point-icon-wrapper--bg3 {
  background-color: #79f7e3;
  color: #00201c;
}

.ah-trust-point-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #003D73;
  margin-bottom: 4px;
}

.ah-trust-point-desc {
  color: #43474f;
  font-size: 1rem;
  line-height: 1.6;
}

.ah-trust-card-wrapper {
  position: relative;
}

.ah-trust-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 120%;
  background-color: #e9e7ec;
  border-radius: 9999px;
  filter: blur(120px);
  opacity: 0.5;
  z-index: -1;
}

.ah-trust-card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 2rem;
  box-shadow: 0 32px 64px -15px rgba(0, 61, 115, 0.06);
  position: relative;
  z-index: 10;
  border: 1px solid rgba(196, 198, 208, 0.1);
}

@media (min-width: 768px) {
  .ah-trust-card {
    padding: 40px;
    border-radius: 3rem;
  }
}

.ah-trust-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.ah-trust-stat {
  text-align: center;
}

.ah-trust-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #003D73;
}

@media (min-width: 768px) {
  .ah-trust-stat-value {
    font-size: 2.5rem;
  }
}

.ah-trust-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #F59E0B;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.ah-trust-divider {
  width: 1px;
  height: 48px;
  background-color: rgba(196, 198, 208, 0.3);
}

.ah-trust-testimonial {
  background-color: #F1F5F9;
  padding: 24px;
  border-radius: 16px;
  font-style: italic;
  color: #1E293B;
  font-weight: 500;
  position: relative;
  line-height: 1.6;
  margin-top: 20px;
}

.ah-trust-quote-mark {
  position: absolute;
  top: -16px;
  left: 24px;
  font-size: 3.75rem;
  color: rgba(255, 145, 0, 0.2);
  font-family: serif;
  line-height: 1;
}

.ah-trust-author {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-style: normal;
}

.ah-trust-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1a3a6b;
}

.ah-trust-author-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #003D73;
  margin: 0;
}

.ah-trust-author-sub {
  font-size: 0.75rem;
  color: #43474f;
  margin: 0;
}

/* ============================================================ */
/* LAYOUT: LEAD GEN FORM */
/* ============================================================ */
.ah-leadgen {
  padding: 96px 0;
  background-color: #003D73;
  /* primary */
  color: #ffffff;
  position: relative;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.ah-leadgen-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background-color: rgba(255, 145, 0, 0.2);
  filter: blur(150px);
  border-radius: 9999px;
  transform: translate(50%, -50%);
}

.ah-leadgen-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 10;
}

.ah-leadgen-content-wrapper {
  max-width: 768px;
}

.ah-leadgen-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.ah-leadgen-title span {
  color: #FF9100;
}

.ah-leadgen-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  margin-bottom: 48px;
}

/* Form Container targeting the WPCF7 wrapper, or purely the inner structure */
.ah-leadgen-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 32px;
  border-radius: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
  .ah-leadgen-form {
    grid-template-columns: 1fr 1fr;
  }

  .ah-leadgen-form-full {
    grid-column: span 2;
  }
}

.ah-leadgen-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ah-leadgen-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.ah-leadgen-input,
.ah-leadgen-select {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 16px;
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.ah-leadgen-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.ah-leadgen-input:focus,
.ah-leadgen-select:focus {
  outline: none;
  border-color: #FF9100;
  box-shadow: 0 0 0 2px rgba(255, 145, 0, 0.2);
}

.ah-leadgen-select option {
  color: #003D73;
}

.ah-leadgen-submit-wrapper {
  margin-top: 16px;
}

.ah-leadgen-submit {
  width: 100%;
  background-color: #FF9100;
  color: #ffffff;
  padding: 20px;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.25rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(255, 145, 0, 0.2);
  font-family: 'Space Grotesk', sans-serif;
}

.ah-leadgen-submit:hover {
  background-color: #e67409;
}

.ah-leadgen-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  margin-top: 16px;
  letter-spacing: -0.025em;
}

/* Specific resets for CF7 output wrappers */
.ah-leadgen-form span.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* ============================================================ */
/* LAYOUT: SUMMER DEALS */
/* ============================================================ */
.ah-deals {
  padding: 96px 24px;
  background: linear-gradient(135deg, rgba(255, 145, 0, 0.05) 0%, rgba(0, 61, 115, 0.05) 100%);
  color: #1E293B;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .ah-deals {
    padding: 96px 32px;
  }
}

.ah-deals-container {
  max-width: 1400px;
  margin: 0 auto;
}

.ah-deals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .ah-deals-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
  }
}

.ah-deals-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .ah-deals-left {
    grid-column: span 6;
  }
}

.ah-deals-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: #F59E0B;
  color: #FFFFFF;
  border-radius: 9999px;
  margin-bottom: 32px;
  align-self: flex-start;
}

.ah-deals-badge span:last-child {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ah-deals-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  color: #1E293B;
}

.ah-deals-title span {
  color: #FF9100;
}

/* Timer */
.ah-deals-timer {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.ah-deals-time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ah-deals-time-num {
  width: 64px;
  height: 76px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #e1e3e4;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FF9100;
}

@media (min-width: 768px) {
  .ah-deals-time-num {
    width: 80px;
    height: 96px;
    font-size: 2.25rem;
  }
}

.ah-deals-time-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  color: #475569;
  font-weight: 700;
}

/* Pricing Panel */
.ah-deals-panel {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 2rem;
  padding: 32px;
  border: 1px solid #ffffff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.ah-deals-panel-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.ah-deals-panel-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 145, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF9100;
}

.ah-deals-panel-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.ah-deals-panel-subtitle {
  color: #475569;
  font-size: 0.875rem;
  margin: 0;
}

.ah-deals-progress-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.ah-deals-progress-stat {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.ah-deals-progress-track {
  height: 8px;
  background-color: #e7e8e9;
  border-radius: 9999px;
  overflow: hidden;
}

.ah-deals-progress-fill {
  height: 100%;
  border-radius: 9999px;
}

.ah-deals-bg-error {
  background-color: #ba1a1a;
}

.ah-deals-text-error {
  color: #ba1a1a;
}

.ah-deals-bg-primary {
  background-color: #FF9100;
}

.ah-deals-text-primary {
  color: #FF9100;
}

.ah-deals-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #e1e3e4;
}

.ah-deals-price-increase {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1E293B;
}

.ah-deals-price-sub {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #475569;
}

.ah-deals-btn {
  background: linear-gradient(to right, #FF9100, #F59E0B);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(255, 145, 0, 0.3);
  transition: opacity 0.3s ease;
  border: none;
  cursor: pointer;
}

.ah-deals-btn:hover {
  opacity: 0.9;
}

/* Right Column */
.ah-deals-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 1024px) {
  .ah-deals-right {
    grid-column: span 6;
  }
}

.ah-deals-card-large {
  grid-column: span 2;
  position: relative;
  border-radius: 2.5rem;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.ah-deals-card-large img,
.ah-deals-card-small img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.ah-deals-card-large:hover img,
.ah-deals-card-small:hover img {
  transform: scale(1.05);
}

.ah-deals-scrim {
  position: absolute;
  inset: 0;
}

.ah-deals-card-large .ah-deals-scrim {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.ah-deals-quote {
  position: absolute;
  bottom: 24px;
  left: 32px;
  right: 32px;
  color: #ffffff;
}

.ah-deals-quote p {
  font-family: 'Manrope', sans-serif;
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 16px 0;
}

.ah-deals-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ah-deals-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #FF9100;
}

.ah-deals-author-name {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Small Cards */
.ah-deals-card-small {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.ah-deals-card-small-scrim-1 {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s;
}

.ah-deals-card-small:hover .ah-deals-card-small-scrim-1 {
  background-color: rgba(0, 0, 0, 0.2);
}

.ah-deals-card-small-scrim-2 {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 61, 115, 0.4);
  transition: background-color 0.3s;
}

.ah-deals-card-small:hover .ah-deals-card-small-scrim-2 {
  background-color: rgba(0, 61, 115, 0.2);
}

.ah-deals-card-content {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ah-deals-tag {
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 8px;
}

.ah-deals-tag-1 {
  background-color: rgba(255, 145, 0, 0.9);
}

.ah-deals-tag-2 {
  background-color: rgba(0, 61, 115, 0.9);
}

.ah-deals-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.25rem;
  margin: 0 0 4px 0;
}

.ah-deals-card-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ah-deals-card-btn {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  align-self: flex-start;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.ah-deals-card-small:hover .ah-deals-card-btn-1 {
  color: #FF9100;
}

.ah-deals-card-small:hover .ah-deals-card-btn-2 {
  color: #FF9100;
}

/* ============================================================ */
/* LAYOUT: CALL TO ACTION (CTA) */
/* ============================================================ */
.ah-cta {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 96px 24px;
  font-family: 'Manrope', sans-serif;
  color: #1E293B;
  background-color: #f8f9fa;
  /* surface */
}

.ah-cta-bg-shape {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 66vw;
  height: 120%;
  background-color: #f3f4f5;
  /* surface-container-low */
  border-top-left-radius: 5rem;
  border-bottom-left-radius: 5rem;
  z-index: 0;
  transform: rotate(2deg);
}

.ah-cta-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .ah-cta-container {
    grid-template-columns: repeat(12, 1fr);
  }

  .ah-cta-content {
    grid-column: span 7;
    order: 1;
  }

  .ah-cta-visuals {
    grid-column: span 5;
    order: 2;
  }
}

@media (max-width: 1024px) {
  .ah-offers-marquee-track {
    gap: 32px;
  }

  .ah-cta-visuals {
    order: 1;
  }
  .ah-cta-content {
    order: 2;
  }
}

@media (max-width: 1200px) {
  .ah-mega-menu-col {
    font-size: 0.9rem;
  }
}

.ah-cta-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ah-cta-header h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #1E293B;
}

.ah-cta-header h1 span {
  color: #FF9100;
  font-style: italic;
}

.ah-cta-desc {
  font-size: 1.125rem;
  color: #475569;
  max-width: 600px;
  line-height: 1.6;
}

/* Actions */
.ah-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 1024px) {
  .ah-footer-top {
    flex-direction: column;
  }
}

@media (min-width: 640px) {
  .ah-cta-actions {
    flex-direction: row;
  }
}

.ah-cta-btn-primary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px;
  background: linear-gradient(to right, #FF9100, #F59E0B);
  border-radius: 9999px;
  box-shadow: 0 40px 80px -20px rgba(25, 28, 29, 0.08);
  /* kinetic-shadow */
  text-decoration: none;
  transition: transform 0.2s ease;
  flex: 1;
}

.ah-cta-btn-primary:hover {
  transform: scale(1.02);
}

.ah-cta-btn-primary-text {
  padding: 16px 16px 16px 32px;
  font-weight: 700;
  font-size: 1.125rem;
  color: #ffffff;
}

.ah-cta-btn-primary-icon {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 16px;
  border-radius: 50%;
  margin-right: 4px;
  display: flex;
  color: #ffffff;
}

.ah-cta-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 32px;
  background-color: #a3c9ff;
  /* secondary-fixed-dim */
  color: #001c38;
  /* on-secondary-fixed */
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.2s ease;
  flex: 1;
}

.ah-cta-btn-secondary:hover {
  background-color: #d3e4ff;
  /* secondary-fixed */
}

/* Bullets */
.ah-cta-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 24px;
}

.ah-cta-bullet {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ah-cta-bullet-icon {
  background-color: rgba(67, 168, 181, 0.2);
  /* tertiary-container / 20 */
  padding: 8px;
  border-radius: 8px;
  color: #F59E0B;
  /* tertiary */
}

.ah-cta-bullet-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: #1E293B;
  margin: 0 0 4px 0;
}

.ah-cta-bullet-sub {
  font-size: 0.875rem;
  color: #475569;
  /* on-surface-variant */
  margin: 0;
}

/* Visuals */
.ah-cta-visuals {
  position: relative;
  width: 100%;
}

.ah-cta-expert-card {
  position: absolute;
  top: -48px;
  left: -32px;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 40px 80px -20px rgba(25, 28, 29, 0.08);
  /* kinetic-shadow */
  padding: 24px;
  border-radius: 12px;
  z-index: 20;
  max-width: 200px;
  border: 1px solid rgba(225, 191, 176, 0.15);
  /* outline-variant/15 */
}

.ah-cta-expert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.ah-cta-expert-badge span:first-child {
  color: #FF9100;
  font-size: 14px;
}

.ah-cta-expert-badge span:last-child {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ah-cta-expert-quote {
  font-size: 0.875rem;
  font-weight: 600;
  font-style: italic;
  color: #1E293B;
  margin: 0;
}

.ah-cta-main-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
}

.ah-cta-main-frame:hover {
  transform: rotate(0deg);
}

.ah-cta-main-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.ah-cta-main-frame-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25, 28, 29, 0.4), transparent);
}

.ah-cta-main-frame-content {
  position: absolute;
  bottom: 32px;
  left: 32px;
}

.ah-cta-frame-tag {
  background-color: #F59E0B;
  color: #FFFFFF;
  padding: 4px 16px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 8px;
}

.ah-cta-frame-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.ah-cta-secondary-img {
  position: absolute;
  bottom: -40px;
  right: -16px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 8px solid #ffffff;
  /* surface-container-lowest */
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(25, 28, 29, 0.08);
  /* kinetic-shadow */
  display: none;
}

@media (min-width: 768px) {
  .ah-cta-secondary-img {
    display: block;
  }
}

.ah-cta-secondary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================ */
/* LAYOUT: GLOBAL FOOTER */
/* ============================================================ */
.ah-footer-spacer {
  height: 384px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ah-footer-spacer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ah-footer-spacer-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(243, 244, 245, 0.8));
}

.ah-footer-spacer-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
}

.ah-footer-spacer-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #003D73;
  margin: 0 0 16px 0;
}

.ah-footer-spacer-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #475569;
  max-width: 42rem;
  margin: 0 auto;
}

.ah-footer {
  background: linear-gradient(to top, #f1f5f9, #ffffff);
  width: 100%;
  position: relative;
  padding-top: 64px;
  padding-bottom: 48px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #475569;
  /* slate-500 */
}

.ah-footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .ah-footer-container {
    padding: 0 16px;
  }
}

.ah-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .ah-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Brand Section */
.ah-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ah-footer-logo {
  font-size: 1.875rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.05em;
  color: #003D73;
  /* orange-800 */
  margin: 0;
}

.ah-footer-blurb {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  line-height: 1.6;
  max-width: 384px;
  margin: 0;
}

.ah-footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ah-footer-social-link {
  color: #64748b;
  /* slate-500 */
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  display: flex;
}

.ah-footer-social-link:hover {
  color: #FF9100;
  /* orange-700 */
  transform: scale(1.05);
}

/* Destinations Section */
.ah-footer-destinations {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ah-footer-heading {
  color: #FF9100;
  /* orange-700 */
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0;
}

.ah-footer-dest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 12px;
  column-gap: 32px;
}

.ah-footer-link {
  color: #64748b;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

.ah-footer-link:hover {
  color: #FF9100;
}

/* Hub Section */
.ah-footer-hub {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ah-footer-hub-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ah-footer-hub-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #64748b;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
}

.ah-footer-hub-icon {
  color: #FF9100;
}

.ah-footer-hub-links {
  padding-top: 8px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 8px;
}

/* Copyright Bottom */
.ah-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 32px 0 32px;
  margin-top: 64px;
  border-top: 1px solid #e2e8f0;
  /* slate-200 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .ah-footer-bottom {
    padding: 32px 16px 0 16px;
  }
}

@media (min-width: 768px) {
  .ah-footer-bottom {
    flex-direction: row;
  }
}

.ah-footer-copy {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #94a3b8;
  /* slate-400 */
  text-transform: uppercase;
}

.ah-footer-dots {
  display: flex;
  gap: 8px;
}

.ah-footer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.ah-footer-dot-1 {
  background-color: #FF9100;
}

.ah-footer-dot-2 {
  background-color: #003D73;
}

.ah-footer-dot-3 {
  background-color: #F59E0B;
}

/* ============================================================ */
/* LAYOUT: SCROLL ANIMATIONS */
/* ============================================================ */
html {
  scroll-behavior: smooth;
}

.ah-animate {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Specific Effects */
.ah-fade-in {
  opacity: 0;
}

.ah-slide-up {
  transform: translateY(40px);
}

.ah-zoom-in {
  transform: scale(0.95);
}

.ah-slide-left {
  transform: translateX(40px);
}

.ah-slide-right {
  transform: translateX(-40px);
}

/* Visible State */
.ah-animate.is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Optional Staggering Utility */
.ah-delay-100 {
  transition-delay: 100ms;
}

.ah-delay-200 {
  transition-delay: 200ms;
}

.ah-delay-300 {
  transition-delay: 300ms;
}

.ah-delay-400 {
  transition-delay: 400ms;
}

/* ============================================================ */
/* NATIVE MEGA MENU STYLES (WP Menu) */
/* ============================================================ */
.ah-mega-menu-active {
  position: static !important;
}

/* Base Mega Menu Container */
.menu-area ul li.ah-mega-menu-active>ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: max-content;
  max-width: calc(100vw - 40px) !important;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 61, 115, 0.12);
  display: flex !important;
  align-items: stretch !important;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px 0 !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 5px;
  z-index: 2500;
}

/* Invisible hit area */
.menu-area li.ah-mega-menu-active>ul.sub-menu::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
}

.menu-area li.ah-mega-menu-active:hover>ul.sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Column Wrappers (Budget, Family, Honeymoon, Luxury) */
.menu-area li.ah-mega-menu-active>ul.sub-menu>li:not(.ah-mega-banner-native) {
  flex: 1;
  display: block;
  margin: 0 !important;
  padding: 0 24px !important;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.menu-area li.ah-mega-menu-active>ul.sub-menu>li:nth-child(4) {
  border-right: none;
}

/* Column Header Links */
.menu-area li.ah-mega-menu-active>ul.sub-menu>li>a {
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  color: #003D73 !important;
  margin-bottom: 5px !important;
  border-bottom: 2px solid #f0f0f0;
  padding: 0 0 8px 0 !important;
  display: block !important;
  text-align: center !important;
  text-transform: capitalize;
}

.menu-area li.ah-mega-menu-active>ul.sub-menu>li>a::after {
  display: none !important;
}

/* 3rd Level Inner List */
.menu-area li.ah-mega-menu-active>ul.sub-menu>li>ul.sub-menu {
  display: flex !important;
  flex-direction: column !important;
  position: static !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 0 0 12px !important;
  /* Standard indentation for sub-items */
  gap: 2px !important;
  width: 100% !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  border: none !important;
  margin: 0 !important;
}

.menu-area li.ah-mega-menu-active>ul.sub-menu>li>ul.sub-menu>li {
  margin: 0 !important;
}

/* 3rd Level Links (Destinations) */
.menu-area li.ah-mega-menu-active>ul.sub-menu>li>ul.sub-menu>li>a {
  color: #43474f !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  padding: 8px 0 !important;
  margin: 0 !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center;
  justify-content: flex-start !important;
  text-align: left !important;
  width: 100% !important;
  box-sizing: border-box !important;
  gap: 0;
  white-space: nowrap !important;
  transition: all 0.2s ease !important;
}

.menu-area li.ah-mega-menu-active>ul.sub-menu>li>ul.sub-menu>li>a:hover {
  background-color: rgba(255, 145, 0, 0.08) !important;
  color: #FF9100 !important;
  transform: translateX(4px) !important;
}

.menu-area li.ah-mega-menu-active>ul.sub-menu>li>ul.sub-menu>li>a::after {
  display: none !important;
}

/* Premium List Dot - INDENTED */
.menu-area li.ah-mega-menu-active>ul.sub-menu>li>ul.sub-menu>li>a::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(67, 71, 79, 0.4);
  flex-shrink: 0;
  margin-left: 0 !important;
  /* no outdent */
  margin-right: 8px !important;
  /* gap before text */
  transition: all 0.2s ease;
}

.menu-area li.ah-mega-menu-active>ul.sub-menu>li>ul.sub-menu>li>a:hover::before {
  background-color: #FF9100;
  transform: scale(1.3);
}

/* Destination Icon */
.ah-mega-dest-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 24px;
  display: inline-block;
  text-align: center;
}

/* Popular Badge */
.ah-mega-popular-badge {
  background: linear-gradient(135deg, #FF9100 0%, #F59E0B 100%);
  color: #ffffff;
  font-size: 0.65rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 4px rgba(255, 145, 0, 0.2);
  flex-shrink: 0;
  white-space: nowrap;
}

/* JS Appended Banner */
.ah-mega-banner-native {
  width: 240px;
  background: linear-gradient(135deg, #003D73 0%, #00122e 100%);
  color: #ffffff;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  flex-shrink: 0;
  margin: 0 24px 0 0 !important;
}

.ah-mega-banner-native::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://lh3.googleusercontent.com/aida-public/AB6AXuDNu-ukCjrVUevvoi6j9nD60UhxIpEoqnfS5rxH1a51gaDG8AEhMAfkXL-s6FPEFmXFGzOq4Mypypz4Mh5uHCVeOMVWqC3dGNi7Bp62UVy0ouwtm8FT-glhcRo-3iI494A8IpBAiqmpSNnjU9xhLBgvwVRwAnZvupIMklQ0gZX-ZDDeAQN7ToaLzdOGx8sgmbZJDcP096-3rETFA7AP-7jbciHJ8DzE8ZEp8kyn696l4MpOO7aC08Q1QwTo8w68FVaJefBHtc7Ugg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.ah-mega-banner-content {
  position: relative;
  z-index: 2;
}

.ah-mega-banner-badge {
  display: inline-block;
  background: rgba(255, 145, 0, 0.2);
  border: 1px solid rgba(255, 145, 0, 0.5);
  color: #FF9100;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: 'Space Grotesk', sans-serif;
}

.ah-mega-banner-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #ffffff;
}

.ah-mega-banner-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  line-height: 1.5;
}

.ah-mega-banner-btn {
  background: linear-gradient(135deg, #FF9100 0%, #F59E0B 100%) !important;
  color: #ffffff !important;
  padding: 10px 20px !important;
  font-size: 0.85rem !important;
  border-radius: 999px !important;
  display: inline-block !important;
  text-align: center !important;
  text-decoration: none !important;
}

.ah-mega-banner-btn:hover {
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 145, 0, 0.4);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .menu-area li.ah-mega-menu-active>ul.sub-menu {
    flex-wrap: wrap;
    width: 98vw;
    padding: 24px !important;
  }
}

@media (max-width: 900px) {

  /* On mobile, un-mega the menu */
  .ah-mobile-drawer li.ah-mega-menu-active>ul.sub-menu,
  .menu-area li.ah-mega-menu-active>ul.sub-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    display: none !important;
    flex-direction: column !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    padding: 8px 16px !important;
    background: #fafafa !important;
  }

  .ah-mobile-drawer li.ah-mega-menu-active.is-open>ul.sub-menu,
  .menu-area li.ah-mega-menu-active.is-open>ul.sub-menu {
    display: flex !important;
  }

  /* Mobile Accordion Arrow */
  .ah-mobile-drawer li.ah-mega-menu-active>a .material-symbols-outlined {
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .ah-mobile-drawer li.ah-mega-menu-active.is-open>a .material-symbols-outlined {
    transform: rotate(180deg);
  }

  /* Reset Desktop Column Styles */
  .ah-mobile-drawer li.ah-mega-menu-active>ul.sub-menu>li:not(.ah-mega-banner-native),
  .menu-area li.ah-mega-menu-active>ul.sub-menu>li:not(.ah-mega-banner-native) {
    border-right: none !important;
    padding: 0 !important;
    margin-bottom: 24px !important;
  }

  /* Category Underlines for Mobile */
  .ah-mobile-drawer li.ah-mega-menu-active>ul.sub-menu>li>a,
  .menu-area li.ah-mega-menu-active>ul.sub-menu>li>a {
    border-bottom: 1px solid #d4d4d4 !important;
    padding-bottom: 4px !important;
    /* ultra tight */
    margin-bottom: 6px !important;
    font-size: 16px !important;
  }

  /* Match list indentation from Mockup */
  .ah-mobile-drawer li.ah-mega-menu-active>ul.sub-menu>li>ul.sub-menu,
  .menu-area li.ah-mega-menu-active>ul.sub-menu>li>ul.sub-menu {
    padding-left: 0 !important;
    gap: 2px !important;
    /* tighter vertical gap */
  }

  /* Destination links */
  .ah-mobile-drawer li.ah-mega-menu-active>ul.sub-menu>li>ul.sub-menu>li>a,
  .menu-area li.ah-mega-menu-active>ul.sub-menu>li>ul.sub-menu>li>a {
    padding: 2px 0 !important;
    color: #43474f !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  /* Solid bullet dot indented slightly */
  .ah-mobile-drawer li.ah-mega-menu-active>ul.sub-menu>li>ul.sub-menu>li>a::before,
  .menu-area li.ah-mega-menu-active>ul.sub-menu>li>ul.sub-menu>li>a::before {
    content: "";
    /* CRITICAL MISSING RULE */
    display: block;
    /* CRITICAL MISSING RULE */
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-left: 4px !important;
    margin-right: 8px !important;
    background-color: #1a202c !important;
    flex-shrink: 0;
  }

  /* Show Just the Button from the Banner */
  .ah-mega-banner-native {
    display: block !important;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .ah-mega-banner-native::before,
  .ah-mega-banner-badge,
  .ah-mega-banner-title,
  .ah-mega-banner-desc {
    display: none !important;
  }

  .ah-mega-banner-btn {
    width: 100% !important;
  }
}

/* ============================================================ */
/* HOLIDAY PACKAGES SECTION — [ayush_packages]                  */
/* ============================================================ */

/* ── Section Wrapper ── */
.ah-packages {
  padding: 80px 0;
  background: #f8f9fa;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

@media (max-width: 768px) {
  .ah-packages {
    padding: 60px 0;
  }
}

.ah-packages__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .ah-packages__inner {
    padding: 0 20px;
  }
}

/* ── Section Header ── */
.ah-packages__header {
  margin-bottom: 56px;
}

@media (max-width: 768px) {
  .ah-packages__header {
    margin-bottom: 40px;
  }
}

.ah-packages__eyebrow {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FF9100;
  margin-bottom: 16px;
}

.ah-packages__title {
  font-family: 'Space Grotesk', sans-serif;
  /* Fluid font size: 2.2rem on mobile to 4rem on desktop */
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  color: #1E293B;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.ah-packages__title span {
  color: #F59E0B;
}

.ah-packages__subtitle {
  color: #475569;
  font-size: 1.05rem;
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .ah-packages__subtitle {
    font-size: 0.95rem;
    max-width: 100%;
  }
}

.ah-packages__title-bar {
  width: 96px;
  height: 6px;
  background: #FF9100;
  border-radius: 9999px;
  margin-top: 28px;
}

/* ── Grid ── */
.ah-packages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Responsive Columns */
@media (max-width: 1200px) {
  .ah-packages__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 580px) {
  .ah-packages__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── Card ── */
.ah-pkg-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s ease;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e2e8f0;
}

.ah-pkg-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

/* ── Card Image ── */
.ah-pkg-card__img-wrap {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 0;
  /* flush — no gap between image and body */
}

.ah-pkg-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.ah-pkg-card:hover .ah-pkg-card__img {
  transform: scale(1.08);
}

/* ── Duration Badge ── */
.ah-pkg-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(67, 168, 181, 0.92);
  color: #001f23;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .ah-pkg-card__badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
}

/* ── Category Pill ── */
.ah-pkg-card__cat {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .ah-pkg-card__cat {
    font-size: 0.65rem;
    padding: 4px 10px;
  }
}

.ah-pkg-card__cat--budget {
  background: rgba(34, 197, 94, 0.88);
  color: #052e16;
}

.ah-pkg-card__cat--honeymoon {
  background: rgba(244, 114, 182, 0.9);
  color: #500724;
}

.ah-pkg-card__cat--family {
  background: rgba(99, 102, 241, 0.88);
  color: #fff;
}

.ah-pkg-card__cat--luxury {
  background: rgba(234, 179, 8, 0.92);
  color: #1c1400;
}


/* ── Card Body ── */
.ah-pkg-card__body {
  padding: 14px 16px 14px;
  /* tight — no visual gap from image */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 8px;
}

@media (max-width: 768px) {
  .ah-pkg-card__body {
    padding: 12px 14px 12px;
    gap: 6px;
  }
}

/* ── Title + Price row ── */
.ah-pkg-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.ah-pkg-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.3;
  transition: color 0.2s ease;
  flex: 1;
}

@media (max-width: 768px) {
  .ah-pkg-card__title {
    font-size: 0.95rem;
  }
}

.ah-pkg-card:hover .ah-pkg-card__title {
  color: #FF9100;
}

.ah-pkg-card__price-wrap {
  text-align: right;
  flex-shrink: 0;
}

.ah-pkg-card__price-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 2px;
}

.ah-pkg-card__price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #FF9100;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .ah-pkg-card__price {
    font-size: 1.15rem;
  }
}

/* ── "View Package" CTA ── */
.ah-pkg-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #FF9100;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid #edeeef;
  transition: gap 0.2s ease;
}

.ah-pkg-card:hover .ah-pkg-card__cta {
  gap: 10px;
}

/* ── Responsive ── */
@media (max-width: 1280px) {
  .ah-packages__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 640px) {
  .ah-packages {
    padding: 56px 0;
  }

  .ah-packages__inner {
    padding: 70px 16px;
  }

  .ah-packages__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .ah-packages__title {
    font-size: 2rem;
  }

  .ah-pkg-card__title {
    font-size: 0.88rem;
  }

  .ah-pkg-card__price {
    font-size: 1rem;
  }
}