/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette */
  --deep-navy: #071041;
  --ocean-blue: #0090D0;
  --light-bg: #ECF3FA;
  --text-blue: #194F94;
  --accent-gold: #F2C94C;
  --white: #ffffff;
  --dark-text: #1a1a2e;
  --gray-text: #6b7280;
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.18);

  /* Typography */
  --font-family: 'Cairo', sans-serif;
  --fs-hero: clamp(2.5rem, 5vw, 4rem);
  --fs-section: clamp(1.75rem, 3vw, 2.5rem);
  --fs-body: clamp(1rem, 1.2vw, 1.125rem);
  --fs-sm: 0.875rem;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 7rem);
  --container-max: 1280px;

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* ============================================
   DISNEY MAGIC CURSOR SYSTEM
   ============================================ */

/* Magic wand default cursor (SVG data URI) */
@keyframes cursorTrailFade {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(0); opacity: 0; }
}

@keyframes cursorClickBurst {
  0% { transform: scale(0) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.2) rotate(180deg); opacity: 0.8; }
  100% { transform: scale(0) rotate(360deg); opacity: 0; }
}

@keyframes cursorRingPulse {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0.6; border-width: 2px; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0; border-width: 0px; }
}

@keyframes cursorStarSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(0); opacity: 1; }
  70% { opacity: 0.6; }
  100% { transform: translate(-50%, -50%) rotate(360deg) scale(1.5); opacity: 0; }
}

/* Custom cursor — Mickey Ears + Wand */
html {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36'%3E%3Cdefs%3E%3CradialGradient id='e1' cx='50%25' cy='40%25'%3E%3Cstop offset='0%25' stop-color='%23194F94'/%3E%3Cstop offset='100%25' stop-color='%23071041'/%3E%3C/radialGradient%3E%3CradialGradient id='e2' cx='50%25' cy='40%25'%3E%3Cstop offset='0%25' stop-color='%23F2C94C'/%3E%3Cstop offset='100%25' stop-color='%23E6A800'/%3E%3C/radialGradient%3E%3C/defs%3E%3Ccircle cx='10' cy='8' r='6.5' fill='url(%23e1)' stroke='%230090D0' stroke-width='0.8'/%3E%3Ccircle cx='26' cy='8' r='6.5' fill='url(%23e1)' stroke='%230090D0' stroke-width='0.8'/%3E%3Cellipse cx='18' cy='20' rx='10' ry='9' fill='url(%23e1)' stroke='%230090D0' stroke-width='0.8'/%3E%3Cellipse cx='18' cy='19' rx='3' ry='2' fill='none' stroke='%23F2C94C' stroke-width='0.6' opacity='0.5'/%3E%3Ccircle cx='14.5' cy='17' r='1.2' fill='white' opacity='0.9'/%3E%3Ccircle cx='21.5' cy='17' r='1.2' fill='white' opacity='0.9'/%3E%3Ccircle cx='14.5' cy='17' r='0.5' fill='%23071041'/%3E%3Ccircle cx='21.5' cy='17' r='0.5' fill='%23071041'/%3E%3Cpath d='M15.5,21.5 Q18,23.5 20.5,21.5' stroke='%23F2C94C' stroke-width='0.8' fill='none' stroke-linecap='round'/%3E%3Cpolygon points='30,28 31,30.5 33.5,30.5 31.5,32 32.2,34.5 30,33 27.8,34.5 28.5,32 26.5,30.5 29,30.5' fill='url(%23e2)' opacity='0.85'/%3E%3Cpolygon points='5,30 5.5,31.3 7,31.3 5.8,32.2 6.2,33.5 5,32.6 3.8,33.5 4.2,32.2 3,31.3 4.5,31.3' fill='url(%23e2)' opacity='0.5'/%3E%3C/svg%3E") 18 20, auto;
  scroll-behavior: smooth;
  font-size: 16px;
}

/* Pointer cursor — Mickey Glove Hand */
a,
button,
input[type="submit"],
[role="button"],
.btn,
.footer__social-icon,
.navbar__toggle,
.mgallery__card,
.mgallery__strip-card,
.mgallery__video-card,
.faq__question {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36'%3E%3Cdefs%3E%3CradialGradient id='gv' cx='50%25' cy='30%25'%3E%3Cstop offset='0%25' stop-color='%23ffffff'/%3E%3Cstop offset='100%25' stop-color='%23e8e8e8'/%3E%3C/radialGradient%3E%3C/defs%3E%3Cpath d='M14,4 C14,2 16,1 17,2.5 L17,12' stroke='%23ccc' stroke-width='0.5' fill='url(%23gv)'/%3E%3Cpath d='M17,3 C17,1 19,0.5 20,2 L20,11' stroke='%23ccc' stroke-width='0.5' fill='url(%23gv)'/%3E%3Cpath d='M20,3.5 C20,1.5 22,1 23,2.5 L23,12' stroke='%23ccc' stroke-width='0.5' fill='url(%23gv)'/%3E%3Cpath d='M23,6 C23,4 25,3.5 26,5 L26,13' stroke='%23ccc' stroke-width='0.5' fill='url(%23gv)'/%3E%3Cpath d='M11,12 C9,10 10,8 12,9 L14,11 L14,4' stroke='%23ccc' stroke-width='0.5' fill='url(%23gv)'/%3E%3Cpath d='M11,12 L10,17 C9,22 12,26 17,26 L21,26 C26,26 28,22 27,17 L26,13' stroke='%23ccc' stroke-width='0.5' fill='url(%23gv)'/%3E%3Cpath d='M13,15 L25,15' stroke='%23ddd' stroke-width='0.4' opacity='0.5'/%3E%3Cpath d='M12,18 L26,18' stroke='%23ddd' stroke-width='0.4' opacity='0.5'/%3E%3Cpolygon points='6,5 6.6,7 8.5,7 7,8.2 7.5,10 6,8.8 4.5,10 5,8.2 3.5,7 5.4,7' fill='%23F2C94C' opacity='0.9'/%3E%3Cpolygon points='30,22 30.4,23.2 31.8,23.2 30.7,24 31.1,25.2 30,24.4 28.9,25.2 29.3,24 28.2,23.2 29.6,23.2' fill='%23F2C94C' opacity='0.65'/%3E%3Cpolygon points='8,27 8.3,28 9.3,28 8.5,28.6 8.8,29.6 8,29 7.2,29.6 7.5,28.6 6.7,28 7.7,28' fill='%230090D0' opacity='0.5'/%3E%3C/svg%3E") 17 4, pointer !important;
}

/* Text select cursor — Trident quill */
input[type="text"],
input[type="email"],
input[type="search"],
textarea,
[contenteditable="true"] {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cline x1='16' y1='6' x2='16' y2='28' stroke='%230090D0' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M16,6 L13,2 M16,6 L16,1 M16,6 L19,2' stroke='%23F2C94C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3Ccircle cx='16' cy='6' r='1.2' fill='%23F2C94C'/%3E%3Cpath d='M13,13 Q16,11 19,13' stroke='%23F2C94C' stroke-width='0.8' fill='none' opacity='0.6'/%3E%3Cpath d='M14,20 Q16,18 18,20' stroke='%23F2C94C' stroke-width='0.8' fill='none' opacity='0.4'/%3E%3Ccircle cx='16' cy='28' r='1.5' fill='%230090D0'/%3E%3C/svg%3E") 16 16, text;
}

/* Disney-themed text selection highlight */
::selection {
  background: rgba(0, 144, 208, 0.3);
  color: var(--deep-navy);
}

::-moz-selection {
  background: rgba(0, 144, 208, 0.3);
  color: var(--deep-navy);
}

/* Dark areas (footer, hero, navbar) selection */
.footer ::selection,
.hero ::selection,
.cta ::selection {
  background: rgba(242, 201, 76, 0.35);
  color: var(--white);
}

.footer ::-moz-selection,
.hero ::-moz-selection,
.cta ::-moz-selection {
  background: rgba(242, 201, 76, 0.35);
  color: var(--white);
}

/* Click burst particle (generated by JS) */
.cursor-click-burst {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
}

.cursor-click-star {
  position: absolute;
  width: 8px;
  height: 8px;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: cursorClickBurst 0.6s ease-out forwards;
}

.cursor-click-ring {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  left: 50%;
  top: 50%;
  animation: cursorRingPulse 0.5s ease-out forwards;
}

.cursor-click-sparkle {
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  top: 50%;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background: var(--accent-gold);
  animation: cursorStarSpin 0.7s ease-out forwards;
}

/* Grab cursor — Ship Wheel */
.ship-slider__track {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='12' fill='none' stroke='%230090D0' stroke-width='2.5'/%3E%3Ccircle cx='16' cy='16' r='4' fill='%23F2C94C' stroke='%23E6A800' stroke-width='0.5'/%3E%3Cline x1='16' y1='4' x2='16' y2='12' stroke='%230090D0' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='16' y1='20' x2='16' y2='28' stroke='%230090D0' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='4' y1='16' x2='12' y2='16' stroke='%230090D0' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='20' y1='16' x2='28' y2='16' stroke='%230090D0' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='7.5' y1='7.5' x2='12.3' y2='12.3' stroke='%230090D0' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='19.7' y1='19.7' x2='24.5' y2='24.5' stroke='%230090D0' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='24.5' y1='7.5' x2='19.7' y2='12.3' stroke='%230090D0' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='12.3' y1='19.7' x2='7.5' y2='24.5' stroke='%230090D0' stroke-width='1.5' stroke-linecap='round'/%3E%3Ccircle cx='16' cy='4' r='2' fill='%23F2C94C'/%3E%3Ccircle cx='16' cy='28' r='2' fill='%23F2C94C'/%3E%3Ccircle cx='4' cy='16' r='2' fill='%23F2C94C'/%3E%3Ccircle cx='28' cy='16' r='2' fill='%23F2C94C'/%3E%3C/svg%3E") 16 16, grab;
}

