/*
Theme Name: MAU AQIQAH Child
Theme URI: https://mauaqiqah.com
Description: Tema Landing Page Mobile-First.
Author: Digital Marketer Pro
Version: 1.7.0
*/

:root {
    --primary-color: #C58E3F;
    --secondary-color: #5D3D1D;
    --text-dark: #333333;
    --bg-light: #fcf9f5;
    --white: #ffffff;
    --danger: #e74c3c;
    --success: #2ecc71;
    --link-blue: #0056b3;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; }

/* PERBAIKAN: Senjata pamungkas (!important) untuk memaksa H1-H6 menjadi Bold */
h1, h2, h3, h4, h5, h6 { 
    color: var(--secondary-color); 
    line-height: 1.3; 
    font-weight: 700 !important; 
}

/* Memastikan tag strong dan b juga ikut bold maksimal */
b, strong {
    font-weight: 700 !important;
}

a { text-decoration: none; color: var(--primary-color); }
img { max-width: 100%; height: auto; }

/* Layout Utama */
.site-wrapper { max-width: 480px; margin: 0 auto; background-color: var(--white); box-shadow: 0 0 20px rgba(0,0,0,0.08); min-height: 100vh; display: flex; flex-direction: column; overflow-x: hidden; }
main { flex: 1; }
.section-pad { padding: 40px 20px; }
.text-center { text-align: center; }

/* Header & Menu */
.site-header { background-color: var(--secondary-color); color: var(--white); padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 100; flex-wrap: wrap; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.header-brand h2 { color: var(--primary-color); font-weight: 800 !important; font-size: 24px; margin: 0; }
.header-brand img { max-width: 140px; height: auto; display: block; }
.menu-toggle { background: none; border: none; color: var(--primary-color); font-size: 24px; cursor: pointer; padding: 5px; display: block; }

.main-nav { width: 100%; display: none; margin-top: 15px; animation: fadeIn 0.3s ease; }
.main-nav.toggled { display: block; }
.main-nav ul { list-style: none; display: flex; flex-direction: column; background: var(--white); border-radius: 8px; overflow: hidden; }
.main-nav a { display: block; color: var(--secondary-color); font-weight: 600; font-size: 14px; padding: 12px 15px; border-bottom: 1px solid #f0f0f0; }
.main-nav a:hover { background: var(--bg-light); color: var(--primary-color); }

.menu-item-has-children { position: relative; }
.menu-item-has-children > a::after { content: "\f0d7"; font-family: "Font Awesome 5 Free"; font-weight: 900; float: right; color: var(--primary-color); }
.sub-menu { display: none; background: var(--bg-light); padding-left: 15px; }
.main-nav ul li:hover > .sub-menu, .main-nav ul li:focus-within > .sub-menu { display: block; }
.sub-menu a { font-size: 13px; font-weight: 400; border-bottom: none; border-left: 2px solid var(--primary-color); }

/* Tombol */
.btn-wa { display: block; background-color: var(--primary-color); color: var(--white); padding: 15px 25px; border-radius: 50px; font-weight: 700 !important; font-size: 16px; text-align: center; width: 100%; box-shadow: 0 4px 15px rgba(197, 142, 63, 0.4); margin: 10px 0; border: none; cursor: pointer; transition: 0.3s; }
.btn-wa i { margin-right: 8px; font-size: 18px; }
.btn-wa:hover { background-color: var(--secondary-color); color: var(--white); }

/* Tombol WA Melayang dengan Teks */
.floating-wa { position: fixed; bottom: 25px; right: 20px; background-color: #25D366; color: #fff; padding: 10px 20px; border-radius: 50px; display: flex; align-items: center; gap: 10px; box-shadow: 2px 4px 15px rgba(0,0,0,0.2); z-index: 9999; transition: transform 0.3s; animation: pulse 2s infinite; }
.floating-wa i { font-size: 28px; }
.floating-wa-text { display: flex; flex-direction: column; font-size: 11px; line-height: 1.2; font-weight: 600; }
.floating-wa-text strong { font-size: 13px; font-weight: 800 !important; }
.floating-wa:hover { transform: scale(1.05); color: #fff; }

@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.03); } 100% { transform: scale(1); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Landing Page Components */
.hero-img { width: 100%; border-radius: 15px; margin: 15px 0; }
.problem-box { background: #fff5f5; border-left: 5px solid var(--danger); padding: 15px; margin-bottom: 15px; border-radius: 0 8px 8px 0; }
.problem-box p { margin: 0; font-weight: 600; color: #c0392b; font-size: 14px; }
.feature-item { display: flex; align-items: center; margin-bottom: 15px; background: var(--white); padding: 15px; border-radius: 12px; border-left: 5px solid var(--primary-color); box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.feature-icon { background: var(--secondary-color); color: var(--primary-color); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 18px; margin-right: 15px; flex-shrink: 0; }
.feature-text { font-weight: 600; color: var(--secondary-color); font-size: 14px; }

/* Pricing Card */
.card { border: 2px solid var(--primary-color); border-radius: 15px; padding: 25px 20px; text-align: center; background: var(--white); margin-bottom: 25px; }
.price-coret { text-decoration: line-through; color: #999; font-size: 16px; display: block; margin-bottom: 2px; }
.price-real { color: var(--primary-color); font-size: 28px; font-weight: 800 !important; }
.checklist-paket { list-style: none; text-align: left; margin: 20px 0; padding: 0 10px; }
.checklist-paket li { position: relative; padding-left: 28px; margin-bottom: 10px; font-size: 13px; color: var(--text-dark); line-height: 1.5; font-weight: 400; }
.checklist-paket li::before { content: "\f00c"; font-family: "Font Awesome 5 Free"; font-weight: 900; color: var(--primary-color); position: absolute; left: 0; top: 0; font-size: 15px; }

/* Testimoni Video & Gambar */
.video-container { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 15px; }
.video-container video { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); background-color: #000; }
.grid-testi { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.grid-testi img { width: 100%; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }

/* Blog & Archive */
.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; }
.post-card { background: var(--white); border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); overflow: hidden; display: flex; flex-direction: column; }
.post-card img { width: 100%; height: 120px; object-fit: cover; }
.post-card-content { padding: 12px; flex: 1; display: flex; flex-direction: column; }
.post-card-title { font-size: 13px; font-weight: 700 !important; margin-bottom: 5px; color: var(--secondary-color); line-height: 1.4; }
.post-card-excerpt { font-size: 11px; color: #666; line-height: 1.5; }

.pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pagination .page-numbers { padding: 8px 14px; background: var(--bg-light); color: var(--secondary-color); border-radius: 5px; font-weight: 700; font-size: 14px; border: 1px solid #eee; }
.pagination .current, .pagination .page-numbers:hover { background: var(--primary-color); color: var(--white); border-color: var(--primary-color); }

/* Konten Classic Editor */
.entry-content { font-size: 15px; color: #444; line-height: 1.8; }
.entry-content p { margin-bottom: 15px; }
.entry-content h2, .entry-content h3 { margin: 25px 0 15px; color: var(--secondary-color); font-weight: 700 !important; }
.entry-content ul, .entry-content ol { margin-bottom: 15px; padding-left: 20px; }
.entry-content li { margin-bottom: 8px; }
.entry-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 15px 0; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.entry-content a { color: var(--link-blue); text-decoration: underline; font-weight: 700; }
.entry-content a:hover { color: var(--primary-color); }

/* Footer */
.site-footer { background-color: var(--secondary-color); color: var(--white); padding: 30px 20px; text-align: center; margin-top: 40px; }
.site-footer h3 { color: var(--primary-color); margin-bottom: 15px; font-size: 20px; font-weight: 800 !important; }
.site-footer a { color: var(--primary-color); margin: 0 10px; font-size: 22px; }
.site-footer a:hover { color: var(--white); }
.footer-info { font-size: 13px; color: #e0e0e0; }