/* Zligger Custom Styles & Variables mirroring zligger.com */
:root {
  --primary: #ad5704;
  --primary-hover: #944802;
  --primary-foreground: #ffffff;
  --primary-light: #fff8f0;
  --primary-glow: rgba(173, 87, 4, 0.15);
  --secondary: #fff8f0;
  --background: #fbfbfb;
  --foreground: #141414;
  --muted: #f4f4f5;
  --muted-foreground: #52525b;
  --card: #ffffff;
  --border: #e4e4e7;
  --radius: 0.75rem;

  /* Zligger Identity Dark Palette */
  --identity-bg: #0f0f0f;
  --identity-border: #262420;
  --identity-gold: #d8a846;
  --identity-gold-light: #f0c975;
  --identity-text: #eae6df;
  --identity-muted: #9e9b94;
}

body {
  font-family: 'Source Sans 3', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--foreground);
  background-color: var(--background);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-serif {
  font-family: 'Playfair Display', Georgia, Cambria, 'Times New Roman', serif;
}

.font-sans {
  font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
}

/* Background Gradients */
.hero-gradient {
  background: radial-gradient(circle at 10% 20%, rgba(255, 248, 240, 0.8) 0%, rgba(251, 251, 251, 1) 90%);
}

.identity-radial-glow {
  background: radial-gradient(circle at 85% 15%, rgba(216, 168, 70, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 15% 85%, rgba(216, 168, 70, 0.08) 0%, transparent 60%),
              #0f0f0f;
}

/* Card & Button Styles */
.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 10px 25px -5px rgba(173, 87, 4, 0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--foreground);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background-color: #f9f9fb;
  border-color: #d1d5db;
}

.btn-white {
  background-color: #ffffff;
  color: var(--foreground);
  transition: all 0.25s ease;
}

.btn-white:hover {
  background-color: #f4f4f5;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.service-card {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #ffffff;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 30px -10px rgba(173, 87, 4, 0.35);
}

.stat-card {
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.stat-card:hover {
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.06);
  border-color: #cbd5e1;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #25D366;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px -5px rgba(37, 211, 102, 0.65);
}

/* Animations */
@keyframes pulseGlow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.15);
  }
}

.pulse-dot {
  animation: pulseGlow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
