/* =========================================  
   BRANDING & MERCHANDISE PAGE STYLES
   Subtle branding aesthetic with accent-coral highlights
========================================= */

/* ---------- HERO SECTION ---------- */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: var(--brand-navy);
  color: var(--light);
  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;
}

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

/* ---------- SECTION HEADINGS ---------- */
.service-overview h2,
.service-components h2,
.strategic-advantages h2,
.strategic-implementation h2,
.galcad-difference h2,
.cta-section h2 {
  font-size: clamp(26px, 3vw, 36px);
  color: var(--primary);
  text-align: center;
  margin-bottom: 30px;
}

.service-overview p,
.strategic-implementation p,
.galcad-difference p {
  color: var(--dark);
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 850px;
  margin: 0 auto 20px;
}

/* ---------- SERVICE & MERCHANDISE CARDS ---------- */
.service-components article,
.strategic-advantages article {
  background: var(--neutral);
  padding: 25px 20px;
  margin-bottom: 25px;
  border-radius: 12px;
  border-left: 5px solid var(--accent-coral);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.service-components h3,
.strategic-advantages h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-components p,
.strategic-advantages p {
  font-size: 1rem;
  line-height: 1.6;
}

/* ---------- STRATEGIC IMPLEMENTATION LIST ---------- */
.strategic-implementation ol {
  list-style: none;
  margin: 1.5rem auto;
  padding: 0;
  max-width: 50rem;
  text-align: left;
}

.strategic-implementation li {
  position: relative;
  margin: 0 auto 0.75rem;
  padding-left: 2rem;
  max-width: 35rem;
  color: var(--dark);
  line-height: 1.6;
}

.strategic-implementation li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--accent-coral);
}

/* ---------- CTA ---------- */
.cta-section {
  max-width: 900px;
  margin: 4rem auto 0;
}

.cta-section a.cta-btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 9999px;
  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;
  }

  .service-components article,
  .strategic-advantages article {
    padding: 20px 15px;
  }

  .cta-section h2 {
    font-size: clamp(24px, 5vw, 32px);
  }
}
