
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(rgba(15,23,42,0.95), rgba(15,23,42,0.95)), url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover fixed;
  background-size: cover;
  color: white;
  min-height: 100vh;
  line-height: 1.6;
}
header {
  background: rgba(2,6,23,0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  position: sticky;
  top: 0;
  z-index: 100;
}

header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #22c55e;
  text-shadow: 0 0 10px rgba(34,197,94,0.5);
}

nav {
  display: flex;
}

.mobile-nav-toggle {
  display: none;
}

/* Admin Modal Styles */
.admin-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s ease;
}

.admin-container {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 20px;
  padding: 2rem;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  border: 2px solid #22c55e;
  box-shadow: 0 25px 50px rgba(34,197,94,0.3);
  min-width: 400px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(34,197,94,0.3);
  padding-bottom: 1rem;
}

.admin-header h2 {
  margin: 0;
  color: #22c55e;
  font-size: 1.8rem;
}

.close-btn, .admin-actions .btn {
  background: none;
  border: 1px solid #94a3b8;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.close-btn:hover {
  background: #ef4444;
  border-color: #ef4444;
  color: white;
}

.admin-form input {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(34,197,94,0.3);
  border-radius: 12px;
  color: white;
  font-size: 1rem;
}

.admin-form input::placeholder {
  color: #94a3b8;
}

.error {
  color: #ef4444;
  display: none;
  text-align: center;
  margin-top: 1rem;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  max-height: 60vh;
  overflow-y: auto;
}

.number-row {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #22c55e;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.number-row label {
  font-weight: bold;
  color: #22c55e;
  font-size: 1.1rem;
}

.number-row input {
  padding: 1rem;
  border: 2px solid rgba(34,197,94,0.4);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: white;
}

.number-row input:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
}

.btn.small {
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
}

.btn.danger {
  background: linear-gradient(45deg, #ef4444, #dc2626);
}

.btn.danger:hover {
  background: linear-gradient(45deg, #dc2626, #ef4444);
  transform: translateY(-2px);
}

.admin-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .admin-container {
    margin: 1rem;
    min-width: auto;
    padding: 1.5rem;
  }
  
  .numbers-grid {
    grid-template-columns: 1fr;
  }
  
  .number-row {
    flex-direction: column;
  }
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

nav a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
}

nav a:hover {
  background: rgba(34,197,94,0.2);
  color: #22c55e;
  transform: translateY(-2px);
}
/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-item {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  background: rgba(34,197,94,0.1);
  border-color: #22c55e;
}

.service-item i {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 1rem;
}

/* Why Us Cards */
.why-us {
  background: rgba(0,0,0,0.3);
  padding: 4rem 2rem;
  border-radius: 30px;
  margin: 4rem 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-card {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border-left: 5px solid #22c55e;
  transition: all 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(34,197,94,0.2);
}

/* Benefits */
.benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(34,197,94,0.1);
  border-radius: 12px;
  border-left: 4px solid #22c55e;
}

.benefit-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: #22c55e;
}

/* Social Proof */
.proof-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(16,163,74,0.2));
  border-radius: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #22c55e;
  display: block;
}

/* Urgency */
.urgency {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  padding: 3rem 2rem;
  border-radius: 25px;
  text-align: center;
  margin: 4rem 0;
  box-shadow: 0 20px 40px rgba(34,197,94,0.3);
}

.urgency h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

/* Disclaimer */
.disclaimer {
  background: rgba(139,92,246,0.1);
  border: 2px solid rgba(139,92,246,0.3);
  border-radius: 15px;
  padding: 2.5rem;
  margin: 4rem 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: #e2e8f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer strong {
  color: #22c55e;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(16,163,74,0.15));
  padding: 4rem 2rem;
  border-radius: 30px;
  text-align: center;
  margin: 4rem 0;
  border: 2px solid rgba(34,197,94,0.3);
}

.cta-section .btn {
  font-size: 1.3rem;
  padding: 20px 50px;
  margin-top: 2rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  /* Mobile hamburger nav */
  .mobile-nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
  }
  
  nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    background: rgba(2,6,23,0.98);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: slideDown 0.3s ease;
  }
  
  nav.active {
    display: flex;
  }
  
  nav a {
    padding: 1rem;
    margin: 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  nav a:last-child {
    border-bottom: none;
  }
  
  .hero {
    padding: 80px 1rem 60px;
    background-attachment: scroll;
  }
  
  .section {
    padding: 60px 1rem;
  }
  
  .services, .why-us-grid {
    grid-template-columns: 1fr;
  }
  
  .btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  #wa {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
.hero {
  padding: 120px 2rem 100px;
  text-align: center;
  background: linear-gradient(rgba(15,23,42,0.8), rgba(34,197,94,0.1)), url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
  background: linear-gradient(45deg, white, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease 0.2s both;
}
.btn {
  padding: 15px 40px;
  background: linear-gradient(45deg, #22c55e, #16a34a);
  border: none;
  border-radius: 50px;
  color: white;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(34,197,94,0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(34,197,94,0.6);
  background: linear-gradient(45deg, #16a34a, #22c55e);
}

.btn:active {
  transform: translateY(-2px);
}
.section {
  padding: 80px 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: #22c55e;
  position: relative;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #22c55e, #16a34a);
  border-radius: 2px;
}
footer {
  background: rgba(2,6,23,0.95);
  backdrop-filter: blur(10px);
  padding: 3rem 2rem 2rem;
  text-align: center;
  border-top: 4px solid #22c55e;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
  text-align: left;
}

.footer-links h4 {
  color: #22c55e;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #22c55e;
}

.disclaimer {
  background: rgba(34,197,94,0.1);
  border: 2px solid rgba(34,197,94,0.3);
  border-radius: 15px;
  padding: 2rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #cbd5e1;
}

@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
#wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(45deg, #25D366, #128C7E);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  transition: all 0.3s ease;
  z-index: 1000;
  font-size: 2rem;
  animation: pulse 2s infinite;
}

#wa:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 40px rgba(37,211,102,0.7);
}
