/*--------------------------------------------------------------
# Premium Profile Section Style (Editorial Layout)
--------------------------------------------------------------*/
.about {
  background: linear-gradient(180deg, #ffffff 0%, #e8f4fd 60%, #d0ecfb 100%);
  color: var(--heading-color);
  position: relative;
  overflow: hidden;
  padding: 40px 0 0 0 !important;
  min-height: 100vh;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ 3-column grid Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, 1fr);
  grid-template-rows: 1fr;
  align-items: end;
  min-height: calc(100vh - 40px);
  position: relative;
  z-index: 2;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ LEFT COLUMN Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.profile-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 60px;
  z-index: 3;
}

/* Large editorial name */
.profile-hero-name {
  padding-top: 60px;
}

.hero-name-line {
  display: block;
  font-family: var(--heading-font), sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  color: var(--heading-color);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-style: italic;
}

.hero-name-bold {
  font-weight: 800;
  font-style: normal;
  font-size: clamp(3.5rem, 7.5vw, 7.5rem);
}

/* CTA Button */
.profile-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--heading-color);
  color: #ffffff !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--default-font), sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  width: fit-content;
  margin-top: 30px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.profile-cta-btn:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: #ffffff !important;
}

.profile-cta-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.profile-cta-btn:hover i {
  transform: translateX(4px);
}

/* Bio text (bottom of left column) */
.profile-bio-text {
  font-family: var(--default-font), sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  margin: 0;
  max-width: 340px;
  margin-top: auto;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ CENTER COLUMN (Portrait) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.profile-center {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
}

.profile-portrait-container {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}

.profile-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 2;
}

/* Soft bottom gradient fade */
.profile-portrait-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, #d0ecfb 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ WATERMARK TEXT Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.profile-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  white-space: nowrap;
  pointer-events: none;
  width: 100%;
  text-align: center;
}

.watermark-text {
  font-family: var(--heading-font), sans-serif;
  font-weight: 900;
  font-size: clamp(60px, 10vw, 160px);
  color: transparent;
  -webkit-text-stroke: 1.5px color-mix(in srgb, var(--heading-color), transparent 88%);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  display: none;
  will-change: opacity, transform;
}

.watermark-text.active {
  display: inline-block;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ RIGHT COLUMN Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.profile-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 60px;
  align-items: flex-end;
  text-align: right;
  z-index: 3;
}

/* Follow Me section */
.profile-follow-section {
  padding-top: 60px;
}

.follow-label {
  font-family: var(--heading-font), sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--heading-color);
  display: block;
  margin-bottom: 14px;
}

.profile-social-icons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.social-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.social-icon-circle:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
  color: #ffffff !important;
}

.profile-tagline {
  font-family: var(--default-font), sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--heading-color), transparent 35%);
  max-width: 280px;
  margin-left: auto;
  margin-bottom: 0;
}

/* Large role title at bottom-right */
.profile-role-title {
  margin-top: auto;
  text-align: right;
  display: grid; /* Tumpuk item agar tidak terjadi layout shift (loncat) saat animasi */
}

.role-title-item {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  will-change: opacity, transform;
  pointer-events: none;
}

