@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --bg: #ffffff;
  --bg2: #f8fafc;
  --bg3: #f1f5f9;
  --text: #0f172a;
  --text2: #475569;
  --text3: #94a3b8;
  --accent: #2563eb;
  --accent2: #1d4ed8;
  --border: #e2e8f0;
  --card-bg: #ffffff;
  --nav-bg: rgba(255, 255, 255, 0.85);
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 48px rgba(15, 23, 42, 0.14);

  --c1: #FF6B6B;
  --c2: #4ECDC4;
  --c3: #FFE66D;
  --c4: #A8E6CF;
  --c5: #FF8B94;

  --font: 'Plus Jakarta Sans', sans-serif;
  --container: 1280px;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg: #0f172a;
  --bg2: #1e293b;
  --bg3: #243046;
  --text: #f8fafc;
  --text2: #94a3b8;
  --text3: #64748b;
  --accent: #3b82f6;
  --accent2: #60a5fa;
  --border: #334155;
  --card-bg: #1e293b;
  --nav-bg: rgba(15, 23, 42, 0.88);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.45);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg2);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

.announcement-bar {
  background: linear-gradient(90deg, #fef9e3, #fff5e6);
  border-left: 4px solid #f5a623;
  padding: 12px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  color: #000000;
}

.announcement-bar i {
  color: #000000;
}

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.loading-overlay.active {
  opacity: 1;
}

.loading-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 32px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  min-width: 300px;
  max-width: 380px;
  border: 1px solid var(--border);
  animation: fadeUp 0.4s ease;
}

.loading-spinner {
  width: 56px;
  height: 56px;
  border: 4px solid var(--border);
  border-top-color: var(--c1);
  border-right-color: var(--c2);
  border-bottom-color: var(--c3);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 0.8s linear infinite;
}

.loading-text {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.5;
}

.loading-text strong {
  color: var(--accent);
  font-size: 0.9rem;
}

.loading-message {
  font-size: 0.85rem;
  color: var(--text2);
  margin-bottom: 16px;
}

.loading-hint {
  font-size: 0.75rem;
  color: var(--text3);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ===== MODAL POPUP ERROR (VERSI FINAL - TIDAK DUPLIKAT) ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10001;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-card {
  background: var(--card-bg);
  border-radius: 24px;
  max-width: 400px;
  width: 90%;
  padding: 32px 28px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: fadeUp 0.3s ease;
  pointer-events: auto;
}

.modal-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 107, 107, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.modal-icon i {
  font-size: 2.5rem;
  color: #FF6B6B;
}

.modal-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.modal-card p {
  color: var(--text2);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.modal-card p strong {
  color: var(--accent);
  font-weight: 700;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.modal-btn {
  padding: 10px 20px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.modal-btn-primary {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
}

.modal-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.modal-btn-secondary {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text2);
}

.modal-btn-secondary:hover {
  background: var(--bg2);
  transform: translateY(-2px);
}

/* ===== TOMBOL DISABLED ===== */
.btn-disabled {
  background: var(--bg3);
  color: var(--text3);
  cursor: not-allowed;
  opacity: 0.6;
  border: 1px solid var(--border);
}

.btn-disabled:hover {
  transform: none;
  box-shadow: none;
  background: var(--bg3);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c1), var(--c2), var(--c3), var(--c4), var(--c5));
  background-size: 300% 300%;
  animation: gradientShift 4s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  letter-spacing: -0.5px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  background: linear-gradient(90deg, var(--c1), var(--c2), var(--c3));
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.logo-sub {
  font-size: 0.8rem;
  color: var(--text2);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text2);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--text);
  background-color: var(--bg3);
}

.nav-links a.active {
  color: var(--accent);
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--c1), var(--c2), var(--c3));
  background-size: 200%;
  animation: gradientShift 2s ease infinite;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Dark Mode Toggle */
.dark-toggle {
  width: 54px;
  height: 28px;
  background: var(--bg3);
  border-radius: 99px;
  border: 1.5px solid var(--border);
  position: relative;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  display: flex;
  align-items: center;
  padding: 3px;
}

.dark-toggle-ball {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

[data-theme="dark"] .dark-toggle-ball {
  transform: translateX(24px);
  background: linear-gradient(135deg, #e2e8f0, #94a3b8);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
  border-radius: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px 20px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--text2);
  transition: all var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--bg3);
  color: var(--accent);
}

/* ===== PAGE WRAPPER ===== */
.page-content {
  padding-top: 68px;
}

/* ===== ANIMATIONS ===== */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blobPulse {

  0%,
  100% {
    border-radius: 40% 60% 40% 60% / 50% 40% 60% 50%;
  }

  25% {
    border-radius: 55% 45% 65% 35% / 40% 60% 40% 60%;
  }

  50% {
    border-radius: 45% 55% 35% 65% / 60% 35% 65% 40%;
  }

  75% {
    border-radius: 60% 40% 50% 50% / 35% 65% 35% 65%;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--c1), var(--c2), var(--c3), var(--c4));
  background-size: 300% 300%;
  animation: gradientShift 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text2);
  letter-spacing: 0.3px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  animation: pulse 2s ease infinite;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--c1), var(--c2), var(--c3));
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  color: white;
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(255, 107, 107, 0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--bg3);
}

