/* Dark Hero Section */
.dark-hero {
  background-color: var(--dark-navy);
  color: white;
  position: relative;
  padding: 100px 0 60px;
  text-align: center;
  overflow: hidden;
}

.dark-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/hero-asset-background-dark.svg');
  background-position: center;
  background-size: cover;
  opacity: 0.2;
  z-index: 1;
  pointer-events: none;
}

.dark-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.dark-hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: white;
}

.dark-hero p {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

/* Dark Result Cards */
.dark-results-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.dark-result-card {
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(5px);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dark-result-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(42, 227, 161, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 25px;
}

.dark-result-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--teal);
}

.dark-result-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.dark-result-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

@media (max-width: 992px) {
  .dark-results-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
  }

  .dark-result-card {
    padding: 30px 20px;
  }
}

/* Enhanced CTA Section */
.enhanced-cta-section {
  background-image: linear-gradient(45deg, var(--dark-navy), #10172a);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: white;
}

.enhanced-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('../assets/images/hero-asset-background-dark.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

.enhanced-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.enhanced-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.enhanced-cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.consultation-btn {
  display: inline-block;
  background-color: var(--teal);
  color: var(--dark-navy);
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.consultation-btn:hover {
  background-color: #20c48a;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--dark-navy);
}

@media (max-width: 768px) {
  .enhanced-cta-content h2 {
    font-size: 2rem;
  }

  .enhanced-cta-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .enhanced-cta-section {
    padding: 60px 0;
  }

  .enhanced-cta-content h2 {
    font-size: 1.8rem;
  }

  .enhanced-cta-content p {
    font-size: 1rem;
  }

  .consultation-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}
