/* ── SCROLL REVEAL (Legacy) ── */
.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }

/* ================================================================
   NOOR-E-HARAM — ANIMATIONS & INTERACTIVE STYLES
   All animations use transform/opacity only (GPU composited)
   ================================================================ */

/* ── CUSTOM CURSOR ── */
* { cursor: none !important; }
.nh-cursor-dot {
  position: fixed; width: 10px; height: 10px; border-radius: 50%;
  background: #d4ac0d; pointer-events: none; z-index: 99999;
  opacity: 0; will-change: transform;
  transition: opacity .3s, width .2s, height .2s, background .2s;
}
.nh-cursor-ring {
  position: fixed; width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(212,172,13,.6); pointer-events: none; z-index: 99998;
  opacity: 0; will-change: transform;
  transition: opacity .3s, width .2s, height .2s;
}
.nh-cursor-dot.nh-cursor-hover { width: 16px; height: 16px; background: #0b5345; }
.nh-cursor-ring.nh-cursor-hover { width: 54px; height: 54px; border-color: rgba(11,83,69,.6); }
@media (pointer: coarse) {
  * { cursor: auto !important; }
  .nh-cursor-dot, .nh-cursor-ring { display: none !important; }
}

/* ── CSS STARS (GPU composited via transform+opacity) ── */
.nh-css-stars {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden;
}
.nh-css-stars span {
  position: absolute; border-radius: 50%;
  animation: nhStarTwinkle 3s ease-in-out infinite alternate;
  will-change: opacity, transform;
}
@keyframes nhStarTwinkle {
  0%   { opacity: 0.05; transform: scale(0.8); }
  100% { opacity: 0.85; transform: scale(1.2); }
}

/* ── TYPEWRITER CURSOR BLINK ── */
.nh-cursor-blink {
  display: inline-block; color: #d4ac0d; font-weight: 300;
  animation: nhBlink 1s step-end infinite;
}
@keyframes nhBlink { 0%,100% { opacity:1; } 50% { opacity:0; } }

/* ── COUNTDOWN TIMER ── */
.nh-countdown {
  display: inline-flex; flex-direction: column; gap: 10px;
  background: rgba(255,255,255,0.07); backdrop-filter: blur(8px);
  border: 1px solid rgba(212,172,13,0.25); border-radius: 14px;
  padding: 14px 20px; margin: 18px 0 22px; width: fit-content;
}
.nh-countdown-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(212,172,13,0.8); }
.nh-countdown-blocks { display: flex; align-items: center; gap: 4px; }
.nh-cd-block {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  background: rgba(212,172,13,0.12); border-radius: 8px; padding: 8px 12px; min-width: 52px;
}
.nh-cd-block span {
  font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600;
  color: #d4ac0d; line-height: 1;
}
.nh-cd-block small { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.5); }
.nh-cd-sep { font-size: 24px; color: rgba(212,172,13,.5); font-weight: 300; margin-bottom: 10px; }

/* ── HERO TITLE HIGHLIGHT ── */
.hero-title .highlight { color: #d4ac0d; font-style: italic; }

/* ── RIPPLE EFFECT ── */
.btn, .header-cta { position: relative !important; overflow: hidden !important; }
.nh-ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.22);
  transform: scale(0); animation: nhRipple .6s linear forwards;
  pointer-events: none; will-change: transform, opacity;
}
@keyframes nhRipple { to { transform: scale(1); opacity: 0; } }

/* ── FLOATING SHAPES ── */
@keyframes nhFloat {
  0%   { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-18px) rotate(6deg); }
}

/* ── CINEMATIC SECTION REVEAL ── */
.nh-section-reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.nh-section-reveal.nh-in-view { opacity: 1; transform: translateY(0); }

/* ── STAGGERED CARDS ── */
.nh-stagger-card {
  opacity: 0; transform: translateY(24px) scale(0.98);
  transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.nh-stagger-card.nh-stagger-in { opacity: 1; transform: translateY(0) scale(1); }

/* ── PACKAGE CARDS (CLEAN HOVER, NO TILT JANK) ── */
.package-card {
  box-shadow: 0 8px 32px rgba(11,83,69,.08), 0 1px 2px rgba(0,0,0,.04);
  transition: box-shadow .3s ease, transform .3s ease;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11,83,69,.15);
}
.package-card.featured { box-shadow: 0 16px 48px rgba(11,83,69,.18); }

/* ── GLASSMORPHISM NAVBAR ── */
.nh-glass-nav {
  background: rgba(7,38,30,.88) !important;
  backdrop-filter: blur(18px) !important; -webkit-backdrop-filter: blur(18px) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,.25) !important;
}
.nh-nav-hide { transform: translateY(-100%) !important; }
.header { transition: background .35s ease, box-shadow .35s ease, transform .3s ease; }

/* ── FLOATING WHATSAPP BUBBLE ── */
.nh-wa-bubble {
  position: fixed; bottom: 28px; right: 24px; z-index: 9999;
  display: flex; align-items: center; gap: 10px;
  background: #25d366; color: white !important;
  padding: 12px 20px; border-radius: 50px;
  text-decoration: none !important; font-weight: 600; font-size: 14px;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  animation: nhWaPulse 2.5s ease-in-out infinite;
  will-change: transform;
  transition: transform .3s ease;
}
.nh-wa-bubble:hover { transform: scale(1.07) translateY(-2px) !important; }
.nh-wa-icon { font-size: 20px; }
.nh-wa-ping {
  position: absolute; top: -4px; right: -4px; width: 14px; height: 14px;
  border-radius: 50%; background: #ff4444;
  animation: nhPing 1.5s ease-in-out infinite; will-change: transform, opacity;
}
@keyframes nhWaPulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
@keyframes nhPing { 0%,100% { transform: scale(1); opacity:1; } 50% { transform: scale(1.7); opacity:.35; } }

/* ── GRAIN TEXTURE OVERLAY ── */
.nh-grain-overlay {
  position: fixed; inset: 0; z-index: 99990; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.02;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .nh-section-reveal, .nh-stagger-card { opacity: 1 !important; transform: none !important; }
  .nh-cursor-dot, .nh-cursor-ring { display: none !important; }
  * { cursor: auto !important; }
}