body {
  font-family: var(--font-family);
  background-color: var(--light-bg);
  color: var(--dark-text);
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-gold {
  color: var(--accent-gold);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-family);
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--sm {
  padding: 0.5rem 1.5rem;
  font-size: var(--fs-sm);
}

.btn--lg {
  padding: 0.875rem 2.5rem;
  font-size: 1rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--ocean-blue), #0077b6);
  color: var(--white);
  border-color: var(--ocean-blue);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #0077b6, var(--deep-navy));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 144, 208, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--deep-navy);
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--accent-gold), #e6b800);
  color: var(--deep-navy);
  border-color: var(--accent-gold);
  font-size: 1.125rem;
}

.btn--gold:hover {
  background: linear-gradient(135deg, #e6b800, var(--accent-gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(242, 201, 76, 0.5);
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header__tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--ocean-blue), #0077b6);
  color: var(--white);
  padding: 0.25rem 1.25rem;
  border-radius: 50px;
  font-size: var(--fs-sm);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.section-header__tag--gold {
  background: linear-gradient(135deg, var(--accent-gold), #e6b800);
  color: var(--deep-navy);
}

.section-header__title {
  font-size: var(--fs-section);
  font-weight: 800;
  color: var(--deep-navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.section-header--light .section-header__title {
  color: var(--white);
}

.section-header__desc {
  font-size: var(--fs-body);
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto;
}

.section-header--light .section-header__desc {
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================
   WAVE DIVIDERS
   ============================================ */
.wave-divider {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  width: 100%;
  height: 80px;
  display: block;
}

.wave-divider--navy {
  background: var(--light-bg);
}

.wave-divider--from-navy {
  background: var(--deep-navy);
}

.wave-divider--footer {
  background: transparent;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(7, 16, 65, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.5rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 800;
  font-size: 1.25rem;
}

.navbar__logo-icon {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__link {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: all var(--transition);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger Menu Button */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Panel */
.navbar__mobile {
  display: none;
  background: rgba(7, 16, 65, 0.98);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar__mobile.open {
  display: block;
  animation: slideDown 0.3s ease;
}

.navbar__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.navbar__mobile-links a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all var(--transition);
}

.navbar__mobile-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg {
  width: 100%;
  z-index: 0;
}

.hero__bg-video {
  width: 100%;
  height: auto;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 16, 65, 0.7) 0%,
    rgba(7, 16, 65, 0.5) 50%,
    rgba(7, 16, 65, 0.8) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 6rem;
}

.hero__title {
  font-size: var(--fs-hero);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   ADVENTURE SHIP SECTION - Magical Disney Experience
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&display=swap');

.adventure {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
  overflow: hidden;
  padding-bottom: 0;
}

/* ---------- Ocean Background ---------- */
.adventure__ocean {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.adventure__sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #09084d 0%, #0A3D91 25%, #1E90FF 55%, #0A3D91 100%);
}

.adventure__stars-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Wave SVG layers */
.adventure__wave {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 200%;
  height: 120px;
  z-index: 3;
}

.adventure__wave--1 path {
  fill: rgba(10, 61, 145, 0.55);
}
.adventure__wave--2 path {
  fill: rgba(64, 191, 255, 0.35);
}
.adventure__wave--3 path {
  fill: rgba(0, 230, 230, 0.22);
}

.adventure__wave--1 {
  animation: waveSlide 10s linear infinite, wavePulse 6s ease-in-out infinite alternate;
  bottom: 50px;
}
.adventure__wave--2 {
  animation: waveSlide 14s linear infinite reverse, wavePulse 8s ease-in-out infinite alternate-reverse;
  bottom: 45px;
}
.adventure__wave--3 {
  animation: waveSlide 18s linear infinite, wavePulse 10s ease-in-out infinite alternate;
  bottom: 40px;
}

@keyframes waveSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes wavePulse {
  0%   { opacity: 0.7; }
  50%  { opacity: 1; }
  100% { opacity: 0.8; }
}

/* Bubbles */
.adventure__bubbles {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.adv-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.45), rgba(173,216,255,0.15), rgba(255,255,255,0.05));
  border: 1.5px solid rgba(255,255,255,0.25);
  box-shadow: 0 0 6px rgba(173,216,255,0.3), inset 0 -2px 4px rgba(255,255,255,0.1);
  animation: bubbleFloat var(--dur, 8s) ease-in-out infinite;
  opacity: 0;
}

@keyframes bubbleFloat {
  0%   { transform: translateY(0) scale(0.8) rotate(0deg); opacity: 0; }
  15%  { opacity: 0.8; }
  40%  { transform: translateY(calc(var(--rise, -120px) * 0.6)) scale(1.05) rotate(5deg); opacity: 0.6; }
  60%  { transform: translateY(calc(var(--rise, -120px))) scale(0.95) rotate(-3deg); opacity: 0.5; }
  85%  { opacity: 0.25; }
  100% { transform: translateY(calc(var(--rise, -120px) * 2)) scale(0.5) rotate(8deg); opacity: 0; }
}

/* Sparkles */
.adventure__sparkles {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.adv-sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--sparkle-color, #FFD93D);
  border-radius: 50%;
  box-shadow: 0 0 10px 4px var(--sparkle-glow, rgba(255, 217, 61, 0.6));
  animation: sparklePop var(--dur, 3s) ease-in-out infinite;
  opacity: 0;
}

@keyframes sparklePop {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  25%      { opacity: 0.8; transform: scale(1.2) rotate(90deg); }
  50%      { opacity: 1; transform: scale(1.8) rotate(180deg); }
  75%      { opacity: 0.6; transform: scale(1) rotate(270deg); }
}

/* Magical shooting stars */
.adv-shooting-star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px 2px rgba(255,255,255,0.8);
  animation: shootingStar var(--dur, 4s) ease-out infinite;
  opacity: 0;
}

.adv-shooting-star::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  width: 40px;
  height: 1.5px;
  background: linear-gradient(to left, rgba(255,255,255,0.8), transparent);
  transform: translateY(-50%);
}

@keyframes shootingStar {
  0%   { transform: translate(0, 0) scale(0); opacity: 0; }
  5%   { opacity: 1; transform: translate(0, 0) scale(1); }
  40%  { opacity: 0.8; transform: translate(-180px, 60px) scale(0.8); }
  60%  { opacity: 0; transform: translate(-280px, 100px) scale(0); }
  100% { opacity: 0; }
}

/* Magical fairy dust trail */
.adv-fairy-dust {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--dust-color, #FFD93D);
  box-shadow: 0 0 8px 3px var(--dust-glow, rgba(255,217,61,0.5));
  animation: fairyDust var(--dur, 5s) ease-in-out infinite;
  opacity: 0;
}

@keyframes fairyDust {
  0%   { transform: translate(0, 0) scale(0); opacity: 0; }
  20%  { opacity: 0.9; transform: translate(var(--dx, 20px), var(--dy, -30px)) scale(1.2); }
  50%  { opacity: 0.5; transform: translate(calc(var(--dx, 20px) * 2), calc(var(--dy, -30px) * 1.5)) scale(0.8); }
  100% { opacity: 0; transform: translate(calc(var(--dx, 20px) * 3), calc(var(--dy, -30px) * 2)) scale(0); }
}

/* ---------- Floating Decorations ---------- */
.adventure__decorations {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.adventure__deco {
  position: absolute;
  opacity: 0.85;
  animation: decoFloat 5s ease-in-out infinite alternate;
  filter: drop-shadow(0 2px 8px rgba(255,215,0,0.3));
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.adventure__deco--ring {
  animation: decoFloat 4s ease-in-out infinite alternate, ringWobble 8s ease-in-out infinite;
}
.adventure__deco--starfish {
  animation: decoFloat 6s ease-in-out infinite alternate, starfishSpin 12s linear infinite;
  animation-delay: -1s;
}
.adventure__deco--anchor {
  animation: decoFloat 5s ease-in-out infinite alternate, anchorSwing 6s ease-in-out infinite alternate;
  animation-delay: -2s;
}
.adventure__deco--treasure {
  animation: decoFloat 7s ease-in-out infinite alternate, treasureGlow 3s ease-in-out infinite alternate;
  animation-delay: -3s;
}

.adventure__deco--seagull {
  animation: seagullFly 6s ease-in-out infinite alternate;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

@keyframes decoFloat {
  0%   { transform: translateY(0) rotate(-3deg); }
  100% { transform: translateY(-22px) rotate(3deg); }
}

@keyframes ringWobble {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%  { transform: translateY(-8px) rotate(10deg); }
  50%  { transform: translateY(-14px) rotate(-5deg); }
  75%  { transform: translateY(-6px) rotate(8deg); }
}

@keyframes starfishSpin {
  0%   { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(360deg); }
}

@keyframes anchorSwing {
  0%   { transform: rotate(-8deg); }
  50%  { transform: rotate(8deg) translateY(-10px); }
  100% { transform: rotate(-8deg); }
}

@keyframes treasureGlow {
  0%   { filter: drop-shadow(0 2px 8px rgba(255,215,0,0.3)); }
  100% { filter: drop-shadow(0 4px 16px rgba(255,215,0,0.7)) brightness(1.15); }
}

@keyframes seagullFly {
  0%   { transform: translate(0, 0) scaleX(1); }
  25%  { transform: translate(20px, -18px) scaleX(0.95); }
  50%  { transform: translate(40px, -10px) scaleX(1.05); }
  75%  { transform: translate(55px, -20px) scaleX(0.98); }
  100% { transform: translate(70px, -5px) scaleX(1); }
}

.adventure__deco--wand {
  animation: wandFloat 4s ease-in-out infinite alternate, wandGlow 2s ease-in-out infinite alternate;
}

.adventure__deco--music {
  animation: musicBounce 3s ease-in-out infinite;
}

.adventure__deco--fish {
  animation: fishSwim 8s ease-in-out infinite;
}

@keyframes wandFloat {
  0%   { transform: translateY(0) rotate(-5deg); }
  100% { transform: translateY(-15px) rotate(10deg); }
}

@keyframes wandGlow {
  0%   { filter: drop-shadow(0 0 4px rgba(255,217,61,0.4)); }
  100% { filter: drop-shadow(0 0 14px rgba(255,217,61,0.9)) brightness(1.2); }
}

@keyframes musicBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
  25%  { transform: translateY(-18px) rotate(-10deg); opacity: 1; }
  50%  { transform: translateY(-8px) rotate(5deg); opacity: 0.9; }
  75%  { transform: translateY(-22px) rotate(-5deg); opacity: 1; }
}

@keyframes fishSwim {
  0%   { transform: translate(0, 0) scaleX(1); }
  25%  { transform: translate(-20px, -8px) scaleX(1); }
  50%  { transform: translate(-40px, 5px) scaleX(-1); }
  75%  { transform: translate(-15px, -3px) scaleX(-1); }
  100% { transform: translate(0, 0) scaleX(1); }
}

/* ---------- Disney Characters ---------- */
.adventure__characters {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
}

.adventure__char {
  position: absolute;
  height: auto;
  filter: drop-shadow(0 6px 25px rgba(0,0,0,0.5));
}

.adventure__char--1 {
  width: 170px;
  bottom: 12%;
  left: 1%;
  animation: charBounce 3s ease-in-out infinite;
}

.adventure__char--2 {
  width: 150px;
  bottom: 10%;
  right: 1%;
  animation: charBounce 3.5s ease-in-out infinite;
  animation-delay: -1s;
}

.adventure__char--3 {
  width: 130px;
  top: 6%;
  right: 4%;
  animation: charBounce 4s ease-in-out infinite;
  animation-delay: -2s;
}

.adventure__char--4 {
  width: 140px;
  top: 8%;
  left: 5%;
  animation: charBounce 3.8s ease-in-out infinite;
  animation-delay: -0.5s;
}

.adventure__char--5 {
  width: 120px;
  bottom: 18%;
  left: 20%;
  animation: charBounce 4.2s ease-in-out infinite;
  animation-delay: -1.5s;
}

.adventure__char--6 {
  width: 130px;
  bottom: 15%;
  right: 18%;
  animation: charBounce 3.6s ease-in-out infinite;
  animation-delay: -2.5s;
}

.adventure__char--7 {
  width: 110px;
  top: 12%;
  left: 30%;
  animation: charBounce 4s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes charBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-12px) rotate(-2deg); }
  75%      { transform: translateY(-8px) rotate(2deg); }
}

/* ---------- Content ---------- */
.adventure__content {
  position: relative;
  z-index: 10;
  padding-top: 5rem;
  padding-bottom: 2rem;
}

/* Header */
.adventure__header {
  text-align: center;
  margin-bottom: 3rem;
}

.adventure__badge {
  display: inline-block;
  font-family: 'Fredoka', var(--font-family);
  background: linear-gradient(135deg, #FFD93D, #FF7F50);
  color: #0A3D91;
  padding: 0.4rem 1.8rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(255, 217, 61, 0.4);
  animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
  0%   { box-shadow: 0 4px 20px rgba(255, 217, 61, 0.4); }
  100% { box-shadow: 0 4px 35px rgba(255, 217, 61, 0.7), 0 0 60px rgba(255, 127, 80, 0.3); }
}

.adventure__title {
  font-family: 'Fredoka', var(--font-family);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 3px 15px rgba(0,0,0,0.4), 0 0 40px rgba(30, 144, 255, 0.3);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.adventure__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---------- Ship Image Slider ---------- */
.adventure__ship-slider {
  position: relative;
  max-width: 850px;
  margin: 0 auto 3.5rem;
}

.ship-slider {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 10px 40px rgba(0,0,0,0.3),
    0 0 80px rgba(30, 144, 255, 0.2);
}

.ship-slider__track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.ship-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.05);
}

.ship-slider__slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.ship-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slider Navigation Arrows */
.ship-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: rgba(7, 16, 65, 0.5);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ship-slider__btn:hover {
  background: rgba(0, 144, 208, 0.7);
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(242, 201, 76, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.ship-slider__btn--prev { right: 16px; }
.ship-slider__btn--next { left: 16px; }

/* Slider Dots */
.ship-slider__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.ship-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.ship-slider__dot.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(242, 201, 76, 0.5);
  transform: scale(1.2);
}

/* ---------- Activity Photo Cards ---------- */
.adventure__activities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto 4rem;
}

.activity-bubble {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  text-align: center;
  transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  contain: layout style paint;
}

.activity-bubble--photo {
  padding: 0;
}

.activity-bubble__img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.activity-bubble__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  background: rgba(255,255,255,0.05);
}

/* Placeholder style before lazy load */
.activity-bubble__img-wrap img:not([src]) {
  visibility: hidden;
}

.activity-bubble--photo:hover .activity-bubble__img-wrap img {
  transform: scale(1.1);
}

.activity-bubble__overlay {
  padding: 1.25rem 1rem;
}

.activity-bubble.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.activity-bubble::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 217, 61, 0), rgba(255, 127, 80, 0));
  z-index: -1;
  transition: all 0.4s ease;
}

