/* SERVICES GRID */
.services-section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* CARD STYLING */
.service-card {
  background: #212121;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.service-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

.service-card__title {
  margin: 0;
  color: #E0E0E0;
}

.service-card__desc {
  margin: 1rem 0;
  font-size: 0.95rem;
  color: #E0E0E0;
  line-height: 1.5;
  flex-grow: 1;
}

/* FOOTER SECTION IN CARD */
.service-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid #eee;
  margin-top: 1.5rem;
  padding-top: 1rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pricing {
  font-weight: 600;
  color: #EE1D52;
  font-size: 1rem;
}

.included {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: #E0E0E0;
  line-height: 1.4;
}

.included li {
  list-style-type: disc;
}

/* BUTTON */
.contact-btn {
  background: #171717;
  color: #E0E0E0;;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.contact-btn:hover {
  color: #EE1D52;
}

/* FOOTER */
footer {
  text-align: center;
  background: #004aad;
  color: #fff;
  padding: 1.5rem;
  margin-top: 3rem;
}
