/* ========== COMMUNITY SECTION ========== */
.community-section {
  padding: 80px 20px;
  background: #f7faf9;
}

.community-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #2e7d32;
}

.section-subtitle {
  margin: 10px 0 50px;
  font-size: 18px;
  color: #555;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.community-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.community-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.community-icon i {
  font-size: 32px;
  color: #2e7d32;
}

.community-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.community-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ========== SERVICES GRIDS ========== */
.services-grid,
.services-grid-custom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* ========== SERVICE CARD (UNIFIED) ========== */
.service-card,
.service-box {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-card:hover,
.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

/* ========== SERVICE ICON (UNIFIED) ========== */
.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--primary);
}

/* ========== SERVICE TEXT ========== */
.service-card h3,
.service-box h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.service-card p,
.service-box p {
  color: var(--light);
  line-height: 1.7;
}

/* ========== SERVICE BOX VARIANTS ========== */
.service-box.primary {
  border-left: 5px solid var(--primary);
}

.service-box.secondary {
  border-left: 5px solid var(--secondary);
}

.service-box.accent {
  border-left: 5px solid var(--accent);
}

/* ========== CATEGORY TITLE ========== */
.service-category-title {
  margin: 3rem 0 1.5rem;
  font-size: 1.6rem;
  color: var(--primary);
}
