
/* ==================================================
   SERVICES PAGE STYLES
================================================== */

/* ---------- Overview Section ---------- */
.services-overview {
  text-align: center;
  padding: 100px 20px;
}

.services-overview h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
}

.services-overview p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  color: var(--dark);
}

/* ---------- Services Grid ---------- */
.services-grid-section {
  padding: 0 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Service Cards ---------- */
.service-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 12px;
  background-color: var(--light);
  color: var(--dark);
  text-decoration: none;
  border-top: 5px solid transparent;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.service-card h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 10px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Accent Borders ---------- */
.service-card.bg-brand-blue   { border-top-color: var(--brand-blue); }
.service-card.bg-brand-yellow { border-top-color: var(--brand-yellow); }
.service-card.bg-brand-green  { border-top-color: var(--brand-green); }
.service-card.bg-brand-navy   { border-top-color: var(--brand-navy); }
.service-card.bg-accent-coral { border-top-color: var(--accent-coral); }
.service-card.bg-accent-violet{ border-top-color: var(--accent-violet); }

/* ---------- Why Choose Us & CTA ---------- */
.why-choose-us,
.cta-section {
  max-width: 900px;
  margin: 4rem auto 0;
}

.why-choose-us ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-choose-us li strong {
  font-weight: 600;
}

/* ---------- CTA Button ---------- */
.cta-section a.cta-btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 9999px; /* Pill shape */
  background-color: var(--cta-base);
  color: var(--light);
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-section a.cta-btn:hover {
  transform: scale(1.05);
  background-color: var(--cta-hover);
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 768px) {
  .hero {
    padding: 60px 15px;
  }

  .service-content {
    padding: 0 15px;
  }

  .cta-section {
    padding: 30px 15px;
  }
}
