/* ═══════════════════════════════════════════════════════
   MERAJ TRAVEL — COMBINED STYLES
   Core styles + all animation layers combined for performance
   ═══════════════════════════════════════════════════════ */

/* ── CORE STYLES ── */
:root {
  --maroon: #6B1D2A;
  --maroon-deep: #4A0E1C;
  --maroon-light: #8B2D3A;
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --gold-dark: #A88A2E;
  --navy: #0F1419;
  --navy-light: #1A2332;
  --cream: #FDF8F0;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-muted: #6B7280;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--maroon-deep);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.section-title::after { display: none; }
.fade-up.visible .section-title::after { transform: scaleX(1); }
.services .section-title::after,
.destinations .section-title::after,
.why-us .section-title::after { left: 50%; transform: translateX(-50%) scaleX(0); }
.services .fade-up.visible .section-title::after,
.destinations .fade-up.visible .section-title::after,
.why-us .fade-up.visible .section-title::after { transform: translateX(-50%) scaleX(1); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 50px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.9rem; letter-spacing: 0.04em;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  cursor: pointer; border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy); box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }
.btn-outline {
  background: transparent; color: var(--white);
  border: none;
}
.btn-outline:hover { background: var(--white); color: var(--maroon); }
.btn-maroon {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  color: var(--white); box-shadow: 0 4px 20px rgba(107,29,42,0.3);
}
.btn-maroon:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(107,29,42,0.45); }
.whatsapp-icon { width: 20px; height: 20px; fill: currentColor; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: all 0.35s ease;
}
nav.scrolled {
  background: rgba(15,20,25,0.97);
  backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav-progress { display: none; }
nav .nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
nav .logo-img { height: 60px; max-height: 60px; transition: height 0.3s; border-radius: 16px; background: rgba(255,255,255,0.12); padding: 8px; box-shadow: 0 12px 35px rgba(0,0,0,0.18); cursor: pointer; }
nav.scrolled .logo-img { height: 50px; padding: 6px; }
nav .nav-links { display: flex; gap: 2.5rem; align-items: center; }
.logo-hero { cursor: pointer; }
.flying-plane {
  position: fixed;
  width: 140px;
  height: 140px;
  z-index: 2100;
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%) scale(0.8);
  animation: flyAway 1.6s ease-out forwards;
}
@keyframes flyAway {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(0.8) rotate(-10deg); }
  35% { transform: translate(18vw, -32px) scale(0.9) rotate(0deg); }
  75% { transform: translate(90vw, -18vh) scale(1.05) rotate(15deg); }
  100% { opacity: 0; transform: translate(140vw, -160vh) scale(1.2) rotate(25deg); }
}
nav .nav-links a {
  color: var(--white); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  position: relative; transition: color 0.3s;
}
nav .nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.3s ease;
}
nav .nav-links a:hover { color: var(--gold); }
nav .nav-links a:hover::after { width: 100%; }
nav .nav-links a.active { color: var(--gold); }
nav .nav-links a.active::after { width: 100%; }
nav .nav-cta .btn { padding: 0.6rem 1.5rem; font-size: 0.8rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; z-index: 1001; }
.hamburger span { width: 25px; height: 2px; background: var(--white); transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: center; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(145deg, var(--navy) 0%, var(--maroon-deep) 50%, var(--maroon) 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(107,29,42,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 80vw; height: 80vw; border-radius: 50%;
  animation: heroRotate 60s linear infinite;
  pointer-events: none;
}
@keyframes heroRotate { to { transform: rotate(360deg); } }
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.hero-particles span {
  position: absolute;
  bottom: -10%;
  width: var(--size, 6px); height: var(--size, 6px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,212,139,0.9), rgba(201,168,76,0.15) 70%, transparent 100%);
  left: var(--x, 50%);
  animation: particleRise var(--dur, 14s) linear infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}
@keyframes particleRise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  8% { opacity: 0.9; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-115vh) translateX(var(--drift, 30px)); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.hero-text h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-text h1 span {
  display: block; font-style: italic; font-weight: 400; font-size: 0.6em;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 300% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 300% center; } }
