/* ============================================================
   HMC PODIUM — SERVICES.CSS
   ============================================================ */

/* ══════════════════════════════════════════
   PAGE HERO
══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 110px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: var(--teal);
  border-radius: 50%;
  opacity: 0.07;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 220px; height: 220px;
  background: var(--pink);
  border-radius: 50%;
  opacity: 0.05;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ══════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════ */
.services-section {
  background: var(--bg-light);
  padding-top: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 24px;
}

.service-card { grid-column: span 6; }


.services-grid .service-card:nth-last-child(3) { grid-column: 4 / 10; }
.services-grid .service-card:nth-last-child(2) { grid-column: 10 / 16; }
.services-grid .service-card:nth-last-child(1) { grid-column: 16 / 22; }


.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}


.service-card__media {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-card__body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform 0.35s ease;
}
.service-card__icon--teal { background: rgba(102,198,186,0.12); color: var(--teal); }
.service-card__icon--pink { background: rgba(242,109,249,0.12); color: var(--pink); }
.service-card:hover .service-card__icon { transform: rotate(-6deg) scale(1.08); }

.service-card__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.service-card__body h3 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-card__body p {
  color: var(--text-gray);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card,
  .services-grid .service-card:nth-last-child(3),
  .services-grid .service-card:nth-last-child(2),
  .services-grid .service-card:nth-last-child(1) { grid-column: span 1; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-section { padding-top: 48px; }
}