/* ========== TREATMENTS PAGE ========== */
.treatments-page {
  padding: 60px 0;
  background: #3285292e;
}

.treatments-page-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
.treatments-header {
  text-align: center;
  margin-bottom: 50px;
}

.treatments-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #28a133;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.treatments-label-line {
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, #28a133, #005006);
  border-radius: 2px;
}

.treatments-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #1a2e24;
  margin-bottom: 12px;
}

.treatments-title span {
  background: linear-gradient(135deg, #28a133, #005006);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.treatments-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #5a6e64;
  max-width: 600px;
  margin: 0 auto;
}

/* Category */
.treatment-category {
  margin-bottom: 50px;
}

.category-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.category-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(40, 161, 51, 0.12), rgba(0, 80, 6, 0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon i {
  font-size: 24px;
  color: #28a133;
}

.category-name {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a2e24;
}

.category-line {
  height: 2px;
  background: linear-gradient(90deg, #28a133, #005006, transparent);
  width: 60px;
  margin-bottom: 25px;
}

/* Treatment Grid - 4 columns */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Treatment Card */
.treatment-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(40, 161, 51, 0.1);
}

.treatment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(40, 161, 51, 0.3);
}

/* Image */
.item-image {
  height: 150px;
  overflow: hidden;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.treatment-item:hover .item-image img {
  transform: scale(1.05);
}

/* Info */
.item-info {
  padding: 14px;
}

.item-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a2e24;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.treatment-item:hover .item-title {
  color: #28a133;
}

.item-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #5a6e64;
  margin-bottom: 10px;
  line-height: 1.4;
}

.item-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #28a133;
  transition: all 0.3s ease;
}

.item-arrow i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.treatment-item:hover .item-arrow {
  gap: 8px;
}

.treatment-item:hover .item-arrow i {
  transform: translateX(3px);
}

/* Scroll Animation */
.treatment-category {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.treatment-category.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
  .treatment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .treatment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .treatments-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .treatments-page {
    padding: 50px 0;
  }
  .treatments-page-inner {
    padding: 0 24px;
  }
}

@media (max-width: 550px) {
  .treatment-grid {
    grid-template-columns: 1fr;
  }
  .treatments-title {
    font-size: 24px;
  }
  .item-image {
    height: 140px;
  }
}