/* ================================================
   WHO-WE-SERVE.CSS
   ================================================ */

/* BANNER */
.page-banner.who-we-serve-banner {
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("../images/who-we-serve-banner.webp") center 35% / cover no-repeat;
}

/* HIGHLIGHT */
.who-highlight {
  padding: 20px 0 0;
}

.highlight-text,
.who-highlight-text {
  max-width: 1000px;
  margin: 40px auto 60px;
  padding: 0 32px;
  box-sizing: border-box;
  text-align: center;
}

.highlight-text p,
.who-highlight-text p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(30,30,30,0.85);
  text-align: center;
  position: relative;
  padding-bottom: 24px;
}

.highlight-text p::after,
.who-highlight-text p::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 85%;
  height: 20px;
  transform: translateX(-50%);
  border-bottom: 4px solid var(--hmc-brand-accent);
  border-radius: 0 0 50% 50%;
}

/* SERVE BLOCKS */
.serve-block-section {
  padding: 0 20px 20px;
}

.serve-block-section:last-of-type {
  margin-bottom: 80px;
}

.serve-block-wrap {
  max-width: 1380px;
  margin: 0 auto 30px;
  background:
    radial-gradient(circle at 8% 18%, rgba(140,46,110,0.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(47,71,56,0.10), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(47,71,56,0.08), transparent 35%),
    #f8f9f8;
  border: 1px solid var(--hmc-brand-border);
  border-radius: 24px;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.12);
  padding: 44px 40px 48px;
}

.section-2 .serve-block-wrap {
  background:
    radial-gradient(circle at 8% 18%, rgba(47,71,56,0.10), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(140,46,110,0.10), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(140,46,110,0.08), transparent 35%),
    #f8f9f8;
}

.serve-block-wrap h2 {
  margin: 0 0 10px;
  color: var(--hmc-brand-primary);
  font-size: 1.8rem;
  line-height: 1.2;
}

/* CARDS GRID */
.serve-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.serve-card {
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(140,46,110,0.03) 100%);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 34px 28px;
  min-height: 210px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.serve-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(47,71,56,0.16);
}

.serve-card h3 {
  margin: 0 0 14px;
  color: var(--hmc-brand-primary);
  font-size: 1.15rem;
  line-height: 1.35;
}

.serve-card p {
  margin: 0;
  color: rgba(30,30,30,0.78);
  line-height: 1.8;
  font-size: 1rem;
}

.serve-card {
  opacity: 1 !important;
  transform: none !important;
}

.who-intro {
  max-width: 1000px;
  margin: 40px auto 50px;
  padding: 0 32px;
  text-align: center;
}

.who-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(30,30,30,0.85);
  position: relative;
  padding-bottom: 24px;
}

.who-intro p::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 85%;
  height: 20px;
  transform: translateX(-50%);
  border-bottom: 4px solid var(--hmc-brand-accent);
  border-radius: 0 0 50% 50%;
}