:root {
  --neon-green: #00ff00;
  --neon-green-glow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00;
  --dark-bg: #0a0a0a;
  --text-color: #ffffff;
  --secondary-text: #cccccc;
  --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  --box-shadow: 0 4px 6px rgba(0, 255, 0, 0.1), 0 1px 3px rgba(0, 255, 0, 0.08);
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  background-color: var(--dark-bg);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Navigation */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  z-index: 1000;
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  width: auto;
}

.nav-cta {
  display: flex;
  align-items: center;
}

.btn-neon-small {
  padding: 0.5rem 1rem;
  border: 1px solid var(--neon-green);
  border-radius: 4px;
  color: var(--neon-green);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  box-shadow: 0 0 5px var(--neon-green);
}

.btn-neon-small:hover {
  background-color: var(--neon-green);
  color: var(--dark-bg);
  box-shadow: var(--neon-green-glow);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 70px;
  background: var(--gradient-dark);
}

.main-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5), 0 0 20px rgba(0, 255, 0, 0.3);
  max-width: 800px;
}

.subtitle {
  font-size: 1.5rem;
  color: var(--secondary-text);
  margin-bottom: 2.5rem;
  max-width: 700px;
}

.btn-neon {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  background-color: var(--neon-green);
  color: var(--dark-bg);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--box-shadow);
}

.btn-neon:hover {
  transform: translateY(-3px);
  box-shadow: var(--neon-green-glow);
}

.pulse-effect {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: var(--box-shadow);
  }
  50% {
    transform: scale(1.05);
    box-shadow: var(--neon-green-glow);
  }
  100% {
    transform: scale(1);
    box-shadow: var(--box-shadow);
  }
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Benefits Section */
.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-box {
  background: rgba(26, 26, 26, 0.6);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 255, 0, 0.2);
}

.benefit-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.benefit-box .icon {
  font-size: 2.5rem;
  color: var(--neon-green);
  margin-bottom: 1rem;
}

.benefit-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Video Section */
.video-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid var(--neon-green);
}

/* Features Section */
.features-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin: 2rem auto;
  max-width: 900px;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.6);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 255, 0, 0.2);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--neon-green);
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--secondary-text);
}

/* Offer Section */
.offer-section {
  background: rgba(15, 15, 15, 0.8);
  border-radius: 10px;
  padding: 3rem;
  margin: 2rem 0;
  border: 1px solid rgba(0, 255, 0, 0.2);
}

.offer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.price-pack {
  background: rgba(26, 26, 26, 0.6);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 255, 0, 0.3);
  position: relative;
}

.price-pack.featured {
  transform: scale(1.05);
  border: 2px solid var(--neon-green);
  box-shadow: var(--neon-green-glow);
}

.most-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--neon-green);
  color: var(--dark-bg);
  font-weight: bold;
  padding: 0.3rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.price-pack h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--neon-green);
}

.price-container {
  margin-bottom: 1.5rem;
}

.original-price {
  display: block;
  text-decoration: line-through;
  color: #999;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.current-price {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.discount {
  display: inline-block;
  background-color: var(--neon-green);
  color: var(--dark-bg);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
}

.pack-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.pack-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.pack-features li i {
  color: var(--neon-green);
  margin-right: 10px;
}

.whatsapp-btn {
  background-color: #25d366;
  color: white;
  box-shadow: 0 4px 6px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
  background-color: #1fac54;
}

.whatsapp-btn i {
  margin-right: 8px;
}

.mobile-optimized {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.payment-methods {
  text-align: center;
  margin-top: 2rem;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.payment-icons i {
  font-size: 2rem;
  color: #cccccc;
  transition: all 0.3s ease;
}

.payment-icons i:hover {
  color: var(--neon-green);
  transform: scale(1.2);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 255, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(26, 26, 26, 0.6);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 255, 0, 0.1);
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--secondary-text);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Footer */
.footer {
  background-color: rgba(15, 15, 15, 0.9);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(0, 255, 0, 0.2);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-center {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
}

.footer-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neon-green);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5), 0 0 20px rgba(0, 255, 0, 0.3);
}

.footer-description {
  font-size: 1.2rem;
  color: var(--secondary-text);
  margin-bottom: 2rem;
}

.social-container {
  width: 100%;
  max-width: 800px;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.social-item:hover {
  transform: translateY(-10px) scale(1.05);
}

.social-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid var(--neon-green);
  color: var(--neon-green);
  transition: all 0.3s ease;
  font-size: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
}