.hero-text p {
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  max-width: 480px; margin-bottom: 2.5rem; line-height: 1.8;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-text .section-label,
.hero-text h1,
.hero-text p,
.hero-text .hero-btns,
.hero-text .hero-stats {
  opacity: 0; animation: heroReveal 0.9s cubic-bezier(.4,0,.2,1) forwards;
}
.hero-text .section-label { animation-delay: 0.1s; }
.hero-text h1 { animation-delay: 0.25s; }
.hero-text p { animation-delay: 0.45s; }
.hero-text .hero-btns { animation-delay: 0.6s; }
.hero-text .hero-stats { animation-delay: 0.75s; }
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-visual {
  opacity: 0; animation: heroRevealScale 1s cubic-bezier(.4,0,.2,1) 0.35s forwards;
}
@keyframes heroRevealScale {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-logo-card {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .logo-hero {
  width: 320px; height: 320px; object-fit: contain;
  display: block;
  border-radius: 30px;
  background: rgba(255,255,255,0.09);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
  filter: drop-shadow(0 0 60px rgba(201,168,76,0.25));
  animation: float 6s ease-in-out infinite, pulseGlow 5s ease-in-out infinite;
}
.hero-badge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255,255,255,0.95);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  backdrop-filter: blur(14px);
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 24px 70px rgba(0,0,0,0.22), 0 0 45px rgba(201,168,76,0.14); }
  50% { box-shadow: 0 28px 80px rgba(0,0,0,0.26), 0 0 65px rgba(201,168,76,0.2); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.hero-stats {
  display: flex; gap: 3rem; margin-top: 3rem;
  padding-top: 2rem;
}
.hero-stat h3 { font-size: 2rem; color: var(--gold); font-weight: 700; }
.hero-stat p { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── ABOUT ── */
.about { background: var(--white); position: relative; }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  display: flex; align-items: center; justify-content: center;
}
.about-image img {
  max-width: 55%;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
  position: relative; z-index: 2;
}
.about-image:hover img { transform: scale(1.05) rotate(-1deg); }
.about-image-frame {
  position: absolute; inset: 14px;
  border: 2px solid var(--gold);
  border-radius: 14px;
  pointer-events: none;
  opacity: 0.7;
  transition: inset 0.6s cubic-bezier(.4,0,.2,1), opacity 0.6s;
}
.about-image:hover .about-image-frame { inset: 6px; opacity: 1; }
.about-text .section-title { margin-bottom: 1.5rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.05rem; }
.about-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.about-feature {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.5rem; border-radius: 12px;
  background: var(--cream); transition: all 0.3s;
}
.about-feature:hover { background: linear-gradient(135deg, rgba(107,29,42,0.05), rgba(201,168,76,0.05)); }
.about-feature .feat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-feature .feat-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.about-feature h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; }

/* ── SERVICES ── */
.services {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
}
.services::before { display: none; }
.services .section-title { color: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem; margin-top: 3.5rem;
}
.service-card {
  background: rgba(255,255,255,0.03);
  border-radius: 20px; padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  transform: scaleX(0); transition: transform 0.4s ease;
}
.service-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-8px); border-color: rgba(201,168,76,0.2); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 28px; height: 28px; fill: var(--gold); }
.service-card h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }

/* ── DESTINATIONS ── */
.destinations { background: var(--cream); }
.dest-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.dest-card {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: perspective(700px) rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg)) scale(var(--s, 1));
  will-change: transform;
}
.dest-card:hover {
  --s: 1.04;
  box-shadow: 0 20px 45px rgba(15,20,25,0.35);
}
.dest-card-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  display: flex; align-items: center; justify-content: center;
}
.dest-card-bg .dest-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  filter: grayscale(0.2);
  transition: transform 0.35s ease, filter 0.35s ease;
}
.dest-card-bg .dest-plane-icon {
  width: 5.5rem;
  height: 5.5rem;
  color: rgba(255,255,255,0.95);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.18));
  transition: transform 0.35s ease;
}
.dest-card:hover .dest-emoji {
  transform: scale(1.08);
  filter: grayscale(0);
}
.dest-card:hover .dest-plane-icon {
  transform: scale(1.15);
}
.dest-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,20,25,0.8) 100%);
}
.dest-card-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 1.5rem;
}
.dest-card-info h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.25rem; }
.dest-card-info p { color: var(--gold); font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }

