/* =============================================
   PHONG CÁCH MÔI TRƯỜNG - Xanh lá, thiên nhiên
   ============================================= */

/* Hero Environment */
.hero-environment {
  background: linear-gradient(135deg, #1a3a2a 0%, #2d5a3d 40%, #3d7a5a 100%);
  border-left: 6px solid #4caf50;
}

/* Section Environment */
.env-section {
  padding: 0.5rem 0;
}

.env-section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a3a2a;
  padding-bottom: 0.8rem;
  border-bottom: 3px solid #4caf50;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Grid Environment */
.env-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin: 1rem 0;
}

/* Card Environment */
.env-card {
  background: #f8fbf5;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #dce8d4;
  transition: all 0.3s ease;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.env-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(46, 125, 50, 0.12);
  border-color: #4caf50;
}

.env-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: #e8f5e0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #2e7d32;
  transition: all 0.3s ease;
}

.env-card:hover .env-card-icon {
  background: #2e7d32;
  color: white;
  transform: rotate(-5deg) scale(1.05);
}

.env-card-body {
  flex: 1;
}

.env-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a3a2a;
  margin: 0 0 0.4rem 0;
}

.env-card-text {
  font-size: 0.92rem;
  color: #3d5a4a;
  line-height: 1.7;
  margin: 0;
}

.env-badge {
  display: inline-block;
  margin-top: 0.6rem;
  background: #4caf50;
  color: white;
  padding: 0.2rem 1rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.env-highlight {
  background: #e8f5e0;
  border-radius: 12px;
  padding: 1.2rem 1.8rem;
  margin-top: 1.5rem;
  border-left: 5px solid #4caf50;
  font-size: 0.95rem;
  color: #1a3a2a;
}

.env-empty {
  color: #6a8a7a;
  font-style: italic;
  text-align: center;
  padding: 2rem;
}

/* Responsive Environment */
@media (max-width: 768px) {
  .env-grid {
    grid-template-columns: 1fr;
  }
  .env-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .env-section-title {
    font-size: 1.3rem;
  }
}