/*GLOBAL BOX-SIZING FOR CONSISTENCY*/
*, *::before, *::after {
  box-sizing: border-box;
}

/*PAGE HERO (STATIC – PROFILE PAGE)*/
.page-hero {
  position: relative;
  min-height: 30vh;
  margin-top: var(--nav-height, 100px);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  text-align: center;

  background-image: url("../assets/images/header-page.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* OVERLAY */
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28, 62, 91, 0.85),
    rgba(28, 62, 91, 0.55)
  );
}

/* CONTENT */
.page-hero-content {
  position: relative;
  max-width: 720px;
  padding: 0 24px;

  animation: fadeUp 0.8s ease forwards;
}

.page-hero-content h1 {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 8px;
}

.page-hero-content p {
  font-size: 14px;
  opacity: 0.9;
}

.page-hero-content p a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
}

.page-hero-content p span {
  margin: 0 6px;
  opacity: 0.7;
}

/* HERO ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= SECTORS ================= */
.sectors-section {
  padding: 100px 6vw;
  background: #ffffff;
}

.sectors-container {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  gap: 40px; /* jarak antar card diperdekat */
}

/* CARD – GLASS */
.sector-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;

  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);

  overflow: hidden; /* penting agar sudut gambar ikut rounded */
}

.sector-card.reverse {
  grid-template-columns: 1fr 1.05fr;
}

/* IMAGE */
.sector-image {
  position: relative;
}

.sector-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* sudut gambar ikut card */
  border-radius: 0;
}

/* TAG */
.sector-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;

  background: rgba(255,255,255,0.85);
  color: #1c3e5b;

  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
}

/* CONTENT */
.sector-content {
  padding: 36px 40px;
}

.sector-content h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #1c3e5b;
}

.sector-content p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

/* INFO */
.sector-info {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.sector-info li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #555;
}

/* LINK */
.sector-link {
  font-size: 14px;
  font-weight: 600;
  color: #ff6b35;
  text-decoration: none;
}

.sector-link:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .sector-card,
  .sector-card.reverse {
    grid-template-columns: 1fr;
  }

  .sector-content {
    padding: 32px;
  }
}
