/* Hero Section */
.hero-section {
 position: relative;
  height: 100vh;
  min-height: 700px;
  background-image: url('https://vishwakrealty.com/assets/hydnight.png') ;
  background-size: cover;
  background-position: center;
  color: var(--color-text-white);
  background-repeat: no-repeat;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  padding-top: var(--space-6);
  z-index: 1;
}

.hero-title {
  font-size: 4rem;
  font-weight: var(--font-weight-black);
  margin-bottom: var(--space-3);
  line-height: 1.1;
  color: var(--color-text-white);
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 650px;
  margin-bottom: var(--space-4);
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.hero-badge {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-bg-white);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 10;
  width: 80%;
  max-width: 850px;
}

.badge-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: var(--color-text-dark);
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.badge-value {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-size: 2.5rem;
  color: var(--color-primary);
  line-height: 1;
}

.badge-label {
  font-size: 1rem;
  color: var(--color-text-medium);
  margin-top: 0.25rem;
}

.badge-divider {
  width: 1px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.1);
}

/* Subheadline Section */
.subheadline-section {
  background-color: var(--color-primary);
  color: var(--color-text-white);
  padding: var(--space-7) 0 var(--space-3);
  text-align: center;
}

.subheadline-content {
  margin-top: 50px;
}

.subheadline-content p {
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  margin: 0;
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-badge {
    width: 90%;
    padding: var(--space-2);
  }
  
  .badge-value {
    font-size: 1.75rem;
  }
  
  .badge-label {
    font-size: 0.875rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 600px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
    margin-bottom: var(--space-1);
  }
  
  .badge-content {
    flex-direction: column;
    gap: var(--space-2);
  }
  
  .badge-divider {
    width: 50px;
    height: 1px;
  }
}