/* Global Font Settings - Ensure consistent Inter font across all pages */
* {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  font-variation-settings: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* Custom tweaks for static site - plain CSS (no Tailwind @apply here) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}
.btn-primary {
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  color: #fff;
}
.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.btn-ghost {
  background: #ffffff;
  color: #1d4ed8;
  border: 1px solid rgba(29, 78, 216, 0.25);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.08);
}
.btn-ghost:hover {
  background: #f8fafc;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.12);
}
.btn-secondary {
  border: 2px solid #0f172a;
  color: #0f172a;
  background: transparent;
}
.btn-secondary:hover {
  background: #0f172a;
  color: #fff;
}
.gradient-text {
  background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.shadow-premium { box-shadow: 0 20px 50px -12px rgba(2, 132, 199, 0.25); }
.animate-float { animation: float 6s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Package cards */
.package-card {
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -12px rgba(2, 132, 199, 0.25);
}
.package-card.selected {
  border-color: #2563eb !important;
  box-shadow: 0 30px 70px -18px rgba(37, 99, 235, 0.45);
}

.card-elevated {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
}

.feature-chip {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

/* Popular badge pulse */
.pulse-glow {
  animation: pulseGlow 2.4s ease-in-out infinite;
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* Admin Panel Navigation Tabs */
.admin-nav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.admin-nav-tab {
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.5rem;
}

.admin-nav-tab:hover {
  color: #374151;
}

.admin-nav-tab.active {
  color: #2563eb;
  border-bottom-color: #2563eb;
}

/* Responsive admin navigation */
@media (max-width: 1024px) {
  .admin-nav-tabs {
    gap: 0.75rem;
  }
  
  .admin-nav-tab {
    font-size: 0.875rem;
    padding-bottom: 0.375rem;
  }
}

@media (max-width: 768px) {
  .admin-nav-tabs {
    gap: 0.5rem;
    justify-content: flex-start;
  }
  
  .admin-nav-tab {
    font-size: 0.75rem;
    padding-bottom: 0.25rem;
  }
}

