/* ============================================
   SERVICE PAGES + AREA PAGES CSS
   ============================================ */

/* ---- SERVICE HERO ---- */
.service-hero {
  background: var(--bg-light);
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute; top: -100px; right: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(204,0,110,0.06) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.service-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.service-hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 18px;
}
.service-hero-breadcrumb a { color: var(--magenta); transition: var(--transition); }
.service-hero-breadcrumb a:hover { text-decoration: underline; }
.service-hero-breadcrumb .sep { color: var(--border-mid); }
.service-hero-img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%; object-fit: cover;
}
.service-hero-stats {
  display: flex; gap: 32px; margin-top: 32px;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.service-stat { text-align: left; }
.service-stat strong {
  display: block; font-size: 2rem; font-weight: 900;
  color: var(--magenta); letter-spacing: -1px;
}
.service-stat span { font-size: 0.8rem; color: var(--text-muted); }

/* ---- FEATURES GRID ---- */
.features-section { background: var(--bg-white); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); border-color: var(--magenta); transform: translateY(-3px); }
.feature-icon {
  width: 48px; height: 48px; background: var(--magenta-light);
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; color: var(--magenta); font-size: 1.2rem;
  margin-bottom: 14px;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; line-height: 1.7; }

/* ---- AREA HERO ---- */
.area-hero {
  background: linear-gradient(135deg, var(--bg-light) 0%, #f0e8f4 100%);
  padding: 72px 0 64px; border-bottom: 1px solid var(--border);
}
.area-hero-inner {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: center;
}
.area-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--magenta-light); border: 1px solid rgba(204,0,110,0.2);
  color: var(--magenta); padding: 7px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 18px;
}
.area-partners {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm);
}
.area-partners-title {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 16px;
}
.partner-list { display: flex; flex-direction: column; gap: 12px; }
.partner-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; background: var(--bg-light);
  border-radius: var(--radius-md); border: 1px solid var(--border);
}
.partner-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
}
.partner-item span { font-size: 0.88rem; color: var(--text-mid); font-weight: 500; }
.partner-item small { font-size: 0.75rem; color: var(--text-muted); margin-left: auto; }
.area-form-cta {
  background: var(--magenta); color: #fff;
  border-radius: var(--radius-lg); padding: 28px;
  text-align: center; margin-top: 16px;
}
.area-form-cta h3 { color: #fff; font-size: 1.15rem; margin-bottom: 8px; }
.area-form-cta p { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin-bottom: 18px; }
.area-form-cta .btn-white { background: #fff !important; color: var(--magenta) !important; width: 100%; justify-content: center; }

/* ---- AREA SERVICES GRID ---- */
.area-services { background: var(--bg-white); }
.area-service-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.area-service-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; text-align: center; transition: var(--transition);
}
.area-service-card:hover { border-color: var(--magenta); box-shadow: var(--shadow-md); }
.area-service-card .feature-icon { margin: 0 auto 12px; }
.area-service-card h3 { font-size: 1rem; margin-bottom: 8px; }
.area-service-card p { font-size: 0.85rem; }

/* ---- RESPONSIVE ---- */
@media(max-width: 900px) {
  .service-hero-inner, .area-hero-inner { grid-template-columns: 1fr; }
  .service-hero-img { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .area-service-cards { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 600px) {
  .features-grid, .area-service-cards { grid-template-columns: 1fr; }
  .service-hero-stats { flex-wrap: wrap; gap: 20px; }
}
