/* ========================================
   DESIGN SYSTEM & CSS VARIABLES
   ======================================== */

:root {
  /* Colors - HSL Format */
  --color-primary: 217 91% 60%;
  --color-primary-dark: 217 91% 50%;
  --color-primary-light: 217 91% 70%;
  
  --color-secondary: 222 47% 11%;
  
  --color-accent: 30 100% 50%;
  
  --color-background: 210 40% 98%;
  --color-surface: 0 0% 100%;
  
  --color-text: 222 47% 11%;
  --color-text-muted: 215 16% 47%;
  --color-text-light: 210 16% 60%;
  
  --color-border: 214 32% 91%;
  --color-border-light: 220 13% 95%;
  
  --color-success: 142 76% 36%;
  --color-warning: 45 93% 47%;
  --color-error: 0 84% 60%;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(217 91% 60%) 0%, hsl(217 91% 50%) 100%);
  --gradient-hero: linear-gradient(180deg, hsl(210 40% 98%) 0%, hsl(0 0% 100%) 100%);
  --gradient-cta: linear-gradient(135deg, hsl(217 91% 60%) 0%, hsl(225 73% 57%) 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 hsla(222 47% 11% / 0.05);
  --shadow-md: 0 4px 6px -1px hsla(222 47% 11% / 0.1), 0 2px 4px -1px hsla(222 47% 11% / 0.06);
  --shadow-lg: 0 10px 15px -3px hsla(222 47% 11% / 0.1), 0 4px 6px -2px hsla(222 47% 11% / 0.05);
  --shadow-xl: 0 20px 25px -5px hsla(222 47% 11% / 0.1), 0 10px 10px -5px hsla(222 47% 11% / 0.04);
  --shadow-card: 0 2px 8px hsla(222 47% 11% / 0.08);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Container */
  --container-max-width: 1280px;
  --container-padding: 1rem;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: hsl(var(--color-text));
  background-color: hsl(var(--color-background));
}

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

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: hsl(var(--color-surface));
  border-bottom: 1px solid hsl(var(--color-border-light));
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--container-padding);
  gap: 2rem;
}

.nav-brand {
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  background-color: #2563eb;
  color: white;
  font-weight: 700;
  border-radius: 0px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  user-select: none;
}

.logo h1 {
  font-weight: 700;
  color: #1d2b64;
  font-size: 1.2rem;
}

.logo small {
  font-weight: 500;
  color: #3b82f6;
  font-size: 0.85rem;
}

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


.brand-name {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
  color: hsl(var(--color-text));
}

.brand-tagline {
  font-size: var(--font-size-sm);
  color: hsl(var(--color-text-muted));
}

.nav-menu {
  display: none;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-weight: var(--font-weight-medium);
  color: hsl(var(--color-text));
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: hsl(var(--color-primary));
}

.nav-link.active {
  color: hsl(var(--color-primary));
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--color-primary));
  font-weight: var(--font-weight-medium);
  transition: opacity var(--transition-fast);
}

@media (min-width: 1024px) {
  .nav-phone {
    display: flex;
  }
}

.nav-phone:hover {
  opacity: 0.8;
}

.phone-icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2;
}

/* Judul Perusahaan */
.logo h1 {
  font-size: 0.95rem !important;     /* lebih kecil dari sebelumnya */
  font-weight: 700;
  margin: 0;
  line-height: 1.1;       /* rapatkan jarak vertikal */
}

/* Tagline */
.logo small {
  font-size: 0.75rem !important; 
  margin-top: 2px;       /* tarik sedikit ke atas */
  display: block;
  color: #3b82f6;
  line-height: 1;
}

@media (max-width: 480px) {
  .logo h1 {
    font-size: 0.85rem;
  }
  .logo small {
    font-size: 0.7rem;
  }
}
/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-base);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-cta {
  background: white;
  color: hsl(var(--color-primary));
  padding: 1rem 2rem;
  font-size: var(--font-size-lg);
  box-shadow: var(--shadow-lg);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--color-primary));
  font-weight: var(--font-weight-semibold);
  transition: gap var(--transition-fast);
}

.btn-link:hover {
  gap: 0.75rem;
}


.btn-outline:hover {
 transform: translateY(-2px);
 box-shadow: var(--shadow-xl);
}

.btn-outline {
 color: white
}
.btn-outline:active {
  transform: translateY(0);
}

.btn-light {
 color:#2563eb
 hsl(var(--color-background))
}
.btn-light:hover {
 transform: translateY(-2px);
 box-shadow: var(--shadow-xl);
 
}

.btn-light:active {
 transform: translateY(0);
 background-color: white;
}

/* Container Utama Detail Artikel */
.Artikel-detail-wrapper {
    padding: 60px 0;
    background-color: #ffffff;
    font-family: 'Georgia', serif; /* Menggunakan font serif agar mirip referensi */
    color: #1a1a1a;
}