/* ── WHY US ── */
.why-us { background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem; margin-top: 3.5rem;
}
.why-card { text-align: center; padding: 2rem 1.5rem; }
.why-number {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--maroon), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
  margin-bottom: 1rem;
}
.why-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; color: var(--maroon-deep); }
.why-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ── HOURS / CTA ── */
.cta-section {
  background: linear-gradient(145deg, var(--maroon-deep) 0%, var(--maroon) 60%, var(--maroon-light) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.1);
}
.cta-section .container { text-align: center; position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.hours-grid {
  display: inline-grid; grid-template-columns: 1fr 1fr;
  gap: 0.5rem 3rem; text-align: left;
  background: rgba(0,0,0,0.2); border-radius: 16px;
  padding: 2rem 3rem; margin-bottom: 2.5rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.hours-grid .day { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.hours-grid .time { color: var(--white); font-weight: 600; font-size: 0.9rem; }
.hours-grid .closed { color: var(--gold); font-style: italic; }

/* ── FOOTER ── */
footer {
  background: var(--navy); color: var(--white);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 1rem; font-size: 0.9rem; max-width: 280px; }
.footer-brand .footer-logo { height: 60px; filter: none; opacity: 1; margin-bottom: 0.5rem; }
footer h4 {
  font-family: var(--font-body); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gold); margin-bottom: 1.25rem; font-weight: 600;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.6rem; }
footer ul li a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color 0.3s; }
footer ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.social-link:hover { background: var(--gold); border-color: var(--gold); }
.social-link:hover svg { fill: var(--navy); }
.social-link svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.7); transition: fill 0.3s; }
.footer-bottom {
  padding-top: 2rem; text-align: center;
  color: rgba(255,255,255,0.4); font-size: 0.8rem;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s; animation: waPulse 2s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.wa-float svg { width: 30px; height: 30px; fill: white; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 2rem; right: 5.5rem; z-index: 998;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(15,20,25,0.9); border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all 0.35s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; fill: var(--gold); transition: fill 0.3s; }
.back-to-top:hover svg { fill: var(--navy); }
@media (max-width: 768px) {
  .back-to-top { right: 1.2rem; bottom: 5.5rem; width: 42px; height: 42px; }
}

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(40px); transition: all 0.7s cubic-bezier(.4,0,.2,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 968px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-visual .logo-hero { width: 200px; height: 200px; }
  .hero-stats { justify-content: center; }
  .about .container { grid-template-columns: 1fr; }
  .about-image { max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav .nav-links { display: none; }
  nav .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { flex-direction: column; gap: 1.5rem; align-items: center; }
  .hours-grid { grid-template-columns: 1fr; padding: 1.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 4rem 0; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .dest-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ── ACCESSIBILITY ── */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-text .section-label, .hero-text h1, .hero-text p,
  .hero-text .hero-btns, .hero-text .hero-stats, .hero-visual,
  .fade-up { opacity: 1; transform: none; }
}

/* Mobile nav overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(15,20,25,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  color: var(--white); font-size: 1.3rem; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.mobile-nav .close-btn {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; cursor: pointer;
}
.mobile-nav .close-btn span {
  display: block; width: 25px; height: 2px; background: var(--white);
}

/* ═══════════════════════════════════════════════════════
   ANIMATION LAYERS COMBINED
   ═══════════════════════════════════════════════════════ */

/* ── Custom Cursor ── */
.mr-cursor,
.mr-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  will-change: transform;
  mix-blend-mode: difference;
}
.mr-cursor {
  width: 8px; height: 8px;
  background: #E8D48B;
  border-radius: 50%;
  transition: width .25s ease, height .25s ease, background .25s ease;
}
.mr-cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(232,212,139,0.65);
  border-radius: 50%;
  transition: width .3s ease, height .3s ease, border-color .3s ease, transform .12s linear;
}
.mr-cursor.grow { width: 60px; height: 60px; background: rgba(232,212,139,0.35); }
.mr-cursor-ring.grow { width: 70px; height: 70px; border-color: rgba(232,212,139,0.9); }
@media (hover: none), (max-width: 968px) {
  .mr-cursor, .mr-cursor-ring { display: none !important; }
}

/* ── Page Loader ── */
.mr-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: linear-gradient(135deg, #0F1419, #4A0E1C);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s ease, visibility .8s ease;
}
.mr-loader.hidden { opacity: 0; visibility: hidden; }
.mr-loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.mr-loader-plane {
  width: 64px; height: 64px; color: #C9A84C;
  animation: loaderFly 1.8s ease-in-out infinite;
}
.mr-loader-plane svg { width: 100%; height: 100%; fill: currentColor; filter: drop-shadow(0 0 20px rgba(201,168,76,0.6)); }
.mr-loader-bar {
  width: 200px; height: 3px; border-radius: 3px;
  background: rgba(255,255,255,0.1); overflow: hidden;
}
.mr-loader-bar::after {
  content: ''; display: block; height: 100%; width: 40%;
  background: linear-gradient(90deg, transparent, #E8D48B, transparent);
  animation: loaderBar 1.4s ease-in-out infinite;
}
.mr-loader-text {
  font-family: 'Playfair Display', serif;
  color: #E8D48B; letter-spacing: 0.3em;
  font-size: 0.75rem; text-transform: uppercase;
  animation: loaderText 2s ease-in-out infinite;
}
@keyframes loaderFly {
  0%, 100% { transform: translate(-6px, 6px) rotate(-8deg); }
  50% { transform: translate(6px, -6px) rotate(8deg); }
}
@keyframes loaderBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}
@keyframes loaderText {
  0%, 100% { opacity: 0.5; letter-spacing: 0.3em; }
  50% { opacity: 1; letter-spacing: 0.5em; }
}

/* ── AOS-style reveal directions ── */
[data-aos] {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1),
              transform 0.9s cubic-bezier(.2,.7,.2,1),
              filter 0.9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
[data-aos="fade-up"]    { transform: translateY(60px); }
[data-aos="fade-down"]  { transform: translateY(-60px); }
[data-aos="fade-left"]  { transform: translateX(60px); }
[data-aos="fade-right"] { transform: translateX(-60px); }
[data-aos="zoom-in"]    { transform: scale(0.82); filter: blur(6px); }
[data-aos="zoom-out"]   { transform: scale(1.15); }
[data-aos="flip-up"]    { transform: perspective(900px) rotateX(-40deg); transform-origin: center bottom; }
[data-aos="rotate-in"]  { transform: rotate(-8deg) translateY(40px); }
[data-aos].aos-in {
  opacity: 1;
  transform: translate(0) scale(1) rotate(0) perspective(900px) rotateX(0);
  filter: blur(0);
}
[data-aos-delay="100"] { transition-delay: .1s; }
[data-aos-delay="200"] { transition-delay: .2s; }
[data-aos-delay="300"] { transition-delay: .3s; }
[data-aos-delay="400"] { transition-delay: .4s; }
[data-aos-delay="500"] { transition-delay: .5s; }
[data-aos-delay="600"] { transition-delay: .6s; }

/* ── Hero — text splitting reveal ── */
.mr-split { display: inline-block; overflow: hidden; vertical-align: bottom; }
.mr-split .char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: splitRise .9s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes splitRise { to { transform: translateY(0); opacity: 1; } }

/* ── Animated gradient blobs behind hero ── */
.mr-blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.mr-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.35;
  will-change: transform;
}
.mr-blob.b1 { width: 520px; height: 520px; background: radial-gradient(circle,#C9A84C,transparent 65%); top: -120px; left: -120px; animation: blobDrift1 22s ease-in-out infinite; }
.mr-blob.b2 { width: 460px; height: 460px; background: radial-gradient(circle,#8B2D3A,transparent 65%); bottom: -140px; right: -100px; animation: blobDrift2 26s ease-in-out infinite; }
.mr-blob.b3 { width: 380px; height: 380px; background: radial-gradient(circle,#E8D48B,transparent 70%); top: 40%; left: 55%; animation: blobDrift3 30s ease-in-out infinite; opacity: 0.2; }
@keyframes blobDrift1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(120px,80px) scale(1.15); }
}
@keyframes blobDrift2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-100px,-90px) scale(1.1); }
}
@keyframes blobDrift3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-80px,60px) scale(0.9); }
}

