/* =========================================
   1. BASE (Variables, Reset, Typography)
   ========================================= */
:root {
    /* --- Brand Colors --- */
    --primary: #215d3e;       
    --primary-dark: #0a2e27;  
    --gold: #c5a059;          
    --gold-light: #e0c285;    
    
    /* --- Backgrounds --- */
    --bg-body: #f8f9fa;       
    --bg-surface: #ffffff;
    --bg-alt: #f4f6f5; 
    
    /* --- Typography Colors --- */
    --text-heading: #000000;  
    --text-body: #111111;     
    
    /* --- Measurements --- */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    
    /* --- Effects --- */
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.482); 
    --shadow-subtle: 0 4px 15px rgba(0, 0, 0, 0.302);
    --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);

    /* --- Fonts (Default Arabic) --- */
    --f-heading: 'Amiri', serif;
    --f-body: 'Tajawal', sans-serif;
}

/* Override untuk Bahasa Latin (ID/EN/MY) */
html[dir="ltr"] {
    --f-heading: 'Tajawal', sans-serif; 
    --f-body: 'Tajawal', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; outline: none; scroll-behavior: smooth; }

body { 
    font-family: var(--f-body); 
    background-color: var(--bg-body); 
    color: var(--text-body); 
    line-height: 1.8; 
    overflow-x: hidden;
    font-weight: 500; 
}

/* Typography Standard */
h1, h2, h3 { font-family: var(--f-heading); color: var(--primary); line-height: 1.3; font-weight: 700; }

h4 { 
    font-family: var(--f-heading); 
    color: var(--primary); 
    line-height: 1.9; 
    font-weight: 700; 
    font-size: 1.6rem; 
} 
h5 { font-size: 1.3rem; font-weight: 700; }

p { font-size: 1.25rem; margin-bottom: 1rem; text-align: justify; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Section Utilities */
.section { padding: 90px 0; background-color: var(--bg-surface); }
.section.bg-alt { background-color: var(--bg-alt); border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); }
.section.bg-light { background-color: #fff; }

.section-title { 
    font-size: 2.8rem; color: var(--primary); margin-bottom: 40px; 
    position: relative; display: inline-block; text-align: center; font-weight: 800; 
}
.section-title::after {
    content: ''; display: block; width: 80px; height: 4px; 
    background: var(--gold); margin: 15px auto 0; border-radius: 2px;
}
.section-tag {
    color: var(--gold); font-weight: 800; text-transform: uppercase;
    letter-spacing: 1px; font-size: 1.5rem; display: block; margin-bottom: 15px;
}
.center-title { text-align: center; width: 100%; display: block; }
.text-center { text-align: center !important; }