/* --- PAGE HERO --- */
.page-hero {
  position: relative;
  padding: 180px 5% 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #052266 100%);
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(7, 48, 136, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
  z-index: 1;
}

.page-hero::after {
  display: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
}

.page-hero-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  opacity: 0.8;
  margin-bottom: 15px;
  display: block;
}

.page-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-light);
  font-family: "Poppins", sans-serif;
}

.page-hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* --- SERVICE DETAIL SECTIONS --- */
.svc-detail {
  padding: 100px 5%;
  background: var(--bg-light);
  scroll-margin-top: 130px;
}

.svc-detail-alt {
  background: var(--bg-gray);
}

.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.svc-detail-content {
  padding: 0;
}

.svc-detail-badge {
  width: 70px;
  height: 70px;
  background: rgba(7, 48, 136, 0.1);
  color: var(--primary-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 25px;
}

.svc-detail-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  font-family: "Poppins", sans-serif;
}

.svc-detail-intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 35px;
}

.svc-detail-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 40px;
}

.svc-detail-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.svc-list-icon {
  min-width: 36px;
  height: 36px;
  background: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.svc-detail-list li strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-family: "Poppins", sans-serif;
}

.svc-detail-list li p {
  font-size: 0.93rem;
  color: #666;
  line-height: 1.6;
}

.svc-cta {
  margin-top: 10px;
}

.svc-detail-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.svc-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 480px;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .page-hero-title {
    font-size: 2.5rem;
  }

  .svc-detail-grid {
    gap: 40px;
  }

  .svc-detail-image img {
    min-height: 380px;
  }

  .svc-detail-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 150px 5% 60px;
  }

  .page-hero-title {
    font-size: 2rem;
  }

  .page-hero-desc {
    font-size: 1rem;
  }

  .svc-detail {
    padding: 70px 5%;
    scroll-margin-top: 120px;
  }

  .svc-detail-alt {
    padding: 70px 5%;
  }

  .svc-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .svc-detail-alt .svc-detail-grid {
    display: grid;
  }

  .svc-detail-alt .svc-detail-image {
    order: -1;
  }

  .svc-detail-image img {
    min-height: 280px;
  }
}

@media (max-width: 480px) {
  .page-hero-title {
    font-size: 1.7rem;
  }

  .svc-detail-content h2 {
    font-size: 1.5rem;
  }

  .svc-detail-badge {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
    border-radius: 12px;
  }

  .svc-list-icon {
    width: 30px;
    height: 30px;
    font-size: 0.65rem;
  }
}