/* ── Grain film overlay for cinematic feel ── */
.mr-grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9997;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image:
    radial-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.35) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 2px;
  animation: grainShift 0.6s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0,0); }
  25% { transform: translate(-1px,1px); }
  50% { transform: translate(1px,-1px); }
  75% { transform: translate(-1px,-1px); }
  100% { transform: translate(1px,1px); }
}

/* ── Marquee trust bar under hero ── */
.mr-marquee {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0;
  background: rgba(15,20,25,0.75);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  backdrop-filter: blur(8px);
}
.mr-marquee-track {
  display: flex; gap: 4rem;
  animation: marqueeSlide 32s linear infinite;
  width: max-content;
}
.mr-marquee-item {
  display: inline-flex; align-items: center; gap: 0.8rem;
  color: rgba(232,212,139,0.85);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-style: italic;
  white-space: nowrap;
}
.mr-marquee-item svg { width: 22px; height: 22px; fill: #C9A84C; flex-shrink: 0; }
.mr-marquee-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #C9A84C; opacity: 0.5;
}
@keyframes marqueeSlide {
  to { transform: translateX(-50%); }
}

/* ── Service card — 3D tilt + shine sweep ── */
.service-card {
  transform: perspective(900px) rotateX(var(--tx,0deg)) rotateY(var(--ty,0deg));
  transition: transform .4s cubic-bezier(.2,.7,.2,1),
              background .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(232,212,139,0.15) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.service-card:hover::after { transform: translateX(120%); }
.service-card:hover {
 (box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 40px rgba(201,168,76,0.15));
}
.service-card .service-icon {
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s;
}
.service-card:hover .service-icon {
  transform: rotateY(180deg) scale(1.05);
  box-shadow: 0 12px 30px rgba(201,168,76,0.35);
}

/* ── About image — Ken Burns hover ── */
.about-image img { transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.about-image:hover img { transform: scale(1.08) rotate(-1.5deg); }
.about-feature { transition: transform .35s ease, background .35s ease, box-shadow .35s ease; }
.about-feature:hover { transform: translateX(6px); box-shadow: -6px 8px 24px rgba(107,29,42,0.12); }
.about-feature:hover .feat-icon { animation: iconWiggle .6s ease; }
@keyframes iconWiggle {
  0%,100% { transform: rotate(0); }
  25% { transform: rotate(-10deg) scale(1.1); }
  75% { transform: rotate(10deg) scale(1.1); }
}

/* ── Destination cards — richer hover ── */
.dest-card {
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease;
}
.dest-card::before {
  content: ''; position: absolute; inset: -2px;
  border-radius: 18px; padding: 2px;
  background: linear-gradient(135deg, #C9A84C, transparent 40%, transparent 60%, #8B2D3A);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .4s ease;
  z-index: 3; pointer-events: none;
}
.dest-card:hover::before { opacity: 1; }
.dest-card-info h3 {
  transition: transform .35s ease, color .35s ease;
}
.dest-card:hover .dest-card-info h3 { transform: translateY(-4px); color: #E8D48B; }

/* ── Why-Us numbers pulse ── */
.why-card { transition: transform .4s ease; }
.why-card:hover { transform: translateY(-6px); }
.why-card .why-number {
  transition: transform .5s cubic-bezier(.2,.7,.2,1), filter .5s;
  display: inline-block;
}
.why-card:hover .why-number {
  transform: scale(1.15) rotate(-4deg);
  filter: drop-shadow(0 8px 20px rgba(201,168,76,0.35));
}

/* ── Buttons — magnetic + shine ── */
.btn {
  position: relative; overflow: hidden;
  transform: translate(var(--mx,0), var(--my,0));
  transition: transform .25s cubic-bezier(.2,.7,.2,1),
              box-shadow .35s ease, background .35s ease;
}
.btn::after {
  content: ''; position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left .8s cubic-bezier(.2,.7,.2,1);
}
.btn:hover::after { left: 130%; }

/* ── Scroll-driven progress ring near WA float ── */
.mr-scroll-ring {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 68px; height: 68px; z-index: 998;
  pointer-events: none;
}
.mr-scroll-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.mr-scroll-ring circle {
  fill: none; stroke-width: 3;
  stroke-linecap: round;
}
.mr-scroll-ring .track { stroke: rgba(255,255,255,0.08); }
.mr-scroll-ring .bar {
  stroke: url(#mrRingGrad);
  stroke-dasharray: 195;
  stroke-dashoffset: 195;
  transition: stroke-dashoffset .12s linear;
  filter: drop-shadow(0 0 6px rgba(201,168,76,0.6));
}

/* ── Parallax on hero visual & about image ── */
.mr-parallax { will-change: transform; }

/* ── Nav link hover flair ── */
nav .nav-links a { transition: color .3s ease, transform .3s ease; }
nav .nav-links a:hover { transform: translateY(-2px); }

/* ── Hero logo card orbits ── */
.hero-logo-card::before,
.hero-logo-card::after {
  content: '';
  position: absolute;
  border: 1px dashed rgba(201,168,76,0.35);
  border-radius: 50%;
  top: 50%; left: 50%;
  pointer-events: none;
}
.hero-logo-card::before {
  width: 380px; height: 380px;
  transform: translate(-50%,-50%);
  animation: orbitSpin 30s linear infinite;
  border-color: rgba(201,168,76,0.28);
}
.hero-logo-card::after {
  width: 460px; height: 460px;
  transform: translate(-50%,-50%);
  animation: orbitSpin 45s linear infinite reverse;
  border-color: rgba(232,212,139,0.18);
}
@keyframes orbitSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.hero-logo-card .orbit-dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px; border-radius: 50%;
  background: #E8D48B;
  box-shadow: 0 0 12px #C9A84C, 0 0 24px rgba(201,168,76,0.6);
  transform-origin: 0 0;
  animation: orbitDot 12s linear infinite;
}
.hero-logo-card .orbit-dot.d2 {
  animation: orbitDot 18s linear infinite reverse;
  animation-delay: -6s;
  background: #C9A84C;
}
@keyframes orbitDot {
  from { transform: translate(-50%,-50%) rotate(0deg) translateX(190px) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg) translateX(190px) rotate(-360deg); }
}
@media (max-width: 968px) {
  .hero-logo-card::before,
  .hero-logo-card::after,
  .hero-logo-card .orbit-dot { display: none; }
}

/* ── Section transitions — smooth section boundary shimmer ── */
section { position: relative; }
.mr-section-divider {
  height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), transparent);
  position: relative; overflow: hidden;
}
.mr-section-divider::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(232,212,139,1), transparent);
  transform: translateX(-100%);
  animation: dividerSweep 6s ease-in-out infinite;
}
@keyframes dividerSweep {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* ── Reduced motion overrides ── */
@media (prefers-reduced-motion: reduce) {
  [data-aos] { opacity: 1 !important; transform: none !important; filter: none !important; }
  .mr-blob, .mr-grain, .mr-loader-plane, .mr-loader-bar::after,
  .hero-logo-card::before, .hero-logo-card::after, .hero-logo-card .orbit-dot,
  .mr-marquee-track { animation: none !important; }
  .mr-cursor, .mr-cursor-ring, .mr-grain, .mr-scroll-ring { display: none !important; }
}

/* Additional animation layers (simplified for performance) */
.mr-hero-plane {
  position: absolute;
  top: 30%; left: -80px;
  width: 44px; height: 44px;
  color: rgba(232,212,139,0.85);
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 4px 14px rgba(201,168,76,0.5));
  animation: heroPlaneCross 18s linear infinite;
}
.mr-hero-plane svg { width: 100%; height: 100%; fill: currentColor; }
@keyframes heroPlaneCross {
  0%   { transform: translate(0, 0) rotate(-8deg); opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translate(60vw, -30px) rotate(-4deg); }
  90%  { opacity: 1; }
  100% { transform: translate(120vw, -80px) rotate(-2deg); opacity: 0; }
}