.activity-bubble:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 217, 61, 0.4);
  box-shadow:
    0 15px 40px rgba(0,0,0,0.2),
    0 0 30px rgba(255, 217, 61, 0.15);
}

.activity-bubble:hover::before {
  background: linear-gradient(135deg, rgba(255, 217, 61, 0.3), rgba(255, 127, 80, 0.2));
}

.activity-bubble__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
  transition: transform 0.3s ease;
}

/* Only animate icon when card is visible in viewport */
.activity-bubble.visible .activity-bubble__icon {
  animation: iconFloat 3s ease-in-out infinite;
}

.activity-bubble:hover .activity-bubble__icon {
  animation: iconWiggle 0.5s ease;
  transform: scale(1.15);
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

@keyframes iconWiggle {
  0%   { transform: rotate(0deg) scale(1.15); }
  25%  { transform: rotate(-10deg) scale(1.2); }
  50%  { transform: rotate(10deg) scale(1.2); }
  75%  { transform: rotate(-5deg) scale(1.15); }
  100% { transform: rotate(0deg) scale(1.15); }
}

.activity-bubble__title {
  font-family: 'Fredoka', var(--font-family);
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFD93D;
  margin-bottom: 0.5rem;
}

.activity-bubble__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ---------- Bottom Wave ---------- */
.adventure__wave-bottom {
  position: relative;
  z-index: 10;
  margin-top: -2px;
  line-height: 0;
}

.adventure__wave-bottom svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ============================================
   DESTINATIONS — Cruise Destinations Explorer
   ============================================ */
.destinations {
  background: var(--light-bg);
  padding: 0 0 var(--section-padding);
  position: relative;
  overflow: hidden;
}

/* World map background */
.destinations__map-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.destinations__world-map,
.destinations__route-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Animated cruise route dashes */
@keyframes destRouteDash {
  to { stroke-dashoffset: -100; }
}
.destinations__route-path {
  animation: destRouteDash 12s linear infinite;
}
.destinations__route-path--2 {
  animation-duration: 16s;
  animation-direction: reverse;
}

/* Pulsing route dots */
@keyframes destRoutePulse {
  0%, 100% { r: 4; opacity: 0.4; }
  50% { r: 7; opacity: 0.7; }
}
.destinations__route-dot {
  animation: destRoutePulse 3s ease-in-out infinite;
}
.destinations__route-dot:nth-child(2) { animation-delay: 1s; }
.destinations__route-dot:nth-child(3) { animation-delay: 2s; }

/* Floating compass */
.destinations__compass {
  position: absolute;
  top: 8%;
  left: 5%;
  z-index: 1;
  opacity: 0.6;
  animation: destCompassSpin 30s linear infinite;
}
@keyframes destCompassSpin {
  to { transform: rotate(360deg); }
}

/* Sparkle particles */
.destinations__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Container sits above decorations */
.destinations .container {
  position: relative;
  z-index: 2;
}

/* ---- Section Header ---- */
.destinations__header {
  text-align: center;
  margin-bottom: 3rem;
}
.destinations__header-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.destinations__header-line {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  border-radius: 2px;
}
.destinations__tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0,144,208,0.12), rgba(242,201,76,0.12));
  color: var(--ocean-blue);
  padding: 0.4rem 1.5rem;
  border-radius: 50px;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}
.destinations__title {
  font-size: var(--fs-section);
  font-weight: 800;
  color: var(--deep-navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.destinations__subtitle {
  font-size: var(--fs-body);
  color: var(--gray-text);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---- Hero Featured Destination ---- */
.destinations__featured {
  margin-bottom: 2rem;
}
.dest-hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
}
.dest-hero__img {
  position: absolute;
  inset: 0;
}
.dest-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.dest-hero:hover .dest-hero__img img {
  transform: scale(1.08);
}
.dest-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,16,65,0.7) 0%, rgba(7,16,65,0.2) 50%, rgba(0,144,208,0.3) 100%);
  transition: opacity var(--transition);
}
.dest-hero:hover .dest-hero__overlay {
  opacity: 0.85;
}
.dest-hero__glow {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(242,201,76,0.08) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.dest-hero:hover .dest-hero__glow {
  opacity: 1.5;
}
.dest-hero__content {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 2.5rem;
  z-index: 2;
  color: var(--white);
}
.dest-hero__location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
}
.dest-hero__location svg {
  opacity: 0.7;
}
.dest-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.dest-hero__desc {
  font-size: var(--fs-body);
  line-height: 1.8;
  max-width: 550px;
  opacity: 0.9;
  margin-bottom: 1rem;
}
.dest-hero__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.dest-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
}
.btn--glow {
  position: relative;
  overflow: hidden;
}
.btn--glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(242,201,76,0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.btn--glow:hover::after {
  opacity: 1;
}
.dest-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}
.dest-hero__wave svg {
  display: block;
  width: 100%;
  height: 40px;
}