.Artikel-header {
    text-align: center;
    margin-bottom: 30px;
}

.Artikel-author {
    font-size: 28px;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Visual Utama */
.Artikel-main-visual {
    max-width: 800px;
    margin: 0 auto 40px;
    overflow: hidden;
}

.Artikel-main-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Pembungkus Body Teks */
.Artikel-body {
    max-width: 700px; /* Teks dibuat lebih sempit di tengah agar nyaman dibaca */
    margin: 0 auto;
    text-align: center;
}

.Artikel-category-tag {
    display: block;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 15px;
}

.Artikel-main-title {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.2;
}

.Artikel-date {
    font-size: 13px;
    font-style: italic;
    color: #64748b;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

/* Konten Artikel */
.Artikel-content-text {
    text-align: left;
    line-height: 1.8;
    font-size: 18px;
    color: #333;
}

/* Dropcap (Huruf besar di awal paragraf) */
.Artikel-dropcap span {
    float: left;
    font-size: 85px;
    line-height: 60px;
    padding-top: 4px;
    padding-right: 12px;
    padding-left: 3px;
    font-family: 'Georgia', serif;
    font-weight: 400;
}

/* Blockquote */
.Artikel-quote {
    font-size: 24px;
    font-style: italic;
    margin: 40px 0;
    padding: 0 40px;
    border-left: 2px solid #2563eb; /* Warna biru perusahaan */
    color: #1a1a1a;
    line-height: 1.5;
}

.Artikel-footer-nav {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.Artikel-back-link {
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    color: #1a1a1a;
    letter-spacing: 1px;
    border-bottom: 1px solid #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
    .Artikel-main-title { font-size: 28px; }
    .Artikel-content-text { font-size: 16px; }
    .Artikel-quote { font-size: 20px; padding: 0 20px; }
}

/* humbureger button */

/* ========== HEADER STICKY ========== */
.header {
  position: sticky;
  top: 0;
  background: white;
  z-index: 3000;
  border-bottom: 1px solid #eee;
}

/* ========== NAVBASE ========== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--container-padding);
  position: relative; /* PENTING */
}

/* ========== NAV MENU DESKTOP ========== */
.nav-menu {
  display: none;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    position: static;
  }
}

/* ========== HAMBURGER BUTTON ========== */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 44px;
  border-radius: 8px;
  border: none;
  background: #fff;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  z-index: 3100; /* di atas header + menu */
}

.menu-toggle i,
.fas.fa-bars {
  font-size: 24px;
  color: #000 !important;
}

.menu-toggle i,
.fas.fa-bars {
  color: #000 !important; /* hitam */
}


@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

/* ========== HIDE HUBUNGI KAMI DI MOBILE ========== */
@media (max-width: 1023px) {
  .btn.btn-primary {
    display: none;
  }
}

@media (max-width: 1023px) {
    
    /* ... (Kode untuk .btn.btn-primary display: none) ... */

    /* >>> TAMBAHKAN/EDIT BLOK INI <<< */
    .nav-menu {
        display: flex; 
        flex-direction: column;
        
        position: fixed; /* PENTING: Menu tidak ikut scroll */
        top: 0;
        right: 0; /* Mulai dari sisi kanan */
        width: 300px; /* Lebar Sidebar (sesuaikan jika perlu) */
        height: 100%; /* Mengisi seluruh tinggi layar */
        
        background-color: #1d2b64; /* Warna Biru Tua/Navy */
        padding: 80px 30px 20px 30px; /* Jarak dari atas untuk header */
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 999; /* Pastikan di atas overlay */
        overflow-y: auto; 
        
        /* SEMBUNYIKAN MENU SECARA DEFAULT */
        transform: translateX(100%); 
        transition: transform 0.3s ease-in-out;
    }

}


/* ========== MOBILE SIDEBAR MENU (PENGGANTI DROPDOWN) ========== */
.nav-menu.open {
    /* Hanya perlu menggeser menu masuk (transform: translateX(0)) */
    transform: translateX(0); 
    
    /* Hapus semua properti lain yang ada di blok lama seperti top, left, width, background, dll. karena sudah didefinisikan di .nav-menu di Langkah 1. */
    
    /* Z-Index harus lebih tinggi dari backdrop */
    z-index: 2200; 
}

.nav-menu.open li {
    margin: .7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Tambahkan garis pemisah putih */
}

.nav-menu.open .nav-link {
    display: block;
    width: 100%;
    color: white; /* PENTING: Agar tautan terlihat di latar belakang biru tua */
    padding: 10px 0;
}

/* HAPUS TOTAL: Animasi Drop */
/* @keyframes drop { ... } */

.nav-menu.open li {
  margin: .7rem 0;
}

