/* === Services Global Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f0f4f8;
  color: #333;
  line-height: 1.6;
}

.main-content {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.main-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
  color: #111;
  font-weight: 700;
}

.main-desc {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 50px;
  color: #555;
  line-height: 1.7;
}

.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.card-header h3 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 20px;
  color: #111;
  position: relative;
  padding-bottom: 5px;
}

.card-header h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #3b82f6;
  display: block;
  margin: 8px auto 0;
  border-radius: 2px;
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.card-body ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #555;
}

.card-body ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

.price-btn-wrapper {
  text-align: center;
  margin-top: 15px;
}

.price-tag {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.price-tag .old-price {
  text-decoration: line-through;
  color: #888;
  font-weight: 500;
  margin-right: 8px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #3b82f6;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

/* Premium Style */
.service-card.premium {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card.premium .card-body ul li {
  color: #fff;
}

.service-card.premium .card-body ul li::before {
  color: #fff;
}

.service-card.premium .price-tag {
  color: #fff;
}

.service-card.premium .btn {
  background: #fff;
  color: #3b82f6;
}

.service-card.premium .btn:hover {
  background: #3b82f6;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .cards-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 20px;
  }

  .service-card:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 480px) {
  .card-body ul li {
    padding-left: 20px;
    font-size: 0.95rem;
  }

  .main-title {
    font-size: 2rem;
  }

  .main-desc {
    font-size: 1rem;
  }
}