/* ---- Interactive Explorer Cards ---- */
.destinations__explorer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.dest-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(7, 16, 65, 0.08);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(40px);
  cursor: pointer;
}
.dest-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.dest-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 50px rgba(7, 16, 65, 0.15),
    0 0 0 1px rgba(0, 144, 208, 0.2),
    0 0 30px rgba(0, 144, 208, 0.08);
}

/* Glowing border on hover */
.dest-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(0,144,208,0.4), rgba(242,201,76,0.4), rgba(0,144,208,0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 3;
  pointer-events: none;
}
.dest-card:hover::before {
  opacity: 1;
}

/* Card shine sweep */
.dest-card__shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  z-index: 4;
  pointer-events: none;
  transition: none;
}
.dest-card:hover .dest-card__shine {
  animation: destCardShine 0.8s ease forwards;
}
@keyframes destCardShine {
  to { left: 150%; }
}

.dest-card__img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.dest-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.dest-card:hover .dest-card__img-wrap img {
  transform: scale(1.12);
}
.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7, 16, 65, 0.5) 100%);
  opacity: 0.6;
  transition: opacity 0.5s;
}
.dest-card:hover .dest-card__overlay {
  opacity: 0.9;
}

.dest-card__content {
  padding: 1.25rem 1.5rem 1.5rem;
  position: relative;
  z-index: 2;
}
.dest-card__location {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--ocean-blue);
  margin-bottom: 0.4rem;
  opacity: 0.8;
}
.dest-card__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--deep-navy);
  margin-bottom: 0.4rem;
  transition: color var(--transition);
}
.dest-card:hover .dest-card__title {
  color: var(--ocean-blue);
}
.dest-card__desc {
  font-size: var(--fs-sm);
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease 0.1s;
}
.dest-card:hover .dest-card__desc {
  opacity: 1;
  transform: translateY(0);
}
.dest-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ocean-blue);
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease 0.15s;
}
.dest-card__btn svg {
  transition: transform var(--transition);
}
[dir="rtl"] .dest-card__btn svg,
.dest-card__btn svg {
  transform: scaleX(-1);
}
.dest-card:hover .dest-card__btn {
  opacity: 1;
  transform: translateY(0);
}
.dest-card:hover .dest-card__btn:hover svg {
  transform: scaleX(-1) translateX(4px);
}

/* Card number watermark */
.dest-card__number {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(7, 16, 65, 0.04);
  line-height: 1;
  z-index: 1;
  pointer-events: none;
}

/* ---- Mobile Swipe Hint ---- */
.destinations__swipe-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gray-text);
  font-size: var(--fs-sm);
  margin-top: 1.5rem;
  opacity: 0.7;
}
.destinations__swipe-hint svg {
  animation: destSwipeHint 1.5s ease-in-out infinite;
  transform: scaleX(-1);
}
@keyframes destSwipeHint {
  0%, 100% { transform: scaleX(-1) translateX(0); }
  50% { transform: scaleX(-1) translateX(-6px); }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .destinations__explorer {
    grid-template-columns: repeat(2, 1fr);
  }
  .dest-hero { height: 360px; }
}
@media (max-width: 768px) {
  .destinations__explorer {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
  }
  .destinations__explorer::-webkit-scrollbar { display: none; }
  .destinations__explorer .dest-card {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .destinations__swipe-hint { display: flex; }
  .dest-hero { height: 300px; }
  .dest-hero__content { padding: 1.5rem; }
  .dest-hero__title { font-size: 1.75rem; }
  .dest-hero__desc { font-size: var(--fs-sm); }
  .destinations__compass { display: none; }
  /* Show desc on mobile since no hover */
  .dest-card__desc,
  .dest-card__btn {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 480px) {
  .dest-hero { height: 260px; }
  .dest-hero__content { padding: 1.25rem; }
  .destinations__explorer .dest-card { min-width: 260px; }
}

/* ============================================
   EXPERIENCE SECTION — Interactive Ship Explorer
   ============================================ */
.experience {
  background: var(--deep-navy);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

/* Animated floating particles */
.experience__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.experience__particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 201, 76, 0.6), transparent 70%);
  animation: expParticleFloat 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes expParticleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-40px) scale(1.3); opacity: 0.8; }
}

/* Wave decorations */
.experience__wave-top,
.experience__wave-bottom {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
}
.experience__wave-top { top: 0; }
.experience__wave-bottom { bottom: 0; }
.experience__wave-top svg,
.experience__wave-bottom svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ── Cinematic Header ── */
.experience__header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.experience__header.visible {
  opacity: 1;
  transform: translateY(0);
}

.experience__header-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.experience__header-line {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  border-radius: 2px;
}

.experience__header-compass {
  animation: expCompassSpin 12s linear infinite;
  flex-shrink: 0;
}
@keyframes expCompassSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.experience__tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding: 0.4rem 1.25rem;
  border: 1px solid rgba(242, 201, 76, 0.25);
  border-radius: 50px;
  background: rgba(242, 201, 76, 0.08);
}

.experience__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
  background: linear-gradient(135deg, #fff 30%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.experience__subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Experience Grid ── */
.experience__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

/* ── Premium Experience Card ── */
.exp-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 400px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.exp-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Background image */
.exp-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.exp-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
  filter: brightness(0.85);
}
.exp-card:hover .exp-card__bg img {
  transform: scale(1.12);
  filter: brightness(0.55);
}

/* Gradient overlay */
.exp-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(7, 16, 65, 0.95) 0%,
    rgba(7, 16, 65, 0.6) 40%,
    rgba(7, 16, 65, 0.15) 70%,
    transparent 100%
  );
  transition: background 0.5s ease;
}
.exp-card:hover .exp-card__overlay {
  background: linear-gradient(
    to top,
    rgba(7, 16, 65, 0.98) 0%,
    rgba(7, 16, 65, 0.75) 50%,
    rgba(7, 16, 65, 0.4) 100%
  );
}

/* Glowing border effect */
.exp-card__glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 24px;
  border: 2px solid transparent;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
  pointer-events: none;
}
.exp-card:hover .exp-card__glow {
  border-color: rgba(242, 201, 76, 0.4);
  box-shadow:
    inset 0 0 30px rgba(242, 201, 76, 0.08),
    0 0 40px rgba(242, 201, 76, 0.1);
}

/* Card content */
.exp-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.exp-card:hover .exp-card__content {
  transform: translateY(-10px);
}

/* Icon */
.exp-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(242, 201, 76, 0.12);
  color: var(--accent-gold);
  margin-bottom: 1rem;
  transition: background 0.4s ease, transform 0.4s ease;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(242, 201, 76, 0.15);
}
.exp-card:hover .exp-card__icon {
  background: rgba(242, 201, 76, 0.22);
  transform: scale(1.1);
}

/* Title */
.exp-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
  transition: color 0.4s ease;
}
.exp-card:hover .exp-card__title {
  color: var(--accent-gold);
}

/* Description */
.exp-card__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease 0.1s;
}
.exp-card:hover .exp-card__desc {
  max-height: 100px;
  opacity: 1;
}

/* CTA link */
.exp-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}
.exp-card__cta svg {
  transition: transform 0.3s ease;
}
.exp-card:hover .exp-card__cta {
  opacity: 1;
  transform: translateY(0);
}
.exp-card:hover .exp-card__cta svg {
  transform: translateX(-4px);
}

/* Card number */
.exp-card__number {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.08em;
  transition: color 0.4s ease;
}
.exp-card:hover .exp-card__number {
  color: rgba(242, 201, 76, 0.4);
}

/* Mobile swipe hint */
.experience__swipe-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  animation: expSwipeHint 2s ease-in-out infinite;
}
@keyframes expSwipeHint {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(-8px); opacity: 1; }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .experience__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .exp-card { min-height: 360px; }
}

@media (max-width: 768px) {
  .experience__grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .experience__grid::-webkit-scrollbar { display: none; }
  .exp-card {
    flex: 0 0 280px;
    min-height: 340px;
    scroll-snap-align: start;
  }
  /* Always show desc + cta on mobile since no hover */
  .exp-card__desc { max-height: 100px; opacity: 1; }
  .exp-card__cta { opacity: 1; transform: translateY(0); }
  .experience__swipe-hint { display: flex; }
}

@media (max-width: 480px) {
  .exp-card { flex: 0 0 260px; min-height: 320px; }
  .exp-card__content { padding: 1.5rem 1.25rem; }
  .experience__title { font-size: 1.5rem; }
}

/* ============================================
   MAGICAL GALLERY — ✨ Explore the Magic Onboard
   ============================================ */
.mgallery {
  background: linear-gradient(180deg, var(--light-bg) 0%, #dae8f7 50%, var(--light-bg) 100%);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

/* Animated background gradient shimmer */
.mgallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(0,144,208,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(242,201,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Sparkle particles container */
.mgallery__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Subtitles */
.mgallery__subtitle {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--deep-navy);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ── CINEMATIC VIDEO SHOWCASE ── */
.mgallery__video-showcase {
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.mgallery__video-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mgallery__video-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0.5rem;
  scrollbar-width: none;
}

.mgallery__video-track::-webkit-scrollbar {
  display: none;
}

.mgallery__video-card {
  flex: 0 0 min(600px, 80vw);
  scroll-snap-align: center;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  box-shadow: 0 8px 32px rgba(7,16,65,0.15);
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), box-shadow 0.5s ease;
  cursor: pointer;
}

.mgallery__video-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(7,16,65,0.25), 0 0 30px rgba(0,144,208,0.15);
}

.mgallery__video-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(242,201,76,0), rgba(0,144,208,0));
  transition: background 0.5s ease;
  pointer-events: none;
  z-index: 3;
}

.mgallery__video-card:hover::after {
  background: linear-gradient(135deg, rgba(242,201,76,0.4), rgba(0,144,208,0.3));
}

