/* ================= SERVICES PAGE ================= */
.services-page {
  padding: 80px 20px;
  background: #f0f1dd;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

/* ---------- HEADER ---------- */
.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
}

.services-header p {
  max-width: 750px;
  margin: 15px auto 0;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

/* ---------- GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ---------- CARD ---------- */
.service-card {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Yellow top indicator */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: #ffc107;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.35s ease;
}

/* HOVER EFFECT */
.service-card:hover {
  background: #fff7da;
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* ---------- FEATURED CARD ---------- */
.service-card.featured {
  background: #fff7da;
  border: 2px solid #ffc107;
}

.service-card.featured::before {
  transform: scaleX(1);
}

/* ---------- ICON ---------- */
.service-icon {
  font-size: 44px;
  margin-bottom: 18px;
}

/* ---------- TITLE ---------- */
.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

/* ---------- TEXT ---------- */
.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ---------- LIST ---------- */
.service-card ul {
  padding-left: 22px;
  margin-bottom: 26px;
}

.service-card ul li {
  font-size: 14.5px;
  color: #444;
  margin-bottom: 8px;
  position: relative;
}

.service-card ul li::before {
  content: "✔";
  position: absolute;
  left: -20px;
  color: #ffc107;
  font-size: 13px;
}

/* ---------- BUTTON ---------- */
.service-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 30px;
  background: #ffc107;
  color: #111;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-btn:hover {
  background: #111;
  color: #ffc107;
}

/* Dark button variant */
.service-btn.dark {
  background: #111;
  color: #ffc107;
}

.service-btn.dark:hover {
  background: #ffc107;
  color: #111;
}

/* ---------- CTA ---------- */
.services-cta {
  margin-top: 80px;
  padding: 45px 30px;
  background: #495057;
  border-radius: 16px;
  text-align: center;
}

.services-cta h2 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 12px;
}

.services-cta p {
  color: #e0e0e0;
  font-size: 15.5px;
  margin-bottom: 25px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #ffc107;
  color: #111;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #111;
  color: #ffc107;
}