.btn-download {
  background: linear-gradient(135deg, #d93025, #e53935);
  color: white;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 0.85rem;
  box-shadow: 0 4px 14px rgba(217, 48, 37, 0.3);
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(217, 48, 37, 0.45);
}

.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-radius: 99px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  width: 100%;
  justify-content: center;
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

/* ===== SECTION TITLES ===== */
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text2);
  max-width: 560px;
  line-height: 1.7;
}

/* ===== CARDS ===== */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 28px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text2);
  transition: background var(--transition);
}

footer span {
  color: var(--c1);
}

/* ===== STAT CARDS ===== */
.stats-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-card {
  text-align: center;
  padding: 20px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 110px;
  flex: 1;
  transition: all var(--transition);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text2);
  font-weight: 500;
  margin-top: 6px;
}

/* ===== PROFILE IMAGE ===== */
.profile-frame {
  position: relative;
  width: 400px;
  height: 450px;
  flex-shrink: 0;
}

.profile-frame::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 40% 60% 40% 60% / 50% 40% 60% 50%;
  background: linear-gradient(135deg, var(--c1), var(--c2), var(--c3), var(--c4), var(--c5));
  background-size: 300% 300%;
  animation: gradientShift 4s ease infinite, blobPulse 8s ease infinite;
  z-index: 0;
}

.profile-img {
  position: absolute;
  inset: 6px;
  border-radius: 40% 60% 40% 60% / 50% 40% 60% 50%;
  object-fit: cover;
  width: calc(100% - 20px);
  height: calc(100% - 1px);
  animation: blobPulse 8s ease infinite, float 6s ease-in-out infinite;
  z-index: 1;
}

.profile-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(78, 205, 196, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 107, 107, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(255, 230, 109, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* ===== DECORATIVE DOTS ===== */
.dots-grid {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, var(--border) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.6;
  pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-actions {
    justify-content: center;
  }

  .stats-row {
    justify-content: center;
  }

  .profile-frame {
    width: 260px;
    height: 260px;
  }

  .profile-wrapper {
    order: -1;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ===== DOC GRID ===== */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.doc-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.doc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #d93025;
}

.doc-thumb {
  height: 120px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.doc-card:hover .doc-thumb {
  background: linear-gradient(135deg, rgba(217, 48, 37, 0.08), rgba(255, 107, 107, 0.12));
}

.doc-thumb i {
  font-size: 3.5rem;
  color: #d93025;
  transition: transform var(--transition);
}

.doc-card:hover .doc-thumb i {
  transform: scale(1.1);
}

.doc-body {
  padding: 18px;
}

.doc-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.doc-desc {
  font-size: 0.8rem;
  color: var(--text2);
  margin-bottom: 14px;
  line-height: 1.5;
}

/* Filter buttons */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  justify-content: center;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 99px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.filter-btn i {
  font-size: 0.9rem;
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--c1), var(--c2));
  color: white;
  border-color: transparent;
}

.filter-btn:hover:not(.active) {
  background: var(--bg2);
  transform: translateY(-2px);
}

/* Badge file type */
.file-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 99px;
  font-size: 0.65rem;
  font-weight: 600;
  margin-top: 8px;
}

.file-badge.pdf {
  background: rgba(217, 48, 37, 0.15);
  color: #d93025;
}

.file-badge.excel {
  background: rgba(33, 115, 70, 0.15);
  color: #217346;
}

.file-badge.word {
  background: rgba(43, 87, 154, 0.15);
  color: #2b579a;
}

.file-size {
  font-size: 0.7rem;
  color: var(--text3);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Table */
.doc-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.doc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.doc-table th {
  background: var(--bg3);
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  color: var(--text2);
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

.doc-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  transition: background var(--transition);
}

.doc-table tbody tr:hover td {
  background: var(--bg3);
}

.doc-table tbody tr:last-child td {
  border-bottom: none;
}

/* Info Panel */
.info-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.info-box h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-list {
  list-style: none;
}

.step-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text2);
}

.step-list li:last-child {
  border-bottom: none;
}

.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.total-box {
  text-align: center;
  padding: 32px;
}

.total-num {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--c1), var(--c2), var(--c3));
  background-size: 200%;
  animation: gradientShift 3s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contact-info-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ci-wa {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(18, 140, 126, 0.15));
  color: #25D366;
}

.ci-loc {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(78, 205, 196, 0.12));
  color: var(--accent);
}

.ci-time {
  background: linear-gradient(135deg, rgba(255, 230, 109, 0.2), rgba(255, 140, 0, 0.15));
  color: #f59e0b;
}