.mgallery__video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mgallery__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7,16,65,0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  z-index: 2;
  transition: background 0.4s ease;
}

.mgallery__video-card:hover .mgallery__video-overlay {
  background: linear-gradient(180deg, rgba(7,16,65,0.1) 30%, rgba(7,16,65,0.9) 100%);
}

.mgallery__play-btn {
  background: none;
  border: none;
  padding: 0;
  line-height: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), filter 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(242,201,76,0.4));
}

.mgallery__play-btn:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 6px 20px rgba(242,201,76,0.6));
}

.mgallery__video-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  position: absolute;
  bottom: 1.25rem;
  right: 1.5rem;
  left: 1.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.mgallery__video-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--ocean-blue);
  background: rgba(255,255,255,0.9);
  color: var(--deep-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  z-index: 5;
}

.mgallery__video-btn:hover {
  background: var(--ocean-blue);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0,144,208,0.4);
}

/* ── MAGICAL MASONRY GALLERY ── */
.mgallery__masonry-section {
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.mgallery__masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}

.mgallery__card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.mgallery__card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mgallery__card--tall {
  grid-row: span 2;
}

.mgallery__card--wide {
  grid-column: span 2;
}

.mgallery__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.23,1,0.32,1);
}

.mgallery__card:hover img {
  transform: scale(1.08);
}

/* Magical glow border on hover */
.mgallery__card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: conic-gradient(from 0deg, #F2C94C, #0090D0, #194F94, #F2C94C);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.mgallery__card:hover .mgallery__card-glow {
  opacity: 1;
  animation: mgalleryGlowRotate 3s linear infinite;
}

@keyframes mgalleryGlowRotate {
  to { filter: hue-rotate(360deg); }
}

.mgallery__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7,16,65,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mgallery__card:hover .mgallery__card-overlay {
  opacity: 1;
}

.mgallery__card-title {
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.mgallery__card-desc {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Card lift & shadow on hover */
.mgallery__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: 0 0 0 rgba(0,144,208,0);
  transition: box-shadow 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.mgallery__card:hover::before {
  box-shadow: 0 12px 40px rgba(0,144,208,0.2), 0 0 20px rgba(242,201,76,0.1);
}

.mgallery__card:hover {
  transform: translateY(-5px) scale(1);
  z-index: 3;
}

/* ── INTERACTIVE MEDIA STRIP (Disney+ style) ── */
.mgallery__strip-section {
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
}

.mgallery__strip-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mgallery__strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 1rem 0.5rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.mgallery__strip::-webkit-scrollbar {
  display: none;
}

.mgallery__strip-card {
  flex: 0 0 260px;
  height: 170px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(7,16,65,0.1);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s ease;
}

.mgallery__strip-card:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 32px rgba(7,16,65,0.2), 0 0 15px rgba(0,144,208,0.15);
  z-index: 3;
}

.mgallery__strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mgallery__strip-card:hover img {
  transform: scale(1.1);
}

.mgallery__strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,16,65,0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 0.75rem 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mgallery__strip-card:hover .mgallery__strip-overlay {
  opacity: 1;
}

.mgallery__strip-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.mgallery__strip-btn {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--text-blue);
  background: rgba(255,255,255,0.85);
  color: var(--deep-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 5;
}

.mgallery__strip-btn:hover {
  background: var(--text-blue);
  color: white;
  transform: scale(1.1);
}

/* ── MAGICAL LIGHTBOX ── */
.mgallery__lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mgallery__lightbox.active {
  opacity: 1;
  visibility: visible;
}

.mgallery__lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,16,65,0.92);
  backdrop-filter: blur(20px);
}

.mgallery__lightbox-content {
  position: relative;
  width: 90vw;
  max-width: 1100px;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.mgallery__lightbox-media {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mgallery__lightbox-media img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain;
  transform: scale(0.9);
  opacity: 0;
  animation: mgalleryLightboxZoomIn 0.5s cubic-bezier(0.23,1,0.32,1) forwards;
}

.mgallery__lightbox-media video {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.9);
  opacity: 0;
  animation: mgalleryLightboxZoomIn 0.5s cubic-bezier(0.23,1,0.32,1) forwards;
}

@keyframes mgalleryLightboxZoomIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.mgallery__lightbox-close {
  position: absolute;
  top: -45px;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.mgallery__lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: rotate(90deg);
}

.mgallery__lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.mgallery__lightbox-nav:hover {
  background: rgba(0,144,208,0.4);
  border-color: var(--ocean-blue);
  transform: translateY(-50%) scale(1.1);
}

.mgallery__lightbox-nav--prev {
  right: -60px;
}

.mgallery__lightbox-nav--next {
  left: -60px;
}

.mgallery__lightbox-caption {
  position: absolute;
  bottom: -40px;
  right: 0;
  left: 0;
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 1rem;
}

.mgallery__lightbox-counter {
  position: absolute;
  top: -42px;
  right: 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 600;
  direction: ltr;
}

/* Lightbox sparkles */
.mgallery__lightbox-sparkles {
  position: absolute;
  inset: -40px;
  pointer-events: none;
  z-index: 0;
}

.mgallery__lb-sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  animation: mgallerySparkleFloat var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes mgallerySparkleFloat {
  0%, 100% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-20px); }
}

/* Floating sparkle in gallery bg */
.mgallery__sparkle-dot {
  position: absolute;
  border-radius: 50%;
  animation: mgalleryBgSparkle var(--dur, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  pointer-events: none;
}

@keyframes mgalleryBgSparkle {
  0%, 100% { opacity: 0; transform: translate(0, 0) scale(0.5); }
  50% { opacity: 0.8; transform: translate(var(--dx, 10px), var(--dy, -15px)) scale(1); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .mgallery__masonry {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }

  .mgallery__video-card {
    flex: 0 0 min(500px, 80vw);
  }

  .mgallery__lightbox-nav--prev { right: -10px; }
  .mgallery__lightbox-nav--next { left: -10px; }
}

@media (max-width: 768px) {
  .mgallery__masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .mgallery__card--wide {
    grid-column: span 2;
  }

  .mgallery__card--tall {
    grid-row: span 2;
  }

  .mgallery__video-card {
    flex: 0 0 min(400px, 85vw);
  }

  .mgallery__video-btn {
    display: none;
  }

  .mgallery__strip-card {
    flex: 0 0 220px;
    height: 145px;
  }

  .mgallery__strip-btn {
    display: none;
  }

  .mgallery__lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .mgallery__lightbox-nav--prev { right: 10px; top: auto; bottom: -55px; transform: none; }
  .mgallery__lightbox-nav--next { left: 10px; top: auto; bottom: -55px; transform: none; }
  .mgallery__lightbox-nav:hover { transform: scale(1.1); }
}

@media (max-width: 480px) {
  .mgallery__masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .mgallery__card--wide,
  .mgallery__card--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .mgallery__video-card {
    flex: 0 0 90vw;
  }

  .mgallery__strip-card {
    flex: 0 0 200px;
    height: 130px;
  }

  .mgallery__lightbox-content {
    width: 95vw;
  }
}



/* ============================================
   ONBOARD ACTIVITIES — Magical Adventures
   ============================================ */

/* ── Hero Video Banner ── */
.onboard__hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
}

.onboard__hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: onboardHeroZoom 20s ease-in-out infinite alternate;
}

@keyframes onboardHeroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.onboard__hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(
    180deg,
    rgba(7, 16, 65, 0.35) 0%,
    rgba(30, 58, 138, 0.55) 60%,
    rgba(7, 16, 65, 0.7) 100%
  );
  z-index: 2;
}

.onboard__hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.onboard__hero-tag {
  display: inline-block;
  background: rgba(251, 191, 36, 0.2);
  border: 1px solid rgba(251, 191, 36, 0.5);
  color: #FBBF24;
  padding: 0.4rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
}

.onboard__hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 20px rgba(7, 16, 65, 0.5);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.onboard__hero-desc {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.onboard__hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 3;
}

/* ── Filter Tabs ── */
.onboard__filters {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.onboard__filter {
  background: #fff;
  border: 2px solid #DBEAFE;
  color: #1E3A8A;
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-family);
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.onboard__filter:hover {
  border-color: #1D4ED8;
  background: #EFF6FF;
}

.onboard__filter.active {
  background: linear-gradient(135deg, #1E3A8A, #1D4ED8);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(29, 78, 216, 0.35);
}

/* ── Activities Grid ── */
.onboard__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── Activity Card ── */
.onboard__card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid transparent;
  opacity: 0;
  transform: translateY(40px);
  position: relative;
}

.onboard__card.visible {
  opacity: 1;
  transform: translateY(0);
}

.onboard__card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow:
    0 20px 50px rgba(30, 58, 138, 0.15),
    0 0 0 1px rgba(251, 191, 36, 0.2),
    0 0 30px rgba(251, 191, 36, 0.08);
}

.onboard__card.visible:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Featured cards span 2 columns */
.onboard__card--featured {
  grid-column: span 2;
}

/* Card Image */
.onboard__card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.onboard__card--featured .onboard__card-img {
  aspect-ratio: 21 / 10;
}

.onboard__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.onboard__card:hover .onboard__card-img img {
  transform: scale(1.08);
}

/* Badge */
.onboard__card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(7, 16, 65, 0.75);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

/* Card Body */
.onboard__card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.onboard__card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1E3A8A;
  margin-bottom: 0.4rem;
}

.onboard__card-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
}

/* ── Hide filtered cards ── */
.onboard__card.onboard__card--hidden {
  display: none;
}