.nav-menu.open .nav-link {
  display: block;
  width: 100%;
}



/* ========== BACKDROP MOBILE ========== */
.mobile-backdrop {
  display: none;
}

.mobile-backdrop.show {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 2000; /* di bawah menu */
}

/* ============================
  FORCE HAMBURGER ICON BLACK
  Tempelkan ini di paling bawah file CSS
   ============================ */

/* Semua kemungkinan class FontAwesome & i */
.menu-toggle,
.menu-toggle * {
  color: #000 !important;      /* teks / icon color */
  fill: #000 !important;       /* untuk svg fill */
  stroke: #000 !important;     /* untuk svg stroke */
}

/* Target spesifik untuk FA v4/v5 pseudo-element */
.menu-toggle .fa,
.menu-toggle .fas,
.menu-toggle .fa-bars,
.menu-toggle i.fas,
.menu-toggle i.fa,
.menu-toggle .fa-bars:before,
.menu-toggle i.fas:before {
  color: #000 !important;
  fill: #000 !important;
}

/* Jika icon dimasukkan sebagai SVG */
.menu-toggle svg,
.menu-toggle svg * {
  color: #000 !important;
  fill: #000 !important;
  stroke: #000 !important;
}

/* Pastikan tidak ada background-clip atau mix-blend yang membuatnya transparan */
.menu-toggle,
.menu-toggle i,
.menu-toggle .fa,
.menu-toggle svg {
  -webkit-text-fill-color: #000 !important;
  mix-blend-mode: normal !important;
}

/* Jika masih ada style inline di elemen, tambahkan ini untuk prioritas tertinggi (jadi gunakan sementara) */
[style] > .menu-toggle,
.menu-toggle[style] {
  color: #000 !important;
  fill: #000 !important;
}
/* Warna icon hamburger jadi hitam */
.menu-toggle i {
  color: #000000 !important;
  font-size: 24px; /* opsional */
}

/* Hilangkan border jika ada */
.menu-toggle {
  border: none;
  background: transparent;
}

/* btn back */

/* Container untuk tombol back */

/* Update CSS untuk Detail Artikel */
.Artikel-detail-wrapper {
    padding: 40px 0; /* Dikurangi dari 60px agar lebih rapat secara keseluruhan */
    background-color: #ffffff;
}

/* Penyesuaian khusus Mobile */
@media (max-width: 768px) {
    .Artikel-detail-wrapper {
        padding-top: 25px; /* Jarak sangat rapat dengan navbar di mobile */
    }

    .Artikel-back-container {
        margin-bottom: 15px; /* Mengurangi jarak antara tombol back dan judul */
        padding: 0 15px; /* Menyelaraskan padding samping dengan konten */
    }
}

.Artikel-back-container {
    display: flex;
    justify-content: flex-start; /* Posisi di kiri */
    margin-bottom: 20px;
    width: 100%;
    max-width: 800px; /* Sejajarkan dengan lebar gambar utama */
    margin-left: auto;
    margin-right: auto;
}

.Artikel-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #535d77; /* Warna abu-abu elegan */
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif; /* Gunakan sans-serif untuk tombol agar kontras */
    transition: color 0.3s ease;
}

.Artikel-btn-back:hover {
    color: #2563eb; /* Berubah ke biru perusahaan saat hover */
}

.Artikel-btn-back .icon {
    font-size: 28px;
    line-height: 0;
    transition: transform 0.3s ease;
}

.Artikel-btn-back:hover .icon {
    transform: translateX(-5px); /* Efek gerak panah saat hover */
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .Artikel-back-container {
        padding: 0 10px;
    }
}

/* foto/gambr artikel */

/* Mengatur Kontainer Gambar Utama agar tetap di tengah dan ukurannya pas */
.Artikel-main-visual {
    max-width: 800px; /* Membatasi lebar maksimal sesuai referensi sfasdsad.jpg */
    margin: 0 auto 40px;
    border-radius: 8px; /* Memberikan sudut tumpul halus */
    overflow: hidden;
    line-height: 0; /* Menghilangkan celah kecil di bawah gambar */
}

.Artikel-main-visual img {
    width: 100%;
    height: 450px; /* Mengatur tinggi tetap agar konsisten */
    object-fit: cover; /* Menghindari gambar gepeng/terdistorsi */
    display: block;
}

/* Mengatur gambar jika ada di dalam teks (Artikel-content-text) */
.Artikel-content-text img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 5px;
}



/* Responsive: Ukuran foto di HP agar tidak terlalu tinggi */
@media (max-width: 768px) {
    .Artikel-main-visual {
        max-width: 100%;
        margin-bottom: 25px;
    }
    
    .Artikel-main-visual img {
        height: 250px; /* Tinggi lebih pendek untuk layar kecil */
    }

    .Artikel-main-visual img {
        padding : 15px 15px
    }
}

