/* Fancy hover glow effect */
.nav-link:hover, .dropbtn:hover {
  text-shadow: 0 0 15px rgba(0, 255, 180, 0.8);
  position: relative;
}

.nav-link:hover::before, .dropbtn:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 255, 180, 0.3) 0%, transparent 70%);
  z-index: -1;
  border-radius: 8px;
  opacity: 0;
  animation: glowPulse 0.5s forwards;
}

@keyframes glowPulse {
  to { opacity: 1; }
}

/* Base Button Styles */
.btn,
.button,
.footer-contact-btn,
.social-btn {
  cursor: pointer !important;
  touch-action: manipulation;
  position: relative;
  overflow: hidden;
  border: none;
  font-family: inherit;
  transition: all 0.3s ease;
}

/* Primary Buttons */
.footer-contact-btn {
  margin-top: 30px;
  padding: 16px 42px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  position: relative;
  box-shadow: 
    0 5px 20px rgba(0, 0, 0, 0.2),
    inset 0 0 15px rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
}

.footer-contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transition: 0.6s;
  z-index: 1;
}

.footer-contact-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.footer-contact-btn:hover::before {
  left: 100%;
}

.footer-contact-btn span {
  position: relative;
  z-index: 2;
}

/* Social Buttons */
.social-btn {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 6px 14px !important;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px) !important;
}

/* Modal Buttons */
.sheet-buttons .btn {
  background: rgba(30, 30, 45, 0.7);
  backdrop-filter: blur(8px);
  padding: 15px 25px;
  border-radius: 16px;
  color: var(--white);
  font-weight: 600;
  font-size: 17px;
  min-width: 140px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sheet-buttons .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: 0.5s;
  z-index: 1;
}

.sheet-buttons .btn:hover {
  transform: translateY(-3px);
  background: rgba(40, 40, 60, 0.9);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.sheet-buttons .btn:hover::before {
  left: 100%;
}

.sheet-buttons .btn span {
  position: relative;
  z-index: 2;
}

/* Social button hover effects */
.sheet-buttons .btn[href*="facebook"] { background: rgba(59, 89, 152, 0.3); }
.sheet-buttons .btn[href*="instagram"] { background: rgba(228, 66, 100, 0.3); }
.sheet-buttons .btn[href*="tiktok"] { background: rgba(0, 0, 0, 0.3); }
.sheet-buttons .btn[href*="youtube"] { background: rgba(255, 0, 0, 0.3); }

/* Mobile Menu Links */
#mobileMenuOverlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 20, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  padding: 80px 25px 40px;
  gap: 24px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#mobileMenuOverlay.closing {
  opacity: 0;
  transform: translateY(20px);
}

.mobile-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 100;
}

.mobile-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

.m-link {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 0;
  transition: all 0.3s ease;
  position: relative;
  display: block;
  width: fit-content;
}

.m-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent-green), var(--accent-blue));
  transition: width 0.4s ease;
}

.m-link:hover {
  color: var(--accent-blue);
  transform: translateX(8px);
}

.m-link:hover::after {
  width: 100%;
}

.mobile-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
  margin: 12px 0;
  width: 80%;
  align-self: center;
}

