/* ================================
   GLOBAL
================================ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* ================================
   GOOGLE TRANSLATE WIDGET OVERRIDES
================================ */

/* Hide the Google Translate widget completely (engine runs in background) */
#google_translate_element {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  overflow: hidden !important;
}

.goog-te-banner-frame,
.skiptranslate iframe {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* ================================
   SCROLL REVEAL
================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   FLOATING BUTTONS
================================ */
.floating-btn {
  position: fixed;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 9999;
}

.btt-floating { bottom: 24px; }
.wa-floating { bottom: 96px; }
.ig-floating { bottom: 168px; }

.floating-text {
  background: #000;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.25s ease;
}

.floating-btn:hover .floating-text {
  opacity: 1;
  transform: translateX(0);
}

.floating-btn i.fa-whatsapp,
.floating-btn i.fa-instagram,
.floating-btn i.fa-arrow-up {
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s ease;
}

.btt-floating i.fa-arrow-up {
  background: #d4af37;
  color: #000;
}

.floating-btn:hover i {
  transform: scale(1.1);
}

.wa-floating i.fa-whatsapp { background: #25D366; }
.ig-floating i.fa-instagram {
  background: radial-gradient(circle at 30% 107%,
    #fdf497 0%, #fdf497 5%, #fd5949 45%,
    #d6249f 60%, #285AEB 90%);
}

@media (max-width: 576px) {
  .floating-text { display: none; }
  .floating-btn i.fa-whatsapp,
  .floating-btn i.fa-instagram,
  .floating-btn i.fa-arrow-up {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .btt-floating { bottom: 20px; }
  .wa-floating { bottom: 80px; }
  .ig-floating { bottom: 140px; }
}

/* ================================
   SCROLLBAR
================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #d4af37; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #e8c84a; }
