/* PROFIL PAGE - CLEAN PROFESSIONAL */

.profile-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--hitamtua);
}

.profile-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 118, 178, 0.72);
  z-index: 1;
}

.profile-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 20px;
  color: var(--bg);
}

.hero-badge {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--bg);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.profile-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.section-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(0, 118, 178, 0.08);
  color: var(--birugelap);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ABOUT */
.profile-about-section {
  position: relative;
  padding: 95px 0 75px;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--aksenutama) 100%);
  overflow: hidden;
}

.profile-about-section::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 7%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(0, 118, 178, 0.08);
}

.profile-about-section::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 60px;
  width: 160px;
  height: 160px;
  border-radius: 40px;
  background: rgba(250, 171, 59, 0.10);
  transform: rotate(12deg);
}

.about-premium-card {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 54px 58px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 118, 178, 0.10);
  box-shadow: 0 24px 60px rgba(25, 25, 25, 0.08);
}

.about-premium-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(0, 118, 178, 0.08);
  pointer-events: none;
}

.about-premium-card h2 {
  max-width: 760px;
  margin: 0 auto 18px;
  color: var(--hitamtua);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
}

.about-lead {
  max-width: 700px;
  margin: 0 auto;
  color: var(--birugelap);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  font-weight: 600;
  line-height: 1.75;
}

.about-divider {
  width: 72px;
  height: 4px;
  margin: 28px auto;
  border-radius: 999px;
  background: var(--oren);
}

.about-premium-card p:not(.about-lead) {
  max-width: 760px;
  margin: 0 auto;
  color: var(--tekssekunder);
  font-size: 1.02rem;
  line-height: 1.85;
}

.about-value-list {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.about-value-item {
  min-width: 175px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--bg);
  border: 1px solid rgba(0, 118, 178, 0.10);
  box-shadow: 0 10px 26px rgba(25, 25, 25, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--hitamtua);
  font-weight: 700;
}

.about-value-item svg {
  width: 21px;
  height: 21px;
  color: var(--oren);
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .profile-about-section {
    padding: 65px 0 48px;
  }

  .profile-about-section::before,
  .profile-about-section::after {
    display: none;
  }

  .about-premium-card {
    padding: 38px 22px;
    border-radius: 24px;
  }

  .about-premium-card::before {
    inset: 10px;
    border-radius: 19px;
  }

  .about-value-list {
    gap: 12px;
  }

  .about-value-item {
    width: 100%;
    min-width: unset;
  }
}

.profile-about-section h2,
.section-heading h2 {
  color: var(--hitamtua);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}

.profile-about-section p,
.section-heading p {
  color: var(--tekssekunder);
  line-height: 1.8;
  font-size: 1rem;
}

.about-highlight {
  max-width: 620px;
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 4px solid var(--oren);
  background: var(--aksenutama);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--hitamtua);
  font-weight: 600;
}

.about-highlight svg {
  color: var(--birugelap);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .about-highlight {
    flex-direction: column;
    gap: 10px;
  }

  .about-highlight span {
    line-height: 1.5;
    text-align: center;
  }
}

/* VISI MISI */
.vision-mission-section {
  padding: 20px 0 70px;
  background: var(--bg);
}

.vm-card {
  text-align: center;
  height: 100%;
  padding: 30px;
  border-radius: 16px;
  background: var(--bg);
  border: 1px solid var(--abumuda);
  box-shadow: 0 8px 24px rgba(25, 25, 25, 0.06);
}

.vm-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin: 0 auto 18px;
  background: var(--aksenutama);
  color: var(--birugelap);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.vm-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--hitamtua);
  margin-bottom: 12px;
  text-align: center;
}

.vm-card p {
  color: var(--tekssekunder);
  line-height: 1.8;
  margin: 0;
  text-align: center;
}

/* SERVICES */
.services-section {
  padding: 80px 0;
  background: #fafafa;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
}

.service-card {
  height: 100%;
  min-height: 150px;
  padding: 24px 16px;
  border-radius: 16px;
  background: var(--bg);
  border: 1px solid var(--abumuda);
  box-shadow: 0 8px 22px rgba(25, 25, 25, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-align: center;
  transition: all 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--birugelap);
  box-shadow: 0 12px 28px rgba(25, 25, 25, 0.09);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--aksenutama);
  color: var(--birugelap);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 25px;
  height: 25px;
}

.service-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hitamtua);
  line-height: 1.45;
  margin: 0;
}

/* CTA */
.profile-cta {
  margin-top: 60px;
  padding: 42px 24px;
  border-radius: 20px;
  text-align: center;
  background: var(--birugelap);
  color: var(--bg);
}

.profile-cta h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.profile-cta p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
}

.btn-profile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 8px;
  background: var(--oren);
  color: var(--hitamtua);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-profile-cta:hover {
  background: var(--bg);
  color: var(--birugelap);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .profile-hero {
    min-height: 320px;
  }

  .profile-about-section {
    padding: 65px 0 45px;
  }

  .services-section {
    padding: 65px 0;
  }
}

@media (max-width: 576px) {
  .profile-hero {
    min-height: 300px;
  }

  .profile-hero p {
    font-size: 0.95rem;
  }

  .vm-card {
    padding: 24px;
  }

  .service-card {
    min-height: 135px;
    padding: 20px 12px;
  }

  .service-icon {
    width: 46px;
    height: 46px;
  }

  .service-card h4 {
    font-size: 0.85rem;
  }

  .profile-cta {
    padding: 34px 18px;
  }
}