:root {
  --bg-color: #050508;
  --text-primary: #f5f0e8;
  --text-secondary: #8892b0;
  --accent-gold: #d4a017;
  --accent-pink: #ff6b6b;
  --accent-cyan: #00ffc8;
  --accent-blue: #64a0ff;
  --accent-purple: #b55fe6;
  --accent-emerald: #10b981;
  
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

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

.noise-bg {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
  padding: 30px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
}

.logo span {
  color: var(--text-secondary);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

/* Buttons */
.btn-primary {
  background: var(--text-primary);
  color: var(--bg-color) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700 !important;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255,255,255,0.1);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700 !important;
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.btn-secondary:hover {
  border-color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.large {
  padding: 16px 36px;
  font-size: 16px;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 200, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.hero-container {
  max-width: 800px;
}

.hero-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--accent-cyan);
  margin-bottom: 24px;
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(0,255,200,0.3);
  border-radius: 100px;
}

.hero-title {
  font-size: 80px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 20px;
}

/* Services */
.services {
  padding: 120px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: 48px;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 500px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,255,255,0.15);
}

.card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  top: -100px;
  right: -100px;
  filter: blur(50px);
  opacity: 0.15;
  transition: opacity 0.4s ease;
}
.service-card:hover .card-glow { opacity: 0.3; }

.cg-gold { background: var(--accent-gold); }
.cg-pink { background: var(--accent-pink); }
.cg-cyan { background: var(--accent-cyan); }
.cg-blue { background: var(--accent-blue); }
.cg-purple { background: var(--accent-purple); }
.cg-emerald { background: var(--accent-emerald); }

.service-icon {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 30px;
}
.si-gold { color: var(--accent-gold); }
.si-pink { color: var(--accent-pink); }
.si-cyan { color: var(--accent-cyan); }
.si-blue { color: var(--accent-blue); }
.si-purple { color: var(--accent-purple); }
.si-emerald { color: var(--accent-emerald); }

.service-title {
  font-size: 24px;
  margin-bottom: 16px;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 40px;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
}

.service-price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-primary);
}

.service-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.service-card:hover .service-link {
  color: var(--text-primary);
}

/* CTA */
.cta-section {
  padding: 120px 0;
  text-align: center;
}

.cta-container {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 80px 40px;
}

.cta-title {
  font-size: 48px;
  margin-bottom: 20px;
}

.cta-desc {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Footer */
footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero-title { font-size: 48px; }
  .hero-cta { flex-direction: column; }
  .nav-links { display: none; } /* Simplified for mobile */
  .footer-container { flex-direction: column; gap: 20px; text-align: center; }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

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

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Pulsing effect */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25d366;
  opacity: 0.7;
  z-index: -1;
  animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

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