/* =========================================
   CONSULTING SERVICES PAGE STYLES
   (Aligned with social-media.css card style)
========================================= */

/* ---------- HERO SECTION ---------- */
.hero {
  text-align: center;
  padding: 100px 20px;
  background-color: var(--brand-navy);
  color: var(--brand-light, #fff); /* fallback added */
  border-radius: 0 0 12px 12px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 15px;
}

.hero p {
  font-size: clamp(16px, 2vw, 20px);
  max-width: 800px;
  margin: 15px auto 0;
  line-height: 1.6;
}

/* ---------- SERVICE CONTENT ---------- */
.service-content {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  text-align: center;
}

/* ---------- SERVICE COMPONENTS / CARDS ---------- */
.service-components h2 {
  font-size: 1.8rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.service-card {
  background-color: var(--brand-light, #fff); /* fallback */
  padding: 25px 20px;
  border-radius: 12px;
  border-left: 5px solid var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.service-card h3 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card ul {
  margin: 0;
  padding-left: 20px;
}

.service-card ul li {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 8px;
  color: var(--dark, #333); /* fallback */
}

/* ---------- 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;
  }
}