.role-title-item.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.role-title-item span {
  display: block;
  font-family: var(--heading-font), sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  /* Premium UI/UX Gradient & Glow */
  color: #0563bb; /* Fallback */
  background: linear-gradient(135deg, #00d2ff 0%, #0563bb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0px 4px 18px rgba(255, 255, 255, 0.8)) drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.25));
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ RESPONSIVE Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 991px) {
  .about {
    padding: 30px 0 0 0 !important;
  }

  .profile-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-height: auto;
    gap: 0;
  }

  .profile-left {
    grid-column: 1;
    grid-row: 1;
    padding-bottom: 30px;
  }

  .profile-center {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .profile-right {
    grid-column: 1;
    grid-row: 2;
    align-items: flex-start;
    text-align: left;
    padding-bottom: 40px;
  }

  .profile-social-icons {
    justify-content: flex-start;
  }

  .profile-tagline {
    margin-left: 0;
  }

  .profile-role-title {
    text-align: right;
    width: 100%;
  }

  .role-title-item span {
    font-size: clamp(2rem, 4vw, 3.5rem);
  }

  .watermark-text {
    font-size: clamp(50px, 9vw, 120px);
  }
}

@media (max-width: 768px) {
  .profile-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    text-align: center;
  }

  .profile-left {
    grid-column: 1;
    grid-row: 1;
    align-items: center;
    text-align: center;
    padding-bottom: 20px;
  }

  .profile-hero-name {
    padding-top: 30px;
  }

  .hero-name-line {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  .hero-name-bold {
    font-size: clamp(3.2rem, 14vw, 5.5rem);
  }

  .profile-cta-btn {
    margin: 20px auto 0 auto;
  }

  .profile-bio-text {
    max-width: 100%;
    text-align: center;
    margin-top: 24px;
    font-size: 1rem;
  }

  .profile-center {
    grid-column: 1;
    grid-row: 2;
  }

  .profile-img {
    max-width: 360px;
    margin: 0 auto;
  }

  .profile-right {
    grid-column: 1;
    grid-row: 3;
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
    position: relative; /* Menjadi acuan posisi absolut untuk role title */
  }

  .profile-follow-section {
    padding-top: 20px;
  }

  .profile-social-icons {
    justify-content: center;
  }

  .profile-tagline {
    margin: 0 auto 10px auto;
    text-align: center;
  }

  .profile-role-title {
    position: absolute;
    top: -70px; /* Posisi presisi di sudut paling bawah foto */
    right: 0;
    text-align: right;
    width: 100%;
    padding-right: 15px; /* Jarak dari tepi layar */
    z-index: 10;
  }

  .role-title-item span {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .watermark-text {
    font-size: clamp(40px, 11vw, 80px);
    -webkit-text-stroke-width: 1px;
  }

  .profile-portrait-fade {
    height: 80px;
  }
}

@media (max-width: 576px) {
  .hero-name-line {
    font-size: 2.5rem;
  }

  .hero-name-bold {
    font-size: 3rem;
  }

  .profile-img {
    max-width: 280px;
  }

  .role-title-item span {
    font-size: 1.8rem;
  }
}

/* Efek Liquid Glass untuk Semua Tombol di Hero Section */
#hero .btn {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 4px 30px rgba(0, 0, 0, 0.2), 
    inset 0 1px 2px rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  color: #ffffff !important; /* Memastikan teks tetap kontras di bg gelap */
  position: relative;
  overflow: hidden;
}

/* Penyesuaian Tema Warna Spesifik agar Tetap Senada */

/* 1. Preview CV (Aksen Biru/Primary) */
#hero .btn-primary {
  background: rgba(13, 110, 253, 0.15);
  border-color: rgba(13, 110, 253, 0.3);
  box-shadow: 
    0 4px 30px rgba(13, 110, 253, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.2);
}
#hero .btn-primary:hover {
  background: rgba(13, 110, 253, 0.3);
  border-color: rgba(13, 110, 253, 0.6);
  box-shadow: 0 0 20px rgba(13, 110, 253, 0.4);
  transform: translateY(-3px);
}

/* 2. GitHub (Aksen Abu-abu/Secondary) */
#hero .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
#hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

/* 3. Get in Touch (Aksen Kuning/Warning) */
#hero .btn-warning {
  background: rgba(255, 193, 7, 0.15);
  border-color: rgba(255, 193, 7, 0.3);
  color: #fffbb5 !important; /* Warna teks kuning soft agar masuk dengan tema gelap */
}
#hero .btn-warning:hover {
  background: rgba(255, 193, 7, 0.3);
  border-color: rgba(255, 193, 7, 0.6);
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
  transform: translateY(-3px);
  color: #ffffff !important;
}

/* Efek Kilauan Air/Cairan Saat Di-hover (Liquid Gloss Glossy Overlay) */
#hero .btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
  transform: scale(0);
  transition: transform 0.6s ease-out;
  pointer-events: none;
}

#hero .btn:hover::before {
  transform: scale(1);
}