.social-circle:hover {
  box-shadow: 0 0 15px var(--neon-green), 0 0 30px rgba(0, 255, 0, 0.3);
  background: var(--neon-green);
  color: var(--dark-bg);
  transform: rotate(360deg);
}

.social-item p {
  font-size: 1rem;
  color: var(--secondary-text);
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: #888;
}

/* Media Queries */
/* Countdown Timer */
.countdown-container {
  text-align: center;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(255, 0, 0, 0.1);
  border: 2px solid #ff0000;
  border-radius: 10px;
}

.countdown-container h3 {
  color: #ff0000;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.time-unit {
  background: var(--neon-green);
  color: var(--dark-bg);
  padding: 1rem;
  border-radius: 8px;
  min-width: 80px;
  text-align: center;
}

.time-unit span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

.time-unit label {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Comparison Table */
.comparison-table-container {
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(26, 26, 26, 0.6);
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 0, 0.2);
}

.comparison-table-container h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--neon-green);
}

.comparison-table {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1px;
  background: rgba(0, 255, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-header {
  display: contents;
}

.comparison-header > div {
  background: rgba(0, 255, 0, 0.2);
  padding: 1rem;
  font-weight: 700;
  text-align: center;
}

.comparison-row {
  display: contents;
}

.comparison-row > div {
  background: rgba(26, 26, 26, 0.8);
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 255, 0, 0.1);
}

.feature-name {
  text-align: left !important;
  font-weight: 600;
}

.pack-feature.basic i.fa-check {
  color: var(--neon-green);
}

.pack-feature.vip i.fa-check {
  color: var(--neon-green);
}

.pack-feature i.fa-times {
  color: #ff0000;
}

/* Enhanced Pack Styling */
.popular-badge {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.vip-badge {
  background: linear-gradient(45deg, var(--neon-green), #00cc00);
  color: var(--dark-bg);
}

.value-highlight {
  background: rgba(255, 215, 0, 0.2);
  border: 1px solid #ffd700;
  color: #ffd700;
  padding: 0.5rem;
  border-radius: 5px;
  margin: 1rem 0;
  text-align: center;
}

.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0;
  color: var(--secondary-text);
  font-size: 0.9rem;
}

.guarantee i {
  color: var(--neon-green);
}

.pricing-packages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .main-title {
    font-size: 1.8rem;
    line-height: 1.2;
    padding: 0 1rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 1.6rem;
    padding: 0 1rem;
  }
  
  .container {
    padding: 0 10px;
  }
  
  .hero-section {
    padding-top: 80px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .top-nav {
    padding: 0.5rem 1rem;
  }
  
  .logo {
    height: 40px;
  }
  
  .btn-neon-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .benefit-box, .feature-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .features-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
  }
  
  .pricing-packages {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .price-pack {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
  
  .price-pack.featured {
    transform: scale(1);
    margin-bottom: 1rem;
  }
  
  .footer-content {
    flex-direction: column;
    padding: 0 1rem;
  }
  
  .offer-section {
    padding: 2rem 1rem;
  }
  
  .social-row {
    gap: 1.5rem;
  }
  
  .social-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .video-container {
    margin: 0 1rem;
  }
  
  .countdown-timer {
    gap: 0.5rem;
  }
  
  .time-unit {
    min-width: 60px;
    padding: 0.8rem 0.5rem;
  }
  
  .time-unit span {
    font-size: 1.5rem;
  }
  
  .comparison-table {
    grid-template-columns: 2fr 1fr 1fr;
    font-size: 0.9rem;
  }
  
  .comparison-table-container {
    margin: 2rem 1rem;
    padding: 1rem;
  }
  
  .comparison-header > div,
  .comparison-row > div {
    padding: 0.8rem 0.5rem;
  }
  
  .whatsapp-btn {
    padding: 1rem;
    font-size: 1rem;
    width: 100%;
  }
  
  /* Better touch targets */
  .btn-neon, .whatsapp-btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Improved readability */
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .pack-features {
    text-align: left;
  }
  
  .pack-features li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 1.5rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .comparison-table {
    font-size: 0.8rem;
  }
  
  .comparison-header > div,
  .comparison-row > div {
    padding: 0.6rem 0.3rem;
  }
  
  .time-unit {
    min-width: 50px;
    padding: 0.6rem 0.3rem;
  }
  
  .time-unit span {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) and (min-width: 769px) {
  .pricing-packages {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-hover {
  border: 2px solid var(--neon-green);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
}

.testimonial-hover img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonial-hover:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px var(--neon-green), 0 0 30px rgba(0, 255, 0, 0.3);
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

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

.animated {
  animation: fadeInUp 0.6s ease forwards;
}