/* ── Featured Video Spotlight ── */
.onboard__spotlight {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(135deg, #071041 0%, #1E3A8A 50%, #0f2557 100%);
  overflow: hidden;
}

.onboard__spotlight-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(29, 78, 216, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.onboard__spotlight-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}

/* Spotlight Video */
.onboard__spotlight-video {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(251, 191, 36, 0.25);
  opacity: 0;
  transform: translateX(40px);
}

.onboard__spotlight-video.visible {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.onboard__spotlight-player {
  display: block;
  width: auto;
  height: 85vh;
  max-height: 850px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 16px;
}

/* Custom Play Button */
.onboard__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  z-index: 2;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
}

.onboard__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.15);
}

.onboard__play-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Spotlight Content */
.onboard__spotlight-content {
  color: #fff;
  opacity: 0;
  transform: translateX(-40px);
}

.onboard__spotlight-content.visible {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.7s 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.onboard__spotlight-tag {
  display: inline-block;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #FBBF24;
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.onboard__spotlight-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 30%, #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.onboard__spotlight-desc {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.onboard__spotlight-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.onboard__spotlight-features li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}

.onboard__spotlight-btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 50px;
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  color: #1E3A8A;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(251, 191, 36, 0.35);
}

.onboard__spotlight-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(251, 191, 36, 0.5);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .onboard__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .onboard__card--featured {
    grid-column: span 2;
  }
  .onboard__spotlight-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .onboard__hero {
    height: 55vh;
    min-height: 350px;
  }
  .onboard__grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .onboard__card--featured {
    grid-column: span 1;
  }
  .onboard__card--featured .onboard__card-img {
    aspect-ratio: 16 / 10;
  }
  .onboard__filters {
    gap: 0.4rem;
  }
  .onboard__filter {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }
  .onboard__spotlight-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .onboard__spotlight-features {
    align-items: center;
  }
  .onboard__spotlight-content {
    transform: translateY(30px);
  }
  .onboard__spotlight-content.visible {
    transform: translateY(0);
  }
  .onboard__spotlight-video {
    transform: translateY(30px);
  }
  .onboard__spotlight-video.visible {
    transform: translateY(0);
  }
}

/* ── Hero sparkle particles ── */
.onboard__hero-sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
  animation: onboardSparkleDrift var(--dur, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}

@keyframes onboardSparkleDrift {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) scale(1.2);
    opacity: 1;
  }
}

/* ============================================
   FAQ SECTION — Disney Happy Vibe Edition
   ============================================ */

/* Keyframes */
@keyframes faqSparkleFloat {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); opacity: 0.6; }
  25% { transform: translateY(-20px) scale(1.2) rotate(15deg); opacity: 1; }
  50% { transform: translateY(-10px) scale(0.9) rotate(-10deg); opacity: 0.8; }
  75% { transform: translateY(-25px) scale(1.1) rotate(20deg); opacity: 0.5; }
}

@keyframes faqEmojiWiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-8deg) scale(1.1); }
  50% { transform: rotate(8deg) scale(1.15); }
  75% { transform: rotate(-5deg) scale(1.05); }
}

@keyframes faqTitleBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes faqItemSlideIn {
  0% { opacity: 0; transform: translateX(40px) scale(0.95); }
  60% { opacity: 1; transform: translateX(-5px) scale(1.01); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes faqIconBounceOpen {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.3); }
  75% { transform: rotate(180deg) scale(0.9); }
  100% { transform: rotate(180deg) scale(1); }
}

@keyframes faqIconBounceClose {
  0% { transform: rotate(180deg) scale(1); }
  50% { transform: rotate(0deg) scale(1.3); }
  75% { transform: rotate(0deg) scale(0.9); }
  100% { transform: rotate(0deg) scale(1); }
}

@keyframes faqGlowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 144, 208, 0); }
  50% { box-shadow: 0 0 20px 4px rgba(0, 144, 208, 0.15); }
}

