.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.gold-gradient {
  background: linear-gradient(135deg, #745b00 0%, #c5a028 100%);
}

.soft-gold-shadow {
  box-shadow: 0 10px 40px -10px rgba(116, 91, 0, 0.12);
}

.floating {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {

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

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

.pill-card {
  height: 40px;
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  position: relative;
  border-radius: 9999px;
  cursor: default;
  border: 1px solid rgba(173, 134, 34, 0.15);
  /* gold/15 */
  background: #fffbeb;
  /* amber-50 */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pill-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.pill-card:hover .pill-track {
  transform: translateY(-50%);
}

.pill-card:hover {
  transform: translateY(-2px);
  border-color: #AD8622;
  box-shadow: 0 10px 20px -5px rgba(173, 134, 34, 0.2);
}

.pill-front,
.pill-back {
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: #745b00;
  /* deep gold */
}

.pill-back {
  background: linear-gradient(135deg, #745b00 0%, #c5a028 100%);
  color: white;
  font-weight: 800;
}

.mobile-nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.mobile-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #745b00 0%, #c5a028 100%);
  transition: width 0.3s ease;
}

.mobile-nav-link:hover::after {
  width: 100%;
}

.mobile-nav-link:hover {
  transform: translateX(4px);
  color: #745b00;
}

.hover-gradient-border {
  position: relative;
  border-color: transparent !important;
}

.hover-gradient-border::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, #cbd5e1 0%, #f8fafc 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 10;
}

.hover-gradient-border::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 3px;
  background: linear-gradient(135deg, #64748b 0%, #cbd5e1 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 11;
}

.hover-gradient-border:hover::after {
  opacity: 1;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: #FFF;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}