/* ====== SERVICE PAGE STYLES ====== */

.service-hero {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
}
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,40,70,0.82) 0%, rgba(23,192,206,0.45) 100%);
}
.service-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 640px;
}
.service-hero-content .badge { margin-bottom: 16px; }
.service-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.service-hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ====== DETAIL SECTION ====== */
.service-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-detail-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.3;
}
.service-detail-content p {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.service-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.service-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--dark);
  font-weight: 500;
}
.service-detail-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* ====== CTA ====== */
.service-cta {
  background: linear-gradient(135deg, #0db8c8 0%, #17C0CE 50%, #0fa5b2 100%);
  padding: 72px 0;
  color: #fff;
}
.service-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.service-cta p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .service-detail { grid-template-columns: 1fr; }
  .service-detail-image { display: none; }
  .service-hero { min-height: 320px; }
}
