/* Home Page Specific Styles */

.hero-section {
  padding-top: 80px;
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(233, 69, 96, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.hero-image-container {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Services Overview */
.services-overview {
  background-color: var(--bg-primary);
}

.service-card {
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--highlight-color);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--highlight-color) 0%, #c23555 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Stats Section */
.stats-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stat-item {
  padding: 2rem;
}

.stat-item h3 {
  color: var(--highlight-color);
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section {
    text-align: center;
  }

  .hero-image-container {
    margin-top: 3rem;
  }
}

@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
