/* === Pricing Section General Styles === */
.price-list {
  padding: 3rem 1rem;
  background-color: #f8f9fa;
  display: none;
  transition: opacity 0.3s ease;
}

.solutions-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-title {
  font-size: 2rem;
  color: #0d6efd;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
}

.subsection-title {
  font-size: 1.3rem;
  color: #333;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 3px solid #0d6efd;
  padding-bottom: 6px;
  font-weight: 600;
}

/* === Grid of Services === */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

/* === Service Cards === */
.service-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 1.75rem 1.5rem;
  text-align: center;
  border: 1px solid #e2e2e2;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.service-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

/* === Icons and Titles === */
.service-item i {
  font-size: 2.2rem;
  color: #0d6efd;
  margin-bottom: 0.7rem;
  transition: color 0.3s ease;
}

.service-item:hover i {
  color: #084cba;
}

.service-item h4 {
  font-size: 1.15rem;
  color: #222;
  margin-bottom: 0.7rem;
  font-weight: 600;
}

/* === Pricing Text === */
.service-item p {
  font-size: 1rem;
  color: #198754;
  font-weight: 700;
  margin: 0;
}

/* === Responsive Adjustments === */
@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
  }

  .subsection-title {
    font-size: 1.15rem;
  }

  .service-item h4 {
    font-size: 1rem;
  }

  .service-item p {
    font-size: 0.95rem;
  }
}

/* === Price Filter Section === */
.price-filter {
  background: #fff;
  border: 1.5px solid #ddd;
  padding: 1.8rem 2rem;
  margin: 3rem auto;
  max-width: 1000px;
  border-radius: 14px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.5rem;
  justify-content: space-between;
  user-select: none;
}

.filter-heading {
  width: 100%;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #0d6efd;
  text-align: center;
  letter-spacing: 0.02em;
}

/* Checkbox labels */
.price-filter label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  color: #444;
  cursor: pointer;
  flex: 1 1 220px;
  transition: color 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  user-select: none;
}

.price-filter label:hover {
  background-color: #e7f0ff;
  color: #0d6efd;
}

/* Checkbox styling */
.price-filter input[type="checkbox"] {
  accent-color: #0d6efd;
  transform: scale(1.15);
  cursor: pointer;
  transition: accent-color 0.3s ease;
}

/* Checked label styling */
.price-filter input[type="checkbox"]:checked + span {
  color: #0d6efd;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 600px) {
  .price-filter {
    gap: 1rem 1.5rem;
    padding: 1.2rem 1.5rem;
  }

  .filter-heading {
    font-size: 1.15rem;
  }

  .price-filter label {
    flex: 1 1 100%;
    font-size: 0.95rem;
  }
}
