@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Colors */
  --bg-color: #05080f;
  --surface-color: rgba(15, 23, 42, 0.6);
  --surface-border: rgba(255, 255, 255, 0.05);
  
  --primary: #3b82f6; /* Trust Blue */
  --primary-glow: rgba(59, 130, 246, 0.5);
  
  --urgent: #ef4444; /* Alert Red */
  --urgent-glow: rgba(239, 68, 68, 0.5);
  
  --safe: #10b981; /* Safe Green */
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Effects */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-blur: blur(12px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Gradients */
.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-glow) 0%, rgba(0,0,0,0) 70%);
  top: -200px;
  right: -200px;
  z-index: -1;
  opacity: 0.4;
  filter: blur(60px);
}
.bg-glow.urgent {
  background: radial-gradient(circle, var(--urgent-glow) 0%, rgba(0,0,0,0) 70%);
  top: 40%;
  left: -200px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.urgent-text { color: var(--urgent); }
.safe-text { color: var(--safe); }
.primary-text { color: var(--primary); }

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
section {
  padding: 6rem 0;
  position: relative;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 8, 15, 0.8);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--surface-border);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo img {
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}
.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

.btn-urgent {
  background: var(--urgent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
  animation: pulse-urgent 2s infinite;
}
.btn-urgent:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(239, 68, 68, 0.5);
  animation: none;
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--surface-border);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(59, 130, 246, 0.1);
}

@keyframes pulse-urgent {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.hero-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}
.hero-subtitle {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--urgent);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Services Cards (Glassmorphism) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.service-card {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.icon-red { background: rgba(239, 68, 68, 0.1); color: var(--urgent); }
.icon-blue { background: rgba(59, 130, 246, 0.1); color: var(--primary); }
.icon-green { background: rgba(16, 185, 129, 0.1); color: var(--safe); }

.service-card h3 { margin-bottom: 1rem; }
.service-card p { color: var(--text-muted); margin-bottom: 1.5rem; flex-grow: 1; }
.service-link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}
.service-link:hover { color: var(--primary); gap: 0.75rem; }

/* Process Section */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--surface-border);
  z-index: 0;
}
.step {
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-color);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}
.step-content {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  padding: 2rem;
  border-radius: 20px;
  flex-grow: 1;
}

/* Footer */
footer {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid var(--surface-border);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--text-main);
}
.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  padding-top: 2rem;
  border-top: 1px solid var(--surface-border);
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-ctas { flex-direction: column; }
  .nav-links { display: none; /* Add hamburger menu later if needed */ }
  .process-steps::before { display: none; }
  .step { flex-direction: column; gap: 1rem; }
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
}
.badge-safe { color: var(--safe); border-color: rgba(16, 185, 129, 0.3); }

/* Floating CTA (WhatsApp/Call) */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transition: var(--transition);
  text-decoration: none;
}
.float-btn.whatsapp { background: #25D366; }
.float-btn.phone { background: var(--urgent); animation: pulse-urgent 2s infinite; }
.float-btn:hover { transform: scale(1.1); }
