/* CINEMATIC LOADER */

.loader-logo {
  animation: logoReveal 1.6s ease forwards;
}

.loader-line {
  animation: lineReveal 1.6s ease forwards;
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: translateY(25px) scale(0.94);
    letter-spacing: 18px;
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    letter-spacing: 5px;
  }
}

@keyframes lineReveal {
  0% {
    width: 0;
    opacity: 0;
  }

  100% {
    width: 160px;
    opacity: 1;
  }
}

/* HERO CINEMATIC */

.hero-video {
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content h2,
.hero-content .hero-text,
.hero-buttons {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.hero-content .eyebrow {
  animation-delay: 0.4s;
}

.hero-content h1 {
  animation-delay: 0.7s;
}

.hero-content h2 {
  animation-delay: 1s;
}

.hero-content .hero-text {
  animation-delay: 1.25s;
}

.hero-buttons {
  animation-delay: 1.5s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* GOLD PARTICLES BACKGROUND */

.hero::before {
  content: "";
  position: absolute;
  inset: -50%;
  background-image: radial-gradient(circle, rgba(212, 175, 55, 0.35) 1px, transparent 1.8px);
  background-size: 80px 80px;
  opacity: 0.08;
  animation: goldDust 38s linear infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes goldDust {
  from {
    transform: translateY(0) rotate(0deg);
  }

  to {
    transform: translateY(-420px) rotate(360deg);
  }
}

/* SCROLL INDICATOR */

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  width: 28px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 40px;
  z-index: 5;
}

.scroll-indicator::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: wheel 1.8s infinite;
}

@keyframes wheel {
  0% {
    opacity: 1;
    top: 9px;
  }

  100% {
    opacity: 0;
    top: 30px;
  }
}

/* BUTTON SHINE */

.btn-gold,
.card-btn,
.float-book {
  position: relative;
  overflow: hidden;
}

.btn-gold::before,
.card-btn::before,
.float-book::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-25deg);
}

.btn-gold:hover::before,
.card-btn:hover::before,
.float-book:hover::before {
  animation: shine 0.8s ease;
}

@keyframes shine {
  to {
    left: 160%;
  }
}

/* FLOATING BUTTONS */

.float-whatsapp,
.float-book {
  animation: floating 3s ease-in-out infinite;
}

.float-book {
  animation-delay: 0.6s;
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

/* CARD REVEAL */

.service-card,
.gallery-item,
.about-card,
.stat-box {
  opacity: 0;
  transform: translateY(45px);
  transition: 0.8s ease;
}

.service-card.show,
.gallery-item.show,
.about-card.show,
.stat-box.show {
  opacity: 1;
  transform: translateY(0);
}

/* PREMIUM HOVERS */

.service-card:hover,
.about-card:hover,
.stat-box:hover {
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.6),
    0 0 35px rgba(212, 175, 55, 0.12);
}

.gallery-item:hover {
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(212, 175, 55, 0.18);
}

/* WHATSAPP PULSE */

.float-whatsapp.pulse {
  animation: whatsappPulse 0.9s ease;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2;
  mix-blend-mode: screen;
}

.gold-particle {
  position: fixed;
  border-radius: 50%;
  background: #d4af37;
  pointer-events: none;
  z-index: 999999;
  animation: particleMove 0.85s forwards ease-out;
}

@keyframes particleMove {
  to {
    transform: translate(var(--x), var(--y));
    opacity: 0;
  }
}

.floating-lights {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.floating-lights span {
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
  border-radius: 50%;
  animation: floatLight linear infinite;
}

@keyframes floatLight {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.2;
  }

  50% {
    opacity: 0.55;
  }

  100% {
    transform: translateY(-320px) scale(1.4);
    opacity: 0;
  }
}

.back-to-top {
  position: fixed;
  left: 22px;
  bottom: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.45);
  font-size: 24px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.small-toast {
  position: fixed;
  bottom: 95px;
  left: 22px;
  background: #111;
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 13px 18px;
  border-radius: 14px;
  z-index: 99999;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.35s ease;
}

.small-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.nav-menu a.active {
  color: #d4af37;
}
/* ======================================
PREMIUM HERO ANIMATIONS
====================================== */

@keyframes logoFloat{

0%,100%{

transform:translateX(-50%) translateY(0);

}

50%{

transform:translateX(-50%) translateY(-12px);

}

}

@keyframes goldPulse{

0%,100%{

transform:translate(-50%,-50%) scale(1);

opacity:.55;

}

50%{

transform:translate(-50%,-50%) scale(1.12);

opacity:.95;

}

}


@keyframes fadeLogo{

from{

opacity:0;

transform:translateX(-50%) scale(.6);

}

to{

opacity:1;

transform:translateX(-50%) scale(1);

}

}

.premium-hero h1{

animation:heroText 1.5s ease forwards;

animation-delay:1.4s;

opacity:0;

}

.premium-hero h2{

animation:heroText 1.5s ease forwards;

animation-delay:1.8s;

opacity:0;

}

.hero-text{

animation:heroText 1.5s ease forwards;

animation-delay:2.2s;

opacity:0;

}

.hero-buttons{

animation:heroText 1.5s ease forwards;

animation-delay:2.6s;

opacity:0;

}

@keyframes heroText{

from{

opacity:0;

transform:translateY(50px);

}

to{

opacity:1;

transform:translateY(0);

}

}
.hero-logo-reveal {
    display: none !important;
}.hero-logo-reveal {
    display: none !important;
}
