/* ==========================================================================
   JIWAMU DESIGN SYSTEM — FINAL
   Typography: Outfit (heading) + Inter (body)
   Colors: Accent #315CF0, Deep #0D3B8C, Heading #0F172A, Body #5F6B7A
   Feel: calm, editorial, premium, breathable, human-centered
   ========================================================================== */

:root {
    --accent: #315CF0;
    --accent-deep: #0D3B8C;
    --heading: #0F172A;
    --body: #5F6B7A;
    --border: #E8E8E8;
    --bg: #FAF9F7;
    --card: #FFFFFF;
    --font-h: 'Outfit', sans-serif;
    --font-b: 'Inter', sans-serif;
    --r-sm: 12px;
    --r-md: 20px;
    --r-lg: 28px;
    --r-full: 9999px;
    --shadow: 0 4px 20px rgba(0,0,0,.04);
    --shadow-h: 0 8px 30px rgba(0,0,0,.06);
    --ease: all .3s cubic-bezier(.4,0,.2,1);
    --max: 1200px;
}

body {
    font-family: var(--font-b);
    color: var(--body);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-h);
    color: var(--heading);
    letter-spacing: -.02em;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.jiwamu-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--r-full);
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 14.5px;
    transition: var(--ease);
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.jiwamu-btn-primary:hover { background: var(--accent-deep); color: #fff; }

.jiwamu-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--heading);
    padding: 14px 28px;
    border-radius: var(--r-full);
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 14.5px;
    border: 1.5px solid var(--border);
    transition: var(--ease);
    text-decoration: none;
}
.jiwamu-btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ==========================================================================
   LINKS
   ========================================================================== */
.jiwamu-link {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--accent);
    transition: opacity .2s;
    text-decoration: none;
}
.jiwamu-link:hover { opacity: .6; }

/* ==========================================================================
   CARDS
   ========================================================================== */
.jiwamu-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 34px;
    transition: var(--ease);
}
.jiwamu-card:hover {
    box-shadow: var(--shadow-h);
    border-color: transparent;
}

/* ==========================================================================
   SECTION LABELS
   ========================================================================== */
.jiwamu-section-label {
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--body);
    margin-bottom: 12px;
}

.jiwamu-section-title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

/* ==========================================================================
   BADGES
   ========================================================================== */
.jiwamu-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    width: fit-content;
}
.jiwamu-badge-blue { background: #EAF2FF; color: var(--accent-deep); }
.jiwamu-badge-warm { background: #FEF3E8; color: #B45309; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.jiwamu-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    font-family: var(--font-b);
    font-size: 14px;
    margin-bottom: 11px;
    transition: var(--ease);
    background: var(--bg);
}
.jiwamu-input:focus { outline: none; border-color: var(--accent); background: #fff; }
.jiwamu-input::placeholder { color: #9CA3AF; }

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.jiwamu-faq-item { border-bottom: 1px solid var(--border); }
.jiwamu-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    font-family: var(--font-b);
    font-size: 16px;
    font-weight: 500;
    color: var(--heading);
    cursor: pointer;
    text-align: left;
    transition: color .2s;
}
.jiwamu-faq-question:hover { color: var(--accent); }
.jiwamu-faq-question svg { transition: transform .3s; flex-shrink: 0; margin-left: 16px; stroke: var(--body); }
.jiwamu-faq-question[aria-expanded="true"] svg { transform: rotate(180deg); }
.jiwamu-faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; color: var(--body); line-height: 1.8; font-size: 15px; }
.jiwamu-faq-answer.active { max-height: 600px; padding-bottom: 24px; }

/* ==========================================================================
   DONATION PROGRESS
   ========================================================================== */
.jiwamu-donasi-bar { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; margin: 16px 0 8px; }
.jiwamu-donasi-fill { height: 100%; background: var(--accent); border-radius: 4px; transition: width 1.2s ease; }
.jiwamu-donasi-info { display: flex; justify-content: space-between; font-size: 13px; color: var(--body); }

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */
.jiwamu-floating-wa {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37,211,102,.28);
    transition: var(--ease);
    z-index: 9999;
    text-decoration: none;
}
.jiwamu-floating-wa:hover { transform: scale(1.05); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    .jiwamu-btn-primary, .jiwamu-btn-secondary {
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }
}
