
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 140px 0 100px;
}

.hero .hero-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero .hero-header h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero .hero-header h1 .highlight {
  color: var(--accent-color);
  position: relative;
}

.hero .hero-header h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: color-mix(in srgb, var(--bs-primary), transparent 70%);
  z-index: -1;
}

.hero .media-block {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 380px;
}

.hero .media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .media-block .overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.hero .media-block .overlay-content .stats-item {
  display: flex;
  flex-direction: column;
}

.hero .media-block .overlay-content .stats-item .number {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero .media-block .overlay-content .stats-item .label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
}

.hero .info-block {
  background: #ffffff;
  border: 1px solid color-mix(in srgb, #3d3d3d, transparent 90%);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero .info-block .lead-text {
  font-size: 17px;
  line-height: 1.8;
  color: color-mix(in srgb, #3d3d3d, transparent 30%);
  margin-bottom: 30px;
}

.hero .info-block .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}

.hero .info-block .feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, #3d3d3d, transparent 92%);
}

.hero .info-block .feature-list li:last-child {
  border-bottom: none;
}

.hero .info-block .feature-list li i {
  color: var(--bs-primary);
  font-size: 18px;
}

.hero .info-block .action-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero .info-block .action-row .btn-get-started {
  display: inline-block;
  padding: 14px 28px;
  background: var(--bs-primary);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.hero .info-block .action-row .btn-get-started:hover {
  background: color-mix(in srgb, var(--bs-primary), #3d3d3d 15%);
  transform: translateY(-3px);
}

.hero .info-block .action-row .btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #3d3d3d;
  transition: color 0.3s ease;
}

.hero .info-block .action-row .btn-contact i {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, #3d3d3d, transparent 92%);
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.3s ease;
}

.hero .info-block .action-row .btn-contact:hover {
  color: var(--bs-primary);
}

.hero .info-block .action-row .btn-contact:hover i {
  background: color-mix(in srgb, var(--bs-primary), transparent 85%);
  color: var(--bs-primary);
}

@media (max-width: 991px) {
  .hero {
    padding: 80px 0 70px;
  }

  .hero .hero-header h1 {
    font-size: 40px;
  }

  .hero .media-block {
    min-height: 300px;
  }

  .hero .info-block {
    margin-top: 10px;
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 100px 0 50px;
  }

  .hero .hero-header h1 {
    font-size: 32px;
  }

  .hero .hero-header h1 .highlight::after {
    height: 6px;
    bottom: 3px;
  }

  .hero .media-block {
    min-height: 250px;
  }

  .hero .media-block .overlay-content {
    padding: 20px;
  }

  .hero .media-block .overlay-content .stats-item .number {
    font-size: 36px;
  }

  .hero .info-block {
    padding: 25px;
  }

  .hero .info-block .lead-text {
    font-size: 15px;
  }

  .hero .info-block .action-row {
    flex-direction: column;
    gap: 15px;
  }

  .hero .info-block .action-row .btn-get-started {
    width: 100%;
    text-align: center;
  }
}