.contact-detail h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.5;
}

/* Form */
.contact-form-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: all var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
  background: var(--bg);
}

.form-group textarea {
  min-height: 130px;
}

/* ===== ABOUT PAGE - FULLY RESPONSIVE ===== */
.about-hero {
  padding: 60px 0 40px;
  text-align: center;
}

.about-hero .profile-frame {
  margin: 0 auto 32px;
  width: 200px;
  height: 200px;
}

.about-hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.about-bio {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text2);
  font-size: 1rem;
  line-height: 1.7;
}

.quote-box {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.06), rgba(78, 205, 196, 0.06), rgba(255, 230, 109, 0.04));
  border: 1px solid var(--border);
  border-left: 4px solid;
  border-image: linear-gradient(to bottom, var(--c1), var(--c2), var(--c3)) 1;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 24px 28px;
  font-style: italic;
  color: var(--text2);
  font-size: clamp(0.9rem, 3vw, 1.05rem);
  line-height: 1.7;
  position: relative;
}

.quote-box::before {
  content: '"';
  font-size: 5rem;
  line-height: 0.8;
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: Georgia, serif;
  opacity: 0.25;
}

/* About Grid - Responsive */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
  background: linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
    linear-gradient(135deg, var(--c1), var(--c2), var(--c3)) border-box;
  border: 1px solid transparent;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.fi-1 {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 107, 107, 0.05));
  color: var(--c1);
}

.fi-2 {
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.15), rgba(78, 205, 196, 0.05));
  color: var(--c2);
}

.fi-3 {
  background: linear-gradient(135deg, rgba(255, 230, 109, 0.2), rgba(255, 140, 0, 0.1));
  color: #f59e0b;
}

.fi-4 {
  background: linear-gradient(135deg, rgba(168, 230, 207, 0.2), rgba(78, 205, 196, 0.1));
  color: #10b981;
}

.feature-card h3 {
  font-size: clamp(0.9rem, 3vw, 0.95rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: clamp(0.8rem, 2.5vw, 0.85rem);
  color: var(--text2);
  line-height: 1.6;
}

/* About Info List - Responsive */
.about-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.about-info-item:hover {
  transform: translateX(4px);
  border-color: var(--accent);
}

.about-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-info-content {
  flex: 1;
}

.about-info-content h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.about-info-content p {
  font-size: 0.8rem;
  color: var(--text2);
  line-height: 1.5;
}

/* ===== RESPONSIVE ABOUT PAGE ===== */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 20px;
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto 12px;
  }

  .quote-box {
    padding: 20px;
    margin: 0 8px;
  }

  .quote-box::before {
    font-size: 3.5rem;
    top: 10px;
    left: 10px;
  }

  .about-hero {
    padding: 40px 0 30px;
  }

  .about-hero .profile-frame {
    width: 150px;
    height: 150px;
  }

  .about-info-item {
    padding: 16px;
  }

  .about-info-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .about-info-icon {
    width: 40px;
    height: 40px;
  }

  .feature-card {
    padding: 18px;
  }

  .quote-box {
    padding: 16px;
  }
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(78, 205, 196, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 50%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 768px) {

  .contact-grid,
  .info-panel {
    grid-template-columns: 1fr;
  }

  .profile-frame {
    width: 200px;
    height: 200px;
  }

  .doc-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .stats-row {
    flex-direction: column;
    gap: 12px;
  }

  .stat-card {
    padding: 12px 16px;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .modal-card {
    width: 85%;
    padding: 24px 20px;
    margin: 0 16px;
  }

  .modal-icon {
    width: 55px;
    height: 55px;
  }

  .modal-icon i {
    font-size: 2rem;
  }

  .modal-card h3 {
    font-size: 1.1rem;
  }

  .modal-card p {
    font-size: 0.85rem;
  }

  .modal-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* ===== SECTION SPACING ===== */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 60px 0;
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 48px 0;
}

/* ===== TAG ===== */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--bg3);
  color: var(--text2);
  border: 1px solid var(--border);
}

/* ===== VIEW TOGGLE ===== */
.view-toggle {
  display: flex;
  gap: 4px;
  background: var(--bg3);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.view-btn {
  padding: 7px 14px;
  border-radius: 7px;
  background: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text2);
  transition: all var(--transition);
}

.view-btn.active {
  background: var(--card-bg);
  color: var(--accent);
  box-shadow: var(--shadow);
}

/* ===== RESPONSIVE MODAL ===== */
@media (max-width: 480px) {
  .modal-card {
    width: 85%;
    padding: 24px 20px;
  }

  .modal-icon {
    width: 55px;
    height: 55px;
  }

  .modal-icon i {
    font-size: 2rem;
  }

  .modal-card h3 {
    font-size: 1.1rem;
  }

  .modal-card p {
    font-size: 0.85rem;
  }

  .modal-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}