  .material-symbols-outlined {
      font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    }
     .nav-link {
    @apply text-slate-600 dark:text-slate-300 hover:text-primary text-sm font-semibold transition;
  }
  /* Bottom border only inputs */
  .bb-input {
    border: none !important;
    border-bottom: 2px solid #d1d5db !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
body{
  background-color: #faede5;
}
  .bb-input:focus {
    border-bottom-color: var(--tw-prose-links, #0049ac) !important;
    box-shadow: 0 4px 0 -2px rgba(37,99,235,0.3);
  }

  .error-text {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 2px;
  }

  /* Premium button animation */
  .btn-animate {
    position: relative;
    overflow: hidden;
  }

  .btn-animate::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.4),
      transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
  }

  .btn-animate:hover::after {
    transform: translateX(100%);
  }


  /* Ultra Premium CTA Animation */
@keyframes ctaPremiumFloat {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(59,130,246,0.35);
  }
  50% {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(59,130,246,0.55);
  }
}

.animate-cta-premium {
  animation: ctaPremiumFloat 3.2s ease-in-out infinite;
}



/* ================= NAV LINK PREMIUM ================= */
.nav-link {
  position: relative;
  font-weight: 600;
  color: #475569; /* slate-600 */
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #0049ac; /* primary */
}

/* Active Link */
.nav-link.active {
  color: #0049ac;
  font-weight: 800;
}

/* Premium Underline */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0049ac, #3b82f6);
  box-shadow: 0 4px 12px rgba(0,73,172,0.5);
  transition: width 0.35s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}



/* ================= MOBILE MENU PREMIUM ================= */
#mobileMenu {
  box-shadow: 30px 0 80px rgba(0,0,0,0.25);
  border-right: 1px solid rgba(0,0,0,0.08);
  background-color: #faede5;
}

/* Mobile Nav Links */
#mobileMenu nav a {
  padding: 12px 14px;
  border-radius: 12px;
  transition: all 0.25s ease;
  color: #1e293b;
}

#mobileMenu nav a:hover {
  background: rgba(0,73,172,0.08);
  color: #0049ac;
}

/* Active Mobile Link */
#mobileMenu nav a.active {
  background: linear-gradient(90deg, rgba(0,73,172,0.15), transparent);
  color: #0049ac;
  font-weight: 800;
  box-shadow: inset 4px 0 0 #0049ac;
}



/* ================= FLOATING BUTTONS PREMIUM ================= */

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
  animation: floatPulse 1.2s infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

/* Call */
.floating-call {
  background: linear-gradient(135deg, #0049ac, #3b82f6);
}

/* WhatsApp */
.floating-whatsapp {
  background: linear-gradient(135deg, #25D366, #1EBE5D);
}

/* Glow Ring */
.floating-btn::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.5);
  animation: ringPulse 1.2s infinite;
}

/* Stagger Animation */
.floating-whatsapp {
  animation-delay: 0.4s;
}
.floating-whatsapp::after {
  animation-delay: 0.4s;
}

/* Keyframes */
@keyframes floatPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes ringPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