.mr-aurora {
  position: absolute; inset: 0; pointer-events: none;
  overflow: hidden; z-index: 1;
  mix-blend-mode: screen;
}
.mr-aurora::before, .mr-aurora::after {
  content: ''; position: absolute; inset: -20%;
  background:
    conic-gradient(from 90deg at 50% 50%,
      rgba(201,168,76,0.14),
      rgba(139,45,58,0.08),
      rgba(232,212,139,0.18),
      transparent 70%);
  filter: blur(60px);
  animation: auroraSpin 40s linear infinite;
}
.mr-aurora::after {
  animation-direction: reverse;
  animation-duration: 55s;
  opacity: 0.6;
}
@keyframes auroraSpin { to { transform: rotate(360deg); } }

.mr-stars { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.mr-stars span {
  position: absolute;
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(232,212,139,0.75);
  box-shadow: 0 0 8px rgba(232,212,139,0.9), 0 0 14px rgba(201,168,76,0.4);
  animation: starTwinkle var(--d,4s) ease-in-out infinite, starDrift var(--dd,20s) linear infinite;
  top: var(--y,50%); left: var(--x,50%);
  opacity: var(--o,0.7);
}
@keyframes starTwinkle {
  0%,100% { opacity: 0.2; transform: scale(0.6); }
  50%     { opacity: 1;   transform: scale(1.2); }
}
@keyframes starDrift {
  0%   { transform: translate(0,0); }
  100% { transform: translate(var(--dx,20px), var(--dy,-40px)); }
}

.mr-spotlight {
  position: fixed; top: 0; left: 0;
  width: 500px; height: 500px;
  pointer-events: none; z-index: 9996;
  background: radial-gradient(circle, rgba(201,168,76,0.10), transparent 60%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: opacity .4s ease;
  opacity: 0;
}
.mr-spotlight.on { opacity: 1; }

.mr-wave {
  position: relative;
  height: 60px;
  margin-top: -60px;
  z-index: 3;
  pointer-events: none;
}
.mr-wave svg { display: block; width: 100%; height: 100%; }
.mr-wave path { animation: waveShift 8s ease-in-out infinite; }
@keyframes waveShift {
  0%,100% { transform: translateX(0); }
  50%     { transform: translateX(-30px); }
}

.mr-section-dots {
  position: fixed; left: 24px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 14px;
  z-index: 997;
}
.mr-section-dots a {
  display: block;
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.5);
  background: transparent;
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
  position: relative;
}
.mr-section-dots a::after {
  content: attr(data-label);
  position: absolute; left: 22px; top: 50%;
  transform: translateY(-50%) translateX(-6px);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(15,20,25,0.85);
  padding: 4px 10px; border-radius: 4px;
  letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.mr-section-dots a:hover::after {
  opacity: 1; transform: translateY(-50%) translateX(0);
}
.mr-section-dots a:hover,
.mr-section-dots a.active {
  background: #C9A84C;
  box-shadow: 0 0 12px rgba(201,168,76,0.7);
  transform: scale(1.25);
}
@media (max-width: 968px) {
  .mr-section-dots { display: none; }
}

.mr-ripple {
  position: absolute; border-radius: 50%;
  transform: translate(-50%,-50%) scale(0);
  background: rgba(232,212,139,0.4);
  pointer-events: none;
  animation: rippleGrow .8s ease-out forwards;
}
@keyframes rippleGrow {
  to { transform: translate(-50%,-50%) scale(30); opacity: 0; }
}

.count-up.pop {
  animation: countPop .55s cubic-bezier(.2,.7,.2,1);
}
@keyframes countPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.25); color: #E8D48B; }
  100% { transform: scale(1); }
}

.mr-float-icons {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
  z-index: 1;
}
.mr-float-icons svg {
  position: absolute;
  width: 34px; height: 34px;
  fill: rgba(232,212,139,0.18);
  animation: floatSway var(--dur, 12s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes floatSway {
  0%, 100% { transform: translate(0, 0) rotate(-6deg); }
  50%      { transform: translate(var(--tx, 20px), var(--ty, -30px)) rotate(6deg); }
}

.mr-map-dots {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; opacity: 0.35;
  background-image: radial-gradient(rgba(107,29,42,0.25) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse at center, #000 55%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 55%, transparent 90%);
  animation: mapDrift 22s linear infinite;
}
@keyframes mapDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 220px 220px; }
}

.mr-globe {
  display: inline-block;
  width: 26px; height: 26px;
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #E8D48B, #C9A84C 55%, #6B1D2A 100%);
  box-shadow: 0 0 12px rgba(201,168,76,0.5), inset -4px -4px 10px rgba(0,0,0,0.35);
  position: relative;
  animation: globeShift 12s ease-in-out infinite;
}
@keyframes globeShift {
  0%,100% { filter: hue-rotate(0deg) drop-shadow(0 0 4px rgba(201,168,76,0.4)); }
  50%     { filter: hue-rotate(20deg) drop-shadow(0 0 10px rgba(232,212,139,0.6)); }
}

.mr-marquee-2 {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
  background: rgba(15,20,25,0.6);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  backdrop-filter: blur(6px);
}
.mr-marquee-2 .mr-marquee-track {
  animation: marqueeSlideReverse 28s linear infinite;
  gap: 3rem;
}
.mr-marquee-2 .mr-marquee-item {
  font-size: 0.95rem;
  font-style: normal;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}
@keyframes marqueeSlideReverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.mr-sparkle {
  position: fixed;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #E8D48B, transparent 65%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  animation: sparkleOut 900ms ease-out forwards;
  mix-blend-mode: screen;
}
@keyframes sparkleOut {
  0%   { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dx,0px)), calc(-50% + var(--dy,-30px))) scale(0.2); }
}

