/* Feature Section Styles */
.features-section {
  position: relative;
  z-index: 1;
}

.section-title {
  color: var(--bs-secondary);
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.title-separator {
  width: 80px;
  height: 4px;
  background: var(--bs-primary);
  border-radius: 2px;
}

.feature-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(107,178,82,0.15);
  border-color: rgba(107,178,82,0.2);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  background: var(--bs-success-bg-subtle);
  border-radius: 50%;
  color: var(--bs-primary);
  transition: all 0.3s ease;
}

.feature-icon-wrapper i {
  font-size: 28px;
  color: currentColor;
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--bs-primary);
  color: #fff;
  transform: scale(1.1);
}

.feature-title {
  color: var(--bs-secondary);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
  color: var(--bs-primary);
}

.feature-text {
  color: #666;
  font-size: 0.95rem;
}

.feature-hover-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(107,178,82,0.9);
  color: #fff;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  opacity: 0;
}

.feature-card:hover .feature-hover-content {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .feature-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon-wrapper i {
    font-size: 24px;
  }
}