.faq {
  background: linear-gradient(180deg, #dceefb 0%, #b8ddf5 30%, #a2d2f0 50%, #b8ddf5 70%, #dceefb 100%);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

/* Floating sparkle decorations */
.faq__magic {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.faq__sparkle {
  position: absolute;
  font-size: 1.5rem;
  animation: faqSparkleFloat 5s ease-in-out infinite;
}

.faq__sparkle--1 { top: 10%; right: 8%; animation-delay: 0s; }
.faq__sparkle--2 { top: 30%; left: 5%; animation-delay: -1.2s; font-size: 1.2rem; }
.faq__sparkle--3 { bottom: 20%; right: 12%; animation-delay: -2.5s; }
.faq__sparkle--4 { bottom: 35%; left: 10%; animation-delay: -3.5s; font-size: 1rem; }

/* Floating Nemo characters */
@keyframes faqNemoSwim1 {
  0%, 100% { transform: translateY(0) scaleX(-1) rotate(0deg); }
  25% { transform: translateY(-18px) scaleX(-1) rotate(5deg); }
  50% { transform: translateY(-8px) scaleX(-1) rotate(-3deg); }
  75% { transform: translateY(-22px) scaleX(-1) rotate(4deg); }
}

@keyframes faqNemoSwim2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  30% { transform: translateY(-15px) rotate(-6deg); }
  60% { transform: translateY(-25px) rotate(4deg); }
  80% { transform: translateY(-10px) rotate(-2deg); }
}

@keyframes faqNemoSwim3 {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  25% { transform: translateX(10px) translateY(-12px) rotate(5deg); }
  50% { transform: translateX(-5px) translateY(-20px) rotate(-4deg); }
  75% { transform: translateX(8px) translateY(-8px) rotate(3deg); }
}

.faq__nemo {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  z-index: 0;
}

.faq__nemo--1 {
  width: 100px;
  top: 12%;
  left: 3%;
  animation: faqNemoSwim1 6s ease-in-out infinite;
  opacity: 0.85;
}

.faq__nemo--2 {
  width: 80px;
  bottom: 15%;
  right: 4%;
  animation: faqNemoSwim2 7s ease-in-out infinite;
  animation-delay: -2s;
  opacity: 0.8;
}

.faq__nemo--3 {
  width: 65px;
  top: 55%;
  left: 6%;
  animation: faqNemoSwim3 8s ease-in-out infinite;
  animation-delay: -4s;
  opacity: 0.75;
}

/* Hide Nemo on small screens to avoid clutter */
@media (max-width: 768px) {
  .faq__nemo { display: none; }
}

/* Title emoji wiggle */
.faq__title-emoji {
  display: inline-block;
  animation: faqEmojiWiggle 3s ease-in-out infinite;
  font-size: 0.85em;
}

/* FAQ list */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

/* FAQ item — Disney card style */
.faq__item {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: translateX(40px) scale(0.95);
  position: relative;
}

/* Staggered entrance animation */
.faq__item.visible {
  animation: faqItemSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.faq__item:nth-child(1).visible { animation-delay: 0s; }
.faq__item:nth-child(2).visible { animation-delay: 0.1s; }
.faq__item:nth-child(3).visible { animation-delay: 0.2s; }
.faq__item:nth-child(4).visible { animation-delay: 0.3s; }
.faq__item:nth-child(5).visible { animation-delay: 0.4s; }

/* Colored accent stripe on Left (RTL = right visual side) */
.faq__item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  border-radius: 0 20px 20px 0;
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq__item:nth-child(1)::before { background: linear-gradient(180deg, #F2C94C, #FFD93D); }
.faq__item:nth-child(2)::before { background: linear-gradient(180deg, #0090D0, #40BFFF); }
.faq__item:nth-child(3)::before { background: linear-gradient(180deg, #FF7EB3, #FF5F8F); }
.faq__item:nth-child(4)::before { background: linear-gradient(180deg, #7DF9FF, #00D4FF); }
.faq__item:nth-child(5)::before { background: linear-gradient(180deg, #FF7F50, #FF6B35); }

/* Hover — Disney bounce & glow */
.faq__item:hover {
  border-color: rgba(0, 144, 208, 0.3);
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 8px 30px rgba(0, 144, 208, 0.12),
    0 2px 8px rgba(7, 16, 65, 0.06);
}

.faq__item:hover::before {
  width: 8px;
}

/* Open state */
.faq__item.open {
  border-color: var(--ocean-blue);
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 12px 40px rgba(0, 144, 208, 0.15),
    0 4px 12px rgba(7, 16, 65, 0.08);
}

.faq__item.open::before {
  width: 8px;
}

/* Question button */
.faq__question {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-navy);
  background: none;
  border: none;
  cursor: pointer;
  text-align: right;
  transition: color 0.3s ease;
}

.faq__question:hover {
  color: var(--ocean-blue);
}

/* Emoji icon before question */
.faq__q-emoji {
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(0, 144, 208, 0.08), rgba(242, 201, 76, 0.1));
  border-radius: 12px;
}

.faq__item:hover .faq__q-emoji {
  transform: scale(1.15) rotate(-5deg);
}

.faq__item.open .faq__q-emoji {
  animation: faqEmojiWiggle 0.6s ease-in-out;
  background: linear-gradient(135deg, rgba(0, 144, 208, 0.15), rgba(242, 201, 76, 0.18));
}

/* Chevron icon */
.faq__icon {
  flex-shrink: 0;
  color: var(--ocean-blue);
  margin-right: auto;
  transition: color 0.3s ease;
}

.faq__item.open .faq__icon {
  animation: faqIconBounceOpen 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  color: var(--accent-gold);
}

/* Bounce back on collapse (only after user has interacted) */
.faq__item--touched:not(.open) .faq__icon {
  animation: faqIconBounceClose 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Answer container */
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
}

.faq__answer p {
  padding: 0 1.5rem 1.5rem;
  padding-right: 4.5rem;
  font-size: var(--fs-sm);
  color: var(--gray-text);
  line-height: 1.9;
  opacity: 0;
  transform: translateY(-10px);
  /* Collapse: text fades out quickly first, then grid shrinks */
  transition: opacity 0.2s ease, transform 0.2s ease;
  position: relative;
}

.faq__item.open .faq__answer p {
  opacity: 1;
  transform: translateY(0);
  /* Expand: text fades in after grid starts opening */
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
}

/* Answer decorative line */
.faq__answer p::before {
  content: '';
  position: absolute;
  top: 0;
  right: 2.7rem;
  width: 2px;
  height: calc(100% - 1.5rem);
  background: linear-gradient(180deg, var(--ocean-blue), rgba(0, 144, 208, 0.1));
  border-radius: 2px;
}

.faq__support-link {
  display: inline-block;
  margin-inline-start: 0.25rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 144, 208, 0.12);
  color: var(--text-blue);
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(0, 144, 208, 0.35);
  transition: var(--transition);
}

.faq__support-link:hover {
  background: var(--ocean-blue);
  color: #fff;
  border-color: var(--ocean-blue);
  transform: translateY(-1px);
}

/* ============================================
   CTA SECTION — Disney Magic Edition
   ============================================ */

@keyframes ctaStarFloat {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.7; }
  25% { transform: translateY(-15px) rotate(90deg) scale(1.2); opacity: 1; }
  50% { transform: translateY(-5px) rotate(180deg) scale(0.9); opacity: 0.8; }
  75% { transform: translateY(-20px) rotate(270deg) scale(1.1); opacity: 1; }
}

@keyframes ctaBubbleRise {
  0% { transform: translateY(100%) scale(0); opacity: 0; }
  20% { opacity: 0.6; }
  100% { transform: translateY(-400%) scale(1); opacity: 0; }
}

@keyframes ctaShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes ctaBadgeBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes ctaBtnPulse {
  0%, 100% { box-shadow: 0 6px 25px rgba(242, 201, 76, 0.3); }
  50% { box-shadow: 0 8px 40px rgba(242, 201, 76, 0.55), 0 0 60px rgba(242, 201, 76, 0.2); }
}

@keyframes ctaTitleGlow {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 0 20px rgba(242, 201, 76, 0.5), 0 0 40px rgba(242, 201, 76, 0.2); }
}

@keyframes ctaWaveDrift {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes ctaOverlayShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes ctaFrozenFloat1 {
  0%, 100% { transform: translateY(0) rotate(-2deg) scale(1); }
  50% { transform: translateY(-16px) rotate(2deg) scale(1.03); }
}

@keyframes ctaFrozenFloat2 {
  0%, 100% { transform: translateY(0) rotate(2deg) scale(1); }
  50% { transform: translateY(-14px) rotate(-2deg) scale(1.02); }
}

.cta {
  position: relative;
  padding: var(--section-padding) 0;
  padding-bottom: 4rem;
  min-height: 450px;
  display: flex;
  align-items: center;
  overflow: visible;
  margin-bottom: 0;
}

.cta__bg {
  position: absolute;
  inset: 0;
}

.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center;
  transition: transform 8s ease;
}

.cta:hover .cta__bg img,
.cta:hover .cta__overlay {
  transform: scale(1.05);
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 16, 65, 0.9) 0%,
    rgba(25, 79, 148, 0.8) 30%,
    rgba(0, 144, 208, 0.75) 60%,
    rgba(7, 16, 65, 0.85) 100%
  );
  background-size: 200% 200%;
  transform: scale(1);
  transform-origin: center;
  transition: transform 8s ease;
  animation: ctaOverlayShift 10s ease-in-out infinite;
}

/* Floating sparkle stars */
.cta__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.cta__star {
  position: absolute;
  background: var(--accent-gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: ctaStarFloat 4s ease-in-out infinite;
}

.cta__star--1 { width: 12px; height: 12px; top: 15%; left: 8%; animation-delay: 0s; }
.cta__star--2 { width: 8px; height: 8px; top: 25%; right: 12%; animation-delay: 0.8s; }
.cta__star--3 { width: 10px; height: 10px; bottom: 20%; left: 15%; animation-delay: 1.5s; }
.cta__star--4 { width: 6px; height: 6px; top: 40%; right: 25%; animation-delay: 2.2s; }
.cta__star--5 { width: 14px; height: 14px; bottom: 30%; right: 8%; animation-delay: 0.4s; opacity: 0.6; }
.cta__star--6 { width: 7px; height: 7px; top: 10%; left: 45%; animation-delay: 1.8s; }

/* Rising ocean bubbles */
.cta__bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.cta__bubble {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), rgba(0, 144, 208, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: ctaBubbleRise linear infinite;
}

.cta__bubble:nth-child(1) { width: 20px; height: 20px; left: 10%; animation-duration: 6s; animation-delay: 0s; }
.cta__bubble:nth-child(2) { width: 14px; height: 14px; left: 30%; animation-duration: 8s; animation-delay: 1s; }
.cta__bubble:nth-child(3) { width: 24px; height: 24px; left: 55%; animation-duration: 7s; animation-delay: 2s; }
.cta__bubble:nth-child(4) { width: 10px; height: 10px; left: 75%; animation-duration: 9s; animation-delay: 0.5s; }
.cta__bubble:nth-child(5) { width: 16px; height: 16px; left: 90%; animation-duration: 7.5s; animation-delay: 3s; }

/* Floating Frozen characters */
.cta__frozen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.cta__frozen-img {
  position: absolute;
  width: clamp(95px, 9vw, 155px);
  filter: drop-shadow(0 8px 18px rgba(7, 16, 65, 0.25));
  opacity: 0.92;
}

.cta__frozen-img--1 {
  right: 4%;
  bottom: 8%;
  animation: ctaFrozenFloat1 6s ease-in-out infinite;
}

.cta__frozen-img--2 {
  left: 6%;
  top: 12%;
  animation: ctaFrozenFloat2 6.8s ease-in-out infinite;
  animation-delay: -1.6s;
}

/* Content */
.cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Badge */
.cta__badge {
  display: inline-block;
  padding: 0.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(242, 201, 76, 0.3);
  border-radius: 30px;
  color: var(--accent-gold);
  font-size: var(--fs-sm);
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
  animation: ctaBadgeBounce 2.5s ease-in-out infinite;
}

.cta__title {
  font-size: var(--fs-section);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cta__title-magic {
  position: relative;
  background: linear-gradient(
    90deg,
    var(--accent-gold) 0%,
    #ffe082 25%,
    var(--accent-gold) 50%,
    #fff8e1 75%,
    var(--accent-gold) 100%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ctaShimmer 3s linear infinite, ctaTitleGlow 3s ease-in-out infinite;
}

.cta__desc {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  margin: 0 auto 2.2rem;
  line-height: 1.8;
}

/* CTA Button — Disney magic */
.cta__btn {
  position: relative;
  overflow: hidden;
  animation: ctaBtnPulse 2.5s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  font-size: 1.1rem !important;
  padding: 0.9rem 2.8rem !important;
}

.cta__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.cta__btn:hover::before {
  left: 120%;
}

.cta__btn:hover {
  transform: translateY(-4px) scale(1.05) !important;
  box-shadow:
    0 10px 35px rgba(242, 201, 76, 0.45),
    0 0 50px rgba(242, 201, 76, 0.15) !important;
}

.cta__btn:active {
  transform: translateY(-1px) scale(0.98) !important;
}

@media (max-width: 992px) {
  .cta__frozen-img {
    width: clamp(78px, 10vw, 120px);
  }
}

@media (max-width: 768px) {
  .cta__frozen {
    display: none;
  }
}

/* ============================================
   CTA-to-Footer seamless bridge
   ============================================ */
.cta-footer-bridge {
  position: relative;
  width: 100%;
  height: 120px;
  margin-top: -60px;
  line-height: 0;
  background: linear-gradient(to bottom, transparent 0%, #071041 100%);
  z-index: 2;
}

.cta-footer-bridge svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================
   FOOTER — Disney Happy Vibe Edition
   ============================================ */

/* Keyframes for Disney magic */
@keyframes footerSparkle {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

@keyframes footerTwinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes footerWaveFlow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes footerGoldShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes footerLogoBounce {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-4px) rotate(-2deg); }
  75% { transform: translateY(-2px) rotate(2deg); }
}

@keyframes footerIconPop {
  0% { transform: scale(1); }
  30% { transform: scale(1.3); }
  60% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

@keyframes footerBubbleRise {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { opacity: 1; }
  100% { transform: translateY(-60px) scale(0.4); opacity: 0; }
}

@keyframes footerStarTrail {
  0% { transform: translateX(0) translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateX(-30px) translateY(-40px) rotate(360deg); opacity: 0; }
}

@keyframes footerHeadingGlow {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 0 12px rgba(242, 201, 76, 0.4); }
}

@keyframes footerCompassSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes footerAnchorSwing {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(8deg); }
  75% { transform: rotate(-8deg); }
}

.footer {
  position: relative;
  margin-top: 0;
}

.footer__main {
  background: linear-gradient(
    180deg,
    var(--deep-navy) 0%,
    #0a1854 30%,
    #071041 60%,
    #050c33 100%
  );
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

/* Floating ocean particles */
.footer__main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(2px 2px at 10% 20%, rgba(242, 201, 76, 0.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 25% 60%, rgba(0, 144, 208, 0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 30%, rgba(242, 201, 76, 0.3) 0%, transparent 100%),
    radial-gradient(2px 2px at 55% 70%, rgba(0, 144, 208, 0.35) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 70% 15%, rgba(242, 201, 76, 0.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 85% 50%, rgba(0, 144, 208, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 85%, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
  animation: footerTwinkle 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Animated wave strip at the very top of footer */
.footer__main::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent-gold) 0px,
    var(--ocean-blue) 40px,
    var(--accent-gold) 80px,
    transparent 120px,
    var(--accent-gold) 160px
  );
  animation: footerWaveFlow 8s linear infinite;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

/* Decorative sparkle container */
.footer__magic-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.footer__sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: footerSparkle 3s ease-in-out infinite;
}

.footer__sparkle:nth-child(1) { top: 12%; left: 5%; animation-delay: 0s; }
.footer__sparkle:nth-child(2) { top: 25%; right: 8%; animation-delay: 0.7s; width: 8px; height: 8px; }
.footer__sparkle:nth-child(3) { top: 55%; left: 15%; animation-delay: 1.4s; width: 5px; height: 5px; }
.footer__sparkle:nth-child(4) { top: 40%; right: 20%; animation-delay: 2.1s; }
.footer__sparkle:nth-child(5) { top: 75%; left: 45%; animation-delay: 0.3s; width: 7px; height: 7px; }
.footer__sparkle:nth-child(6) { top: 18%; left: 60%; animation-delay: 1.8s; width: 4px; height: 4px; }
.footer__sparkle:nth-child(7) { top: 65%; right: 35%; animation-delay: 2.5s; }
.footer__sparkle:nth-child(8) { top: 85%; left: 25%; animation-delay: 0.9s; width: 5px; height: 5px; }

/* Footer decorative icons */
.footer__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
  color: var(--accent-gold);
}

.footer__deco--compass {
  top: 15%;
  left: 3%;
  animation: footerCompassSpin 20s linear infinite;
}

.footer__deco--anchor {
  bottom: 15%;
  right: 4%;
  animation: footerAnchorSwing 4s ease-in-out infinite;
}

/* Company Info Column */
.footer__logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer__logo {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer__logo:hover {
  animation: footerLogoBounce 0.6s ease;
}

.footer__logo-icon {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--transition), drop-shadow var(--transition);
}

.footer__logo:hover .footer__logo-icon {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(242, 201, 76, 0.6));
}

.footer__logo-brand {
  height: 46px;
  width: auto;
  transition: drop-shadow var(--transition);
}

.footer__logo:hover .footer__logo-brand {
  filter: drop-shadow(0 0 10px rgba(242, 201, 76, 0.5));
}

.footer__about {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}

.footer__col:hover .footer__about {
  color: rgba(255, 255, 255, 0.8);
}

/* Social Icons — Disney playful style */
.footer__social {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.footer__social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

/* Magical shimmer overlay on social icons */
.footer__social-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer__social-icon:hover::before {
  opacity: 1;
}

.footer__social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow:
    0 6px 20px rgba(0, 144, 208, 0.35),
    0 0 15px rgba(242, 201, 76, 0.2);
}

/* Each social icon gets its own brand color on hover */
.footer__social-icon[aria-label="Instagram"]:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  border-color: transparent;
}

.footer__social-icon[aria-label="X (formerly Twitter)"]:hover {
  background: #000;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer__social-icon[aria-label="Snapchat"]:hover {
  background: #FFFC00;
  color: #000;
  border-color: transparent;
}

.footer__social-icon[aria-label="WhatsApp"]:hover {
  background: #25D366;
  color: var(--white);
  border-color: transparent;
}

.footer__social-icon[aria-label="Telegram"]:hover {
  background: #0088cc;
  color: var(--white);
  border-color: transparent;
}

.footer__social-icon[aria-label="LinkedIn"]:hover {
  background: #0077B5;
  color: var(--white);
  border-color: transparent;
}

/* Headings — magical gold shimmer */
.footer__heading {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
  animation: footerHeadingGlow 4s ease-in-out infinite;
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-gold),
    #ffe082,
    var(--accent-gold)
  );
  background-size: 200% 100%;
  animation: footerGoldShimmer 3s ease infinite;
}

/* Decorative star before each heading */
.footer__heading::before {
  content: '✦';
  position: absolute;
  right: 44px;
  bottom: -2px;
  font-size: 0.55rem;
  color: var(--accent-gold);
  opacity: 0.7;
  animation: footerTwinkle 2s ease-in-out infinite;
}

/* Quick Links — playful hover */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__links li {
  position: relative;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-sm);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
  position: relative;
}

.footer__links a::before {
  content: '⚓';
  position: absolute;
  right: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%) scale(0);
  font-size: 0.65rem;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer__links a:hover {
  color: var(--accent-gold);
  padding-right: 0.5rem;
  transform: translateX(-4px);
}

.footer__links a:hover::before {
  transform: translateY(-50%) scale(1);
  opacity: 0.8;
}

/* Contact Items — enhanced with glow */
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  transition: transform var(--transition);
}

.footer__contact-item:hover {
  transform: translateX(-4px);
}

.footer__contact-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 144, 208, 0.2), rgba(242, 201, 76, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean-blue);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.footer__contact-item:hover .footer__contact-icon {
  background: linear-gradient(135deg, var(--ocean-blue), rgba(242, 201, 76, 0.6));
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 4px 15px rgba(0, 144, 208, 0.3);
}

.footer__contact-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin: 0;
  transition: color var(--transition);
}

.footer__contact-item:hover p {
  color: rgba(255, 255, 255, 0.85);
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.footer__contact-item a:hover {
  color: var(--accent-gold);
  text-shadow: 0 0 8px rgba(242, 201, 76, 0.3);
}

/* Newsletter — Disney magic input */
.footer__newsletter {
  display: flex;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s ease;
  position: relative;
}

.footer__newsletter::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ocean-blue), var(--accent-gold), var(--ocean-blue));
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: footerGoldShimmer 4s ease infinite;
}

