html,
body {
  overflow-x: hidden;
}
/* ---------- PRELOADER ---------- */
.preload-logo {
  animation: logoPulse 1.6s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.07);
    opacity: 1;
  }
}

/* gold loading line animation */
@keyframes loaderMove {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(300%);
  }
}

.animate-loader {
  animation: loaderMove 1.2s linear infinite;
}

/* Base state */
  .reveal-left,
  .reveal-right,
  .reveal-top,
  .reveal-bottom {
    opacity: 0;
  }

  /* ------------ LEFT ------------ */
  .reveal-left {
    transform: translateX(-60px);
  }
  .reveal-left.is-visible {
    animation: slideInLeft 0.8s ease-out forwards;
  }
  @keyframes slideInLeft {
    0% {
      opacity: 0;
      transform: translateX(-60px);
    }
    60% {
      opacity: 1;
      transform: translateX(10px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* ------------ RIGHT ------------ */
  .reveal-right {
    transform: translateX(60px);
  }
  .reveal-right.is-visible {
    animation: slideInRight 0.8s ease-out forwards;
  }
  @keyframes slideInRight {
    0% {
      opacity: 0;
      transform: translateX(60px);
    }
    60% {
      opacity: 1;
      transform: translateX(-10px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* ------------ TOP ------------ */
  .reveal-top {
    transform: translateY(-60px);
  }
  .reveal-top.is-visible {
    animation: slideInTop 0.8s ease-out forwards;
  }
  @keyframes slideInTop {
    0% {
      opacity: 0;
      transform: translateY(-60px);
    }
    60% {
      opacity: 1;
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ------------ BOTTOM ------------ */
  .reveal-bottom {
    transform: translateY(60px);
  }
  .reveal-bottom.is-visible {
    animation: slideInBottom 0.8s ease-out forwards;
  }
  @keyframes slideInBottom {
    0% {
      opacity: 0;
      transform: translateY(60px);
    }
    60% {
      opacity: 1;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }


  .floating-logo {
    animation: floatPulse 3s ease-in-out infinite;
}

@keyframes floatPulse {
    0% {
        transform: translateY(0px) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-6px) scale(1.05);
        opacity: 0.95;
    }
    100% {
        transform: translateY(0px) scale(1);
        opacity: 1;
    }
}


  /* Hide scrollbar but keep scroll */
.hide-scrollbar {
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE & Edge */
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;                /* Chrome, Safari */
}



.ring-accent {
  outline: 1px solid rgba(212,175,55,0.4);
  outline-offset: 6px;
}

.fullw{
    max-width: 103%;
}


/* Floating Action Wrapper */
.floating-actions {
  position: fixed;
  bottom: 140px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Base FAB */
.fab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  border-radius: 5px;
  color: #0f172a;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transform: translateX(40%);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

/* Icon circle */
.fab-icon {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.15);
}

.fab-icon svg {
  height: 20px;
  width: 20px;
}

/* Label */
.fab-label {
  white-space: nowrap;
}

/* Hover reveal (desktop) */
.fab:hover {
  transform: translateX(0);
  box-shadow: 0 15px 40px rgba(0,0,0,0.45);
}

/* WhatsApp */
.fab-whatsapp {
  background: linear-gradient(135deg, #25D366, #1CB954);
  color: #022c22;
  animation: pulseWhatsApp 2.5s infinite;
}

/* Call */
.fab-call {
  background: linear-gradient(135deg, #F6D16E, #D4AF37, #9E7C19);
  color: #1c1917;
  animation: pulseCall 3s infinite;
}

/* Pulses */
@keyframes pulseWhatsApp {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes pulseCall {
  0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.45); }
  70% { box-shadow: 0 0 0 18px rgba(212,175,55,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

/* ✅ Mobile Optimization */
@media (max-width: 640px) {

  .floating-actions {
    bottom: 150px;
    right: 20px;
    gap: 10px;
  }

  /* Base FAB */
.fab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 6px;
  border-radius: 5px;
  color: #0f172a;
  font-weight: 600;
  font-size: 8px;
}

/* Icon circle */
.fab-icon {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.15);
}


  /* Smaller pulse for mobile */
  @keyframes pulseWhatsApp {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.35); }
    70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
  }

  @keyframes pulseCall {
    0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.35); }
    70% { box-shadow: 0 0 0 12px rgba(212,175,55,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
  }
}