.mr-curtain {
  position: relative;
  overflow: hidden;
}
.mr-curtain::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, #C9A84C, #6B1D2A);
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 1.1s cubic-bezier(.7,0,.2,1);
  z-index: 5;
}
.mr-curtain.reveal::before {
  transform: scaleX(0);
}

.dest-card .mr-stamp {
  position: absolute;
  top: 10px; right: 10px;
  width: 44px; height: 44px;
  border: 2px dashed rgba(232,212,139,0.85);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #E8D48B;
  font-family: 'Playfair Display', serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(15,20,25,0.35);
  backdrop-filter: blur(6px);
  transform: rotate(-15deg) scale(0);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  z-index: 3;
  pointer-events: none;
}
.dest-card:hover .mr-stamp {
  transform: rotate(-15deg) scale(1);
}

section {
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1), opacity 1.1s ease;
}
section.mr-section-in {
  transform: scale(1) translateY(0);
  opacity: 1;
}
section.mr-section-wait {
  transform: scale(0.985) translateY(20px);
  opacity: 0;
}

.mr-skew {
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .mr-hero-plane, .mr-aurora, .mr-stars span, .mr-spotlight,
  .mr-wave path, .hero-stat h3, .about-image::before,
  .service-icon::after, .dest-card-bg, .hours-grid::before,
  .wa-float::before, .back-to-top svg,
  nav .logo-img, .btn-gold::before, .social-link::before,
  nav .nav-cta .btn::before,
  .mr-float-icons svg, .mr-map-dots, .mr-globe,
  .service-card .service-icon, .mr-marquee-2 .mr-marquee-track,
  .section-title, .about-image img, .btn-outline::before,
  .footer-bottom::after, .hero-visual .logo-hero,
  .about-feature .feat-icon {
    animation: none !important;
  }
  .mr-section-dots { display: none !important; }
  .mr-spotlight { display: none !important; }
  section { transition: none !important; }
  section.mr-section-wait { opacity: 1 !important; transform: none !important; }
  .mr-sparkle { display: none !important; }
}