.footer__newsletter:focus-within {
  border-color: transparent;
  box-shadow: 0 0 20px rgba(0, 144, 208, 0.2), 0 0 40px rgba(242, 201, 76, 0.1);
}

.footer__newsletter:focus-within::before {
  opacity: 1;
}

.footer__newsletter-input {
  flex: 1;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--white);
  font-family: var(--font-family);
  font-size: var(--fs-sm);
  outline: none;
  min-width: 0;
}

.footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}

.footer__newsletter-input:focus::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer__newsletter-btn {
  padding: 0.8rem 1.1rem;
  background: linear-gradient(135deg, var(--ocean-blue), #0077b8);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer__newsletter-btn:hover {
  background: linear-gradient(135deg, var(--accent-gold), #e6b800);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(242, 201, 76, 0.3);
}

.footer__newsletter-btn:hover svg {
  animation: footerIconPop 0.4s ease;
}

/* Footer Bottom — enhanced with ocean vibe */
.footer__bottom {
  background: linear-gradient(180deg, #050c33 0%, #030824 100%);
  border-top: none;
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
}

/* Animated wave border at top of footer bottom */
.footer__bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    var(--accent-gold) 20px,
    var(--ocean-blue) 40px,
    var(--accent-gold) 60px,
    transparent 80px
  );
  animation: footerWaveFlow 12s linear infinite;
  opacity: 0.6;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.footer__bottom-logo {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer__bottom-logo:hover {
  transform: scale(1.05);
}

.footer__bottom-logo-img {
  height: 70px;
  width: auto;
  transition: filter var(--transition);
}

.footer__bottom-logo:hover .footer__bottom-logo-img {
  filter: drop-shadow(0 0 12px rgba(242, 201, 76, 0.4));
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-sm);
  text-align: center;
  transition: color var(--transition);
}

.footer__bottom:hover p {
  color: rgba(255, 255, 255, 0.65);
}

.footer__bottom-link {
  color: var(--ocean-blue);
  transition: all var(--transition);
  position: relative;
}

.footer__bottom-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.4s ease;
}

.footer__bottom-link:hover {
  color: var(--accent-gold);
  text-shadow: 0 0 8px rgba(242, 201, 76, 0.3);
}

.footer__bottom-link:hover::after {
  width: 100%;
}

/* Footer magic heart in bottom */
.footer__magic-heart {
  display: inline-block;
  color: #ff6b8a;
  font-size: 0.8rem;
  animation: footerIconPop 1.5s ease-in-out infinite;
  margin: 0 0.2rem;
}

/* JS-generated sparkle trail on mouse move */
.footer__trail-sparkle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  animation: footerBubbleRise 0.8s ease-out forwards;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-animate] {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .adventure__activities {
    grid-template-columns: repeat(2, 1fr);
  }

  .adventure__char--1 { width: 130px; }
  .adventure__char--2 { width: 120px; }
  .adventure__char--3 { width: 100px; }
  .adventure__char--4 { width: 110px; }
  .adventure__char--5 { width: 95px; }
  .adventure__char--6 { width: 100px; }
  .adventure__char--7 { width: 85px; }

}

@media (max-width: 768px) {
  .navbar__links {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar__actions .btn {
    display: none;
  }

  .hero__title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .adventure__activities {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .adventure__char--1 { width: 100px; bottom: 5%; left: 0; }
  .adventure__char--2 { width: 90px; bottom: 3%; right: 0; }
  .adventure__char--3 { width: 80px; top: 3%; right: 2%; }
  .adventure__char--4 { width: 85px; top: 5%; left: 3%; }
  .adventure__char--5 { width: 75px; bottom: 12%; left: 15%; }
  .adventure__char--6 { width: 80px; bottom: 10%; right: 12%; }
  .adventure__char--7 { width: 70px; top: 8%; left: 22%; }

  .adventure__deco { display: none; }

  .adventure {
    margin-top: -1px;
  }

  .adventure__header { margin-bottom: 2rem; }
  .adventure__ship-slider { margin-bottom: 2.5rem; }

  .ship-slider__btn { width: 38px; height: 38px; }
  .ship-slider__btn--prev { right: 10px; }
  .ship-slider__btn--next { left: 10px; }

  .activity-bubble__img-wrap { height: 140px; }

  .onboard__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .section-header__title {
    font-size: 1.5rem;
  }

  .cta__title {
    font-size: 1.5rem;
  }

  .adventure__activities {
    grid-template-columns: 1fr;
  }

  .adventure__title {
    font-size: 1.8rem;
  }

  .adventure__char--1,
  .adventure__char--2,
  .adventure__char--3,
  .adventure__char--4,
  .adventure__char--5,
  .adventure__char--6,
  .adventure__char--7 { width: 70px; }

  .activity-bubble {
    padding: 0;
  }

  .activity-bubble__img-wrap { height: 160px; }

  .ship-slider__btn { width: 34px; height: 34px; }
  .ship-slider__dot { width: 10px; height: 10px; }
}
