/* ==================== RESET & GLOBAL ==================== */
html, body { margin: 0; padding: 0; width: 100%; font-family: 'Poppins', sans-serif; background: #f9f9f9; color: #333; scroll-behavior: smooth; overflow-x: hidden; }

/* Animations */
@keyframes slideDown { 0% { opacity: 0; transform: translateY(-100%); } 60% { opacity: 1; transform: translateY(20%); } 100% { transform: translateY(0); } }
@keyframes growLine { from { width: 0; opacity: 1; } to { width: 100%; opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scroll-short { 0% { transform: translateX(0); } 50% { transform: translateX(-20%); } 100% { transform: translateX(0); } }
@keyframes slideDownFromTop { from { transform: translateY(-6px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ==================== HEADER ==================== */
header { width: 100%; background: linear-gradient(135deg, #d62828, #f77f00); color: #fff; padding: 20px 0 0 0; display: flex; flex-direction: column; align-items: center; box-sizing: border-box; position: relative; z-index: 100; }

/* Header-top: logo + judul dalam satu baris */
.header-top { width: 100%; max-width: 1200px; display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; padding: 0 20px 10px 20px; box-sizing: border-box; margin: 0 auto; }

/* Logo */
.header-top img { width: 210px; height: 210px; margin-right: 15px; flex-shrink: 0; }

/* Title wrapper di sebelah kanan */
.title-wrapper { flex: 1; display: flex; flex-direction: column; align-items: flex-start; margin-left: 30px; min-width: 0; max-width: calc(100% - 240px); }

/* Judul utama */
.title-wrapper p { margin: 0; font-size: 60px; font-family: 'Bebas Neue', sans-serif; letter-spacing: 3px; background: linear-gradient(90deg, #ffffff, #ffe6cc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 2px 2px 4px rgba(0,0,0,0.25); animation: slideDown 1s ease-out; line-height: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }

/* Divider */
.title-wrapper .divider { width: 100%; height: 4px; background: #fff; margin: 5px 0; border-radius: 2px; animation: growLine 2s ease-out; }

/* Tagline */
.title-wrapper .tagline { font-size: 20px; font-weight: 400; letter-spacing: 1px; color: #fff; opacity: 0.9; animation: fadeIn 1.5s ease-in; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }

/* ==================== NAVBAR UTAMA ==================== */
.navbar { width: 100%; background: #fff; display: flex; justify-content: center; align-items: center; padding: 12px 0; margin: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.08); border-radius: 0; position: relative; box-sizing: border-box; border-top: 1px solid rgba(0,0,0,0.05); z-index: 1000; overflow: visible; }

/* Container untuk konten navbar */
.navbar-content { width: 100%; max-width: 1200px; padding: 0 20px; display: flex; justify-content: flex-end; align-items: center; box-sizing: border-box; margin: 0 auto; position: relative; overflow: visible; }

/* navbar saat sticky */
.navbar.stuck { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 9999; background: rgba(255,255,255,0.98); backdrop-filter: blur(4px); box-shadow: 0 6px 18px rgba(0,0,0,0.12); animation: slideDownFromTop 180ms ease; margin: 0; border-radius: 0; justify-content: center; overflow: visible; }

/* placeholder mencegah konten loncat */
.navbar-placeholder { height: 0; width: 100%; }

/* nav links */
.nav-links { display: flex; align-items: center; gap: 20px; position: relative; z-index: 1001; overflow: visible; }
.nav-links a { color: #333; text-decoration: none; font-weight: 600; padding: 8px 12px; border-radius: 5px; transition: .3s ease; }
.nav-links a:hover { background: #f77f00; color: #fff; box-shadow: 0 3px 6px rgba(0,0,0,0.1); }

/* search */
.search-box { display: flex; align-items: center; gap: 5px; }
.search-box input { padding: 6px 8px; border: 1px solid #ddd; border-radius: 4px; outline: none; transition: .3s ease; }
.search-box input:focus { border-color: #f77f00; box-shadow: 0 0 5px rgba(247,127,0,0.4); }
.search-box button { background: #f77f00; color: #fff; border: none; padding: 6px 10px; border-radius: 4px; cursor: pointer; transition: .3s ease; }
.search-box button:hover { background: #d62828; }

/* ===== MENU TOGGLE (BURGER) ===== */
.menu-toggle { display: none; font-size: 26px; line-height: 1; color: #333 !important; cursor: pointer; background: transparent; border: none; padding: 6px 10px; border-radius: 6px; position: relative; z-index: 10001; transition: .15s; }
.navbar.stuck .menu-toggle { color: #333 !important; background: rgba(255,255,255,0.95); box-shadow: 0 2px 6px rgba(0,0,0,0.06); }



/* ============================================================ RESPONSIVE DESIGN ============================================================ */
/* TABLET (601px - 900px) */
@media (min-width: 601px) and (max-width: 900px) {
.header-top { padding: 0 16px 10px 16px; max-width: 100%; }
.title-wrapper { max-width: calc(100% - 180px); }
.title-wrapper p { font-size: 44px; letter-spacing: 2px; }
.title-wrapper .tagline { font-size: 16px; }
.header-top img { width: 160px; height: 160px; margin-right: 10px; }
.navbar { width: 100%; padding: 12px 0; margin: 0; }
.navbar-content { padding: 0 16px; justify-content: space-between; max-width: 100%; }
.navbar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; width: 100%; height: 100%; background: #fff; z-index: -1; }
.nav-links { gap: 10px; }
.nav-links a { font-size: 14px; padding: 6px 10px; }
.search-box input { width: 120px; padding: 5px 8px; font-size: 14px; }
.search-box button { padding: 5px 10px; font-size: 14px; }

}

/* HANDPHONE (≤600px) - PERBAIKAN PRESISI & PROPORSIONAL */
@media (max-width: 600px) {
header { padding: 15px 0 0 0; }
.header-top { flex-direction: column; align-items: center; text-align: center; padding: 0 15px 5px 15px; max-width: 100%; }
.header-top img { width: 150px; height: 150px; margin-right: 0; margin-bottom: 10px; }
.title-wrapper { margin-left: 0; align-items: center; max-width: 100%; }
.title-wrapper p { font-size: 36px; white-space: normal; text-align: center; line-height: 1.1; }
.title-wrapper .tagline { font-size: 14px; white-space: normal; text-align: center; line-height: 1.3; }

/* NAVBAR MOBILE - PERBAIKAN PRESISI */
.navbar { width: 100%; padding: 0; margin: 0; position: relative; background: #fff !important; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.navbar-content { padding: 12px 15px; justify-content: space-between; width: 100%; max-width: 100%; align-items: center; }
.navbar::before { content: ''; position: absolute; top: 0; left: -50vw; right: -50vw; width: 200vw; height: 100%; background: #fff; z-index: -1; }
.menu-toggle { display: block; margin-right: 0; }

/* Menu tersembunyi default */
.nav-links { position: absolute; top: 100%; left: 0; width: 100%; background: #fff; flex-direction: column; gap: 12px; padding: 0; box-shadow: 0 8px 20px rgba(0,0,0,0.08); border-radius: 0 0 10px 10px; display: none; z-index: 9999; max-height: 0; overflow: hidden; opacity: 0; transition: all .3s ease; border-top: 2px solid #f77f00; }

/* Menu terbuka - PERBAIKAN PROPORSIONAL */
.nav-links.show { display: flex; max-height: 500px; opacity: 1; padding: 18px 15px; align-items: center; }

/* Link di mobile - PRESISI RATA TENGAH */
.nav-links a { width: 100%; padding: 12px 0; text-align: center; font-size: 16px; border-radius: 8px; margin: 2px 0; display: flex; justify-content: center; align-items: center; }

/* Search box di mobile */
.search-box { width: 100%; justify-content: center; margin-top: 15px; padding-top: 10px; border-top: 1px solid #eee; }
.search-box input { width: 100%; padding: 10px; font-size: 15px; border: 2px solid #ddd; }
.search-box button { padding: 10px 15px; font-size: 16px; }

/* Sticky navbar di mobile */
.navbar.stuck { width: 100%; padding: 0; margin: 0; border-radius: 0; background: rgba(255,255,255,0.98) !important; }
.navbar.stuck::before { background: rgba(255,255,255,0.98); }
.navbar.stuck .navbar-content { padding: 10px 15px; justify-content: space-between; }
.navbar.stuck .menu-toggle { background: rgba(255,255,255,0.85); }
}

/* DESKTOP (>900px) */
@media (min-width: 901px) { .navbar-content { max-width: 1200px; } }

/* VERY WIDE DESKTOP (>1200px) */
@media (min-width: 1201px) { .header-top, .navbar-content { max-width: 1200px; } }





/* ===== H1 UTAMA (SEO + PSI AMAN) ===== */
h1 {
  font-size: clamp(32px, 4vw, 44px); /* responsif & future-proof */
  font-weight: 800;
  line-height: 1.25;
  color: #b23a00; /* oranye tua khas Sinergi (kontras aman) */
  text-align: center;
  margin: 40px auto 32px;
  max-width: 1100px;
  background: #f9f9f9;
  
}


/* Container untuk hero image */
.hero-container {
    width: 65%;
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Hero image responsive */
.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

/* ========== RESPONSIVE HERO CONTAINER ========== */

/* Tablet (max-width: 900px) */
@media (max-width: 900px) {
    .hero-container {
        width: 100%;
        border-radius: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
}

/* Mobile (max-width: 600px) */
@media (max-width: 600px) {
    .hero-container {
        width: 100%;
        border-radius: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    }
}
        
        
        

/* ==================== ARTIKEL SEO & TIPS ==================== */

/* ============================================================
   ARTIKEL SEO - DESAIN MINIMALIS & NYAMAN DIBACA
   Background normal (transparan/tanpa warna), garis orange transparan
   ============================================================ */

/* Container utama untuk semua artikel */
.artikel-seo,
.artikel-tips {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  background: transparent;
  text-align: left;
  box-sizing: border-box;
}

/* Section dalam artikel */
.artikel-seo > section,
.artikel-tips > section {
  padding: 40px 35px;
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 15px 30px -12px rgba(0,0,0,0.08);
  box-sizing: border-box;
  transition: all 0.3s ease;
}

/* Hover effect pada artikel card */
.artikel-seo > section:hover {
  box-shadow: 0 20px 40px -15px rgba(247,127,0,0.15);
  transform: translateY(-2px);
}

/* ========== TIP CARD STYLING ========== */
.tip {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(247,127,0,0.2);
}

.tip:hover {
  border-color: rgba(247,127,0,0.5);
  box-shadow: 0 8px 20px rgba(247,127,0,0.08);
}

.tip .num {
  min-width: 50px;
  min-height: 50px;
  background: linear-gradient(135deg, #f77f00 0%, #e66a00 100%);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 6px 18px rgba(247,127,0,0.2);
  transition: all 0.3s ease;
}

.tip:hover .num {
  transform: scale(1.03);
}

/* ========== HEADING STYLING ========== */
.artikel-seo h1,
.artikel-tips h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, #e65c00 0%, #f77f00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 1100px;
  letter-spacing: -0.5px;
}

.artikel-seo h2,
.artikel-tips h2 {
  color: #1a1a1a;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(247,127,0,0.3);
  position: relative;
  line-height: 1.3;
}

.artikel-seo h2:first-of-type {
  margin-top: 0;
}

/* Dekorasi garis bawah h2 - versi soft */
.artikel-seo h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: rgba(247,127,0,0.5);
  border-radius: 2px;
}

.artikel-seo h3,
.artikel-tips h3 {
  color: #2c3e50;
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 18px;
  padding-left: 12px;
  border-left: 3px solid rgba(247,127,0,0.4);
  line-height: 1.3;
}

/* ========== PARAGRAF STYLING ========== */
.artikel-seo p,
.artikel-tips p {
  font-size: 17px;
  line-height: 1.8;
  color: #334155;
  margin-top: 0;
  margin-bottom: 22px;
  text-align: justify;
  letter-spacing: 0.1px;
}

/* Paragraf pertama */
.artikel-seo > section > p:first-of-type {
  font-size: 18px;
  color: #1e293b;
  font-weight: 500;
}

/* ========== LIST STYLING ========== */
.artikel-seo ul,
.artikel-tips ul {
  margin: 25px 0;
  padding: 0;
  list-style: none;
}

.artikel-seo li,
.artikel-tips li {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

/* Custom bullet point - orange transparan */
.artikel-seo li::before,
.artikel-tips li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(247,127,0,0.7);
  font-weight: bold;
  font-size: 18px;
}

/* Khusus untuk list wilayah */
.artikel-seo ul li strong {
  color: #e65c00;
  font-weight: 600;
}

/* Checklist khusus */
.artikel-seo .checklist,
.artikel-tips .checklist {
  background: rgba(247,127,0,0.03);
  padding: 25px 30px;
  border-radius: 20px;
  border: 1px solid rgba(247,127,0,0.12);
}

.artikel-seo .checklist li::before {
  content: "✓";
  color: #f77f00;
  font-size: 15px;
}

/* ========== TEXT HIGHLIGHT ========== */
.artikel-seo strong {
  color: #e65c00;
  font-weight: 600;
}

.artikel-seo em {
  color: #5a6e85;
  font-style: italic;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 900px) {
  .artikel-seo,
  .artikel-tips {
    padding: 30px 16px;
  }

  .artikel-seo > section,
  .artikel-tips > section {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .artikel-seo h2 {
    margin-top: 32px;
  }

  .artikel-seo p {
    font-size: 16px;
    line-height: 1.75;
  }

  .artikel-seo li {
    font-size: 15px;
  }

  .tip {
    padding: 15px;
    gap: 12px;
  }

  .tip .num {
    min-width: 42px;
    min-height: 42px;
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .artikel-seo,
  .artikel-tips {
    padding: 20px 12px;
  }

  .artikel-seo > section,
  .artikel-tips > section {
    padding: 25px 16px;
    border-radius: 16px;
  }

  .artikel-seo h1 {
    margin-bottom: 25px;
  }

  .artikel-seo h2 {
    font-size: 22px;
    margin-top: 28px;
    padding-bottom: 8px;
  }

  .artikel-seo h3 {
    font-size: 18px;
    margin-top: 25px;
    padding-left: 10px;
  }

  .artikel-seo p {
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 18px;
  }

  .artikel-seo > section > p:first-of-type {
    font-size: 16px;
  }

  .artikel-seo li {
    font-size: 14px;
    padding-left: 20px;
    margin-bottom: 10px;
  }

  .artikel-seo li::before {
    font-size: 14px;
  }

  .artikel-seo .checklist {
    padding: 18px 20px;
  }

  .tip {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    gap: 12px;
  }

  .tip .num {
    min-width: 36px;
    min-height: 36px;
    font-size: 16px;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  .artikel-seo > section,
  .artikel-tips > section {
    padding: 20px 14px;
  }

  .artikel-seo h2 {
    font-size: 20px;
  }

  .artikel-seo h3 {
    font-size: 17px;
  }

  .artikel-seo p {
    font-size: 14px;
  }
}

/* ========== SCROLL MARGIN UNTUK ANCHOR LINK ========== */
.artikel-seo h2,
.artikel-seo h3 {
  scroll-margin-top: 100px;
}

/* Meta info */
.meta {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

/* Hero section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding-right: 20px;
  box-sizing: border-box;
}

.hero-img {
  flex: 1;
  min-width: 300px;
  box-sizing: border-box;
}

.hero-img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Callout box */
.callout {
  background: #fef3c7;
  padding: 15px 20px;
  border-left: 4px solid #f59e0b;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

/* Tip styling untuk artikel SEO */
.artikel-seo .tip {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  box-sizing: border-box;
}

.artikel-seo .tip .num {
  min-width: 44px;
  min-height: 44px;
  background: #f77f00;
  color: white;
  border-radius: 8px;
  display: flex;
  margin-right: 15px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 6px 18px rgba(247,127,0,0.12);
  flex-shrink: 0;
}

/* List keunggulan */
.keunggulan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.keunggulan-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16.5px;
  line-height: 1.7;
  color: #111;
  margin-bottom: 14px;
  font-weight: 600;
}

.keunggulan-list li:before {
  content: "";
  color: #f77f00;
  font-weight: bold;
  flex-shrink: 0;
}

/* Layanan item */
.layanan-item {
  margin-bottom: 28px;
  padding: 20px;
  background: #fafafa;
  border-radius: 8px;
  border-left: 4px solid #f77f00;
}

.layanan-item h3 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
  
}

.layanan-item p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #222;
  margin: 0;
}

/* Tombol kontak */
.btn-contact {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(90deg, #d62828, #f77f00);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  box-sizing: border-box;
}

.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(214,40,40,0.3);
}

.btn-contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.6), transparent);
  transform: skewX(-25deg);
}

.btn-contact:hover::after {
  animation: shine .9s ease forwards;
}

@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}



/* ===== STYLING KHUSUS ARTIKEL TIPS ===== */
/* Layout tip untuk artikel tips */
.artikel-tips .tip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-bottom: 40px;
  padding: 25px;
  border-radius: 12px;
  background: #fafafa;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.artikel-tips .tip:hover {
  transform: translateY(-5px);
}

/* Teks di kiri */
.artikel-tips .tip .tip-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.7;
  text-align: left;
  min-width: 300px;
}

/* Gambar di kanan */
.artikel-tips .tip .tip-img {
  flex: 0 0 350px;
  max-width: 350px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.artikel-tips .tip .tip-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.artikel-tips .tip:hover .tip-img img {
  transform: scale(1.05);
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet (601px - 900px) */
@media (min-width: 601px) and (max-width: 900px) {
  .artikel-seo,
  .artikel-tips {
    padding: 15px;
  }
  
  .artikel-seo > section,
  .artikel-tips > section {
    padding: 25px;
  }
  
  .artikel-seo h2,
  .artikel-tips h2 {
    font-size: 22px;
  }
  
  .artikel-seo h3,
  .artikel-tips h3 {
    font-size: 19px;
    margin-top: 25px;
  }
  
  .artikel-seo p,
  .artikel-tips p {
    font-size: 15.5px;
    line-height: 1.7;
  }
  
  /* Hero layout tablet */
  .hero {
    flex-direction: column;
    gap: 20px;
  }
  
  .hero-text {
    padding-right: 0;
    min-width: 100%;
  }
  
  .hero-img {
    min-width: 100%;
  }
  
  /* Tips layout tablet */
  .artikel-tips .tip {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  
  .artikel-tips .tip .tip-text {
    min-width: 100%;
  }
  
  .artikel-tips .tip .tip-img {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  /* Layanan item tablet */
  .layanan-item {
    padding: 18px;
    margin-bottom: 22px;
  }
  
  .layanan-item h3 {
    font-size: 17px;
  }
  
  .layanan-item p {
    font-size: 15.5px;
  }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  .artikel-seo,
  .artikel-tips {
    padding: 10px;
  }
  
  .artikel-seo > section,
  .artikel-tips > section {
    padding: 20px 15px;
  }
  
  .artikel-seo h1,
  .artikel-tips h1 {
    font-size: 28px;
    margin-bottom: 24px;
  }
  
  .artikel-seo h2,
  .artikel-tips h2 {
    font-size: 20px;
    margin-bottom: 14px;
  }
  
  .artikel-seo h3,
  .artikel-tips h3 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
  }
  
  .artikel-seo p,
  .artikel-tips p {
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 16px;
  }
  
  /* Hero layout mobile */
  .hero {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .hero-text {
    padding-right: 0;
    min-width: 100%;
  }
  
  .hero-img {
    min-width: 100%;
  }
  
  /* Tip styling mobile */
  .artikel-seo .tip {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    margin-bottom: 15px;
  }
  
  .artikel-seo .tip .num {
    margin-right: 0;
    margin-bottom: 10px;
    min-width: 36px;
    min-height: 36px;
    font-size: 16px;
  }
  
  /* Tips layout mobile */
  .artikel-tips .tip {
    flex-direction: column;
    gap: 15px;
    padding: 18px;
    margin-bottom: 25px;
  }
  
  .artikel-tips .tip .tip-text {
    min-width: 100%;
    font-size: 15px;
    line-height: 1.6;
  }
  
  .artikel-tips .tip .tip-img {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  /* Callout mobile */
  .callout {
    padding: 12px 15px;
    margin: 15px 0;
  }
  
  /* List keunggulan mobile */
  .keunggulan-list li {
    font-size: 15px;
    gap: 10px;
    margin-bottom: 12px;
    line-height: 1.6;
  }
  
  /* Layanan item mobile */
  .layanan-item {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .layanan-item h3 {
    font-size: 16px;
    line-height: 1.3;
  }
  
  .layanan-item p {
    font-size: 15px;
    line-height: 1.6;
  }
  
  /* Tombol kontak mobile */
  .btn-contact {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 16px;
    margin-top: 15px;
  }
  

}

/* Desktop lebar (>1200px) */
@media (min-width: 1201px) {
  .artikel-seo,
  .artikel-tips {
    max-width: 1200px;
  }
  
  .artikel-seo > section,
  .artikel-tips > section {
    max-width: 1000px;
  }
}



/* ===== FAQ ===== */
.faq-artikel{
  margin:40px 0;
  font-family:Poppins,sans-serif;
}

.faq-artikel h2{
  font-size:1.8rem;
  margin-bottom:22px;
  font-weight:700;
  color:#1e3a8a;
}

/* Card */
.faq-artikel details{
  background:#f0f7ff;
  border:1px solid #bfdbfe;
  border-radius:10px;
  padding:16px 18px;
  margin-bottom:14px;
  transition:.25s;
}

/* SUMMARY RESET TOTAL */
.faq-artikel summary{
  list-style:none;
  cursor:pointer;
  position:relative;
  padding-right:32px;
  font-weight:600;
  color:#1e40af;
}

/* HAPUS SEMUA MARKER BAWAAN */
.faq-artikel summary::marker{ content:""; }
.faq-artikel summary::-webkit-details-marker{ display:none; }

/* PANAH CUSTOM */
.faq-artikel summary::after{
  content:"▼";
  position:absolute;
  right:0;
  top:0;
  font-size:1.2rem;
  color:#3b82f6;
  transform:rotate(0deg);
  transition:transform .3s ease,color .3s ease;
}

/* TERBUKA → PANAH KE ATAS */
.faq-artikel details[open] summary::after{
  transform:rotate(180deg);
  color:#1d4ed8;
}

/* ISI */
.faq-artikel details p{
  margin-top:10px;
  padding-top:10px;
  border-top:1px solid #bfdbfe;
  font-size:.95rem;
  line-height:1.6;
  color:#1e3a8a;
}

/* OPEN EFFECT */
.faq-artikel details[open]{
  background:#e0efff;
  border-color:#3b82f6;
  box-shadow:0 6px 16px rgba(59,130,246,.15);
}

/* ==================== ARTIKEL BAWAH ==================== */
#artikel {
  padding: 20px 20px;
  max-width: 1300px;
  margin: 80px auto;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* Judul ARTIKEL */
#artikel .artikel-title {
  font-size: 42px;
  font-weight: 700;
  font-family: 'Bebas Neue', sans-serif;
  color: #222;
  letter-spacing: 2px;
  margin-bottom: 50px;
  text-transform: uppercase;
  position: relative;
  display: block;
  text-align: center;
  
}

#artikel .artikel-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #d62828, #f77f00);
  border-radius: 2px;
}

/* Grid Layout */
.artikel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* default */
  gap: 30px;
}


/* Artikel Card */
.artikel-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.35s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.artikel-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 28px rgba(214, 40, 40, 0.25);
}

/* Gambar Artikel */
.artikel-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.artikel-item:hover img {
  transform: scale(1.05);
}

/* Konten Artikel */
.artikel-date {
  font-size: 14px;
  color: #555;
  margin: 15px 20px 5px;
  text-align: left;
}


.artikel-heading {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin: 0 20px 20px;
  text-align: left;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.artikel-item:hover .artikel-heading {
  color: #d62828;
}




/* ==================== FOOTER ==================== */
footer {
  background: linear-gradient(135deg, #d62828, #f77f00);
  color: #ddd;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  position: relative;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.footer-col {
  flex: 1;
  min-width: 260px;
}

.footer-col h3 {
  color: #ffcc00;
  margin-bottom: 12px;
  font-size: 1.15em;
  font-weight: 600;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  padding-bottom: 6px;
}

.footer-col p,
.footer-col ul li {
  text-align: left;
  line-height: 1.6;
  font-size: 0.95em;
  color: #eee;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-col ul li svg {
  flex-shrink: 0;
}

.logofooter {
  margin-bottom: 10px;
}

.logofooter img {
  width: 200px;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  display: block;
}


.social-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-icons a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 0.95em;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: translateX(5px);
}

.social-icons img {
  width: 28px;
  height: 28px;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85em;
  margin-top: 25px;
  color: #eee;
}

.music-player {
  position: absolute;
  bottom: 130px;
  right: 160px;
  max-width: 400px;
  background: none;
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  z-index: 1000;
}

.music-player button {
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.controls button:hover {
  transform: scale(1.2);
}

.music-player #progress {
  width: 50%;
  margin-right: 90px;
  box-sizing: border-box;
}

.music-player .controls {
  display: flex;
  gap: 6px;
  margin-right: 80px;
}

.music-player .scrolling-text {
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  max-width: 100%;
  box-sizing: border-box;
  animation: scroll-short 5s linear infinite alternate;
}

/* ==================== WHATSAPP FLOAT ==================== */
.wa-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-float img {
  width: 40px;
  height: 40px;
  display: block;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}



/* ==================== RESPONSIVE FOOTER ==================== */
@media (max-width: 992px) {
  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    gap: 35px;
  }

  .footer-col {
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }

  .footer-col ul li {
    justify-content: center;
    text-align: center;
  }

  .footer .social-icons a {
    justify-content: center;
  }

  .logofooter img {
    margin: 0 auto;
    display: block;
  }

  .music-player {
    width: 100%;
    max-width: 420px;
    margin: 30px auto 10px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .footer-col p,
  .footer-col li,
  .footer-col a {
    font-size: 14px;
  }

  .social-icons a img {
    width: 20px;
    height: 20px;
  }

  .footer-col ul li {
    flex-direction: column;
    align-items: center;
  }

  .footer-col ul li svg {
    margin-bottom: 6px;
  }
  
  .footer-bottom p {
    font-size: 13px;
  }

  .music-player {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 20px auto 0;
    align-items: center;
    width: 100%;
    max-width: 300px;
  }

  .music-player #progress,
  .music-player .controls {
    margin-right: 0;
  }
}

/* ==================== HIGHLIGHT SEARCH ==================== */
mark {
  background-color: yellow;
  font-weight: bold;
}

