:root {
    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --color-primary: #16294f;
    --color-primary-dark: #0f1f3d;
    --color-accent: #c9a227;
    --color-bg: #f7f6f2;
    --color-card: #ffffff;
    --color-text: #23291f;
    --color-muted: #6b7268;
    --color-border: #e2e0d8;
    --color-danger: #b3261e;
    --color-success: #1e7a34;
    --radius: 10px;

    /* ---- Palet moden (navy + emas) -- Fasa 1 ---- */
    --navy-900: #0f1f3d;
    --navy-800: #16294f;
    --navy-700: #1d3563;
    --gold-500: #d4a017;
    --gold-600: #b8890f;
    --gold-100: #fbf1d9;
    --mint-bg: #e3f5ea;
    --mint-fg: #1e8a4c;
    --amber-bg: #fdf1de;
    --amber-fg: #b8890f;
    --red-bg: #fde9e8;
    --red-fg: #c0392b;
    --navy-bg: #e5eaf4;
    --navy-fg: #16294f;
    --surface-page: #f4f6f9;
    --surface-card: #ffffff;
    --border-soft: #e7e9ee;
    --radius-lg: 14px;
    --shadow-card: 0 1px 3px rgba(15, 31, 61, 0.06), 0 1px 2px rgba(15, 31, 61, 0.04);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--surface-page);
    color: var(--color-text);
    line-height: 1.55;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }

.container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Header ---- */
.site-header {
    background: var(--color-primary);
    color: #fff;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 14px 20px;
}
.brand {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand-logo {
    height: 36px;
    width: 36px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 2px;
}
.main-nav a, .main-nav .link-button {
    color: #fdf9ef;
    text-decoration: none;
    margin-left: 18px;
    font-size: 0.95rem;
}
.main-nav a:hover, .main-nav .link-button:hover { text-decoration: underline; }
.inline-form { display: inline; }
.link-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

/* ---- Layout ---- */
.page-content { padding: 32px 20px 60px; min-height: 60vh; }
.card {
    background: var(--surface-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 28px;
    margin-bottom: 24px;
}
.card h1, .card h2 { margin-top: 0; }

h1 { font-size: clamp(1.3rem, 1.05rem + 1.1vw, 1.6rem); }
h2 { font-size: clamp(1.1rem, 0.95rem + 0.7vw, 1.25rem); }

/* ---- Forms ---- */
.form-group { margin-bottom: 18px; }
label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.92rem;
}
.hint { color: var(--color-muted); font-size: 0.85rem; margin-top: 4px; }
input[type=text], input[type=email], input[type=tel], input[type=password],
input[type=date], select, textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
}
input:focus, select:focus, textarea:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 1px;
}
.field-error { color: var(--color-danger); font-size: 0.85rem; margin-top: 4px; }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.checkbox-group input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    flex-shrink: 0;
    margin: 1px 0 0;
    padding: 0;
    border: 2px solid var(--color-border, #ccc);
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    position: relative;
    display: inline-block;
    -webkit-tap-highlight-color: transparent;
}
.checkbox-group input[type=checkbox]:checked {
    background: var(--gold-600, var(--color-primary));
    border-color: var(--gold-600, var(--color-primary));
}
.checkbox-group input[type=checkbox]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.checkbox-group input[type=checkbox]:focus-visible {
    outline: 2px solid var(--gold-600, var(--color-primary));
    outline-offset: 2px;
}
.checkbox-group label { cursor: pointer; -webkit-tap-highlight-color: transparent; }
fieldset { border: 1px solid var(--color-border); border-radius: 8px; margin-bottom: 18px; padding: 16px; }
legend { font-weight: 700; padding: 0 8px; }

.btn {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
}
.btn:hover { background: var(--color-primary-dark); }
.btn-secondary { background: #fff; color: var(--color-primary); border: 1px solid var(--color-primary); }
.btn-secondary:hover { background: #f0f5f2; }
.btn-danger { background: var(--color-danger); }
.btn-danger:hover { background: #8f1e18; }
.btn-sm { padding: 6px 14px; font-size: 0.85rem; }

/* ---- Sasaran sentuh lebih besar pada skrin sentuh (mobile/tablet) ---- */
@media (max-width: 900px) {
    .btn-sm { padding: 9px 16px; font-size: 0.88rem; min-height: 38px; }
    .btn { min-height: 42px; }
    .actions-row { gap: 8px; row-gap: 10px; }
}


/* ---- Alerts ---- */
.alert { padding: 12px 16px; border-radius: 6px; margin-bottom: 18px; font-size: 0.95rem; }
.alert-success { background: #e6f4ea; color: var(--color-success); border: 1px solid #b7ddc3; }
.alert-error { background: #fbe9e7; color: var(--color-danger); border: 1px solid #f0bdb8; }
.alert-info { background: #eaf1fb; color: #1a4c8b; border: 1px solid #c3d9f2; }

/* ---- Table ---- */
table { width: 100%; border-collapse: collapse; margin-top: 12px; }
@media (max-width: 780px) {
    table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; min-width: 0; }
    table > * { min-width: 560px; }
}
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--color-border); font-size: 0.92rem; }
th { background: #f0efe9; font-weight: 700; }
tr:hover td { background: #fafaf7; }

.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 0.78rem; font-weight: 600; }
.badge-menunggu { background: #fdf2d9; color: #8a6100; }
.badge-diluluskan { background: #e6f4ea; color: var(--color-success); }
.badge-ditolak { background: #fbe9e7; color: var(--color-danger); }

/* ---- Misc ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
@media (max-width: 640px) { .grid-2 { grid-template-columns: 1fr; } }

.stat-cards { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.stat-card { flex: 1; min-width: 140px; background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 18px; text-align: center; }
.stat-card .num { font-size: 1.8rem; font-weight: 700; color: var(--color-primary); }
.stat-card .label { color: var(--color-muted); font-size: 0.85rem; }

.pin-display {
    font-size: 1.8rem;
    letter-spacing: 6px;
    font-weight: 700;
    color: var(--color-primary-dark);
    background: #f0f5f2;
    padding: 14px 20px;
    border-radius: 8px;
    display: inline-block;
    margin: 12px 0;
}

.site-footer { background: var(--color-primary-dark); color: #cfe3d8; padding: 20px; margin-top: 40px; font-size: 0.82rem; }
.footer-note { opacity: 0.85; margin-top: 6px; }

.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.filter-bar select, .filter-bar input { width: auto; }

.actions-row { display: flex; gap: 8px; flex-wrap: wrap; }

/* =========================================================
   FASA 1: Reka Bentuk Moden -- Auth Split-Screen + Admin Shell
   ========================================================= */

/* ---- Auth (log masuk) split-screen ---- */
.auth-page {
    min-height: 100vh;
    display: flex;
    background: var(--surface-page);
}
.auth-panel-left {
    flex: 1.1;
    background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 100%);
    color: #fff;
    padding: 56px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-width: 0;
}
.auth-panel-left::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}
.auth-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
    object-fit: contain;
    margin-bottom: 28px;
}
.auth-headline {
    font-size: clamp(1.3rem, 1rem + 1.5vw, 1.7rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 14px;
    max-width: 460px;
}
.auth-subtext {
    color: #cbd4e6;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 440px;
    margin: 0 0 36px;
}
.auth-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.auth-stats .stat-num { font-size: 1.4rem; font-weight: 700; color: #fff; }
.auth-stats .stat-label { font-size: 0.8rem; color: #a9b4cc; margin-top: 2px; }

.auth-panel-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    min-width: 0;
}
.auth-form-box { width: 100%; max-width: 380px; }
.auth-form-box h1 { font-size: clamp(1.2rem, 1rem + 1vw, 1.5rem); margin: 0 0 6px; }
.auth-form-box .auth-lead { color: var(--color-muted); font-size: 0.92rem; margin: 0 0 28px; }
.auth-form-box label { font-size: 0.85rem; }
.auth-form-box input {
    border-radius: 8px;
    padding: 11px 14px;
}
.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0 16px;
    color: var(--color-muted);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-soft);
}
.auth-secondary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border: 1px solid var(--border-soft);
    background: #fff;
    color: var(--navy-800);
    padding: 11px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 600;
}
.auth-secondary-btn:hover { background: var(--surface-page); }
.auth-submit {
    width: 100%;
    background: var(--navy-800);
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}
.auth-submit:hover { background: var(--navy-900); }
.auth-forgot { text-align: center; margin-top: 14px; }
.auth-forgot a { color: var(--color-muted); font-size: 0.85rem; text-decoration: none; }
.auth-forgot a:hover { text-decoration: underline; }

@media (max-width: 860px) {
    .auth-panel-left { display: none; }
    .auth-panel-right { flex: 1; }
}

/* ---- Admin shell (sidebar + topbar) ---- */
.admin-shell { display: flex; min-height: 100vh; background: var(--surface-page); }
.admin-sidebar {
    width: 264px;
    flex-shrink: 0;
    background: var(--navy-900);
    color: #cbd4e6;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}
.admin-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-sidebar-brand img { width: 38px; height: 38px; border-radius: 50%; background: #fff; padding: 2px; object-fit: contain; }
.admin-sidebar-brand .brand-title { font-size: 0.92rem; font-weight: 700; color: #fff; line-height: 1.3; }
.admin-sidebar-brand .brand-subtitle { font-size: 0.72rem; color: #93a0bd; }

.admin-nav { padding: 16px 12px; flex: 1; }
.admin-nav-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6d7ba0;
    padding: 14px 12px 6px;
    font-weight: 700;
}
.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #cbd4e6;
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 2px;
}
.admin-nav-link:hover { background: rgba(255,255,255,0.06); color: #fff; }
.admin-nav-link.active { background: var(--gold-500); color: var(--navy-900); font-weight: 700; }
.admin-nav-link svg { flex-shrink: 0; width: 18px; height: 18px; }

.admin-topbar {
    background: #fff;
    border-bottom: 1px solid var(--border-soft);
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 5;
}
.admin-topbar-left a { color: var(--color-muted); text-decoration: none; font-size: 0.85rem; display: flex; align-items: center; gap: 6px; }
.admin-topbar-right { display: flex; align-items: center; gap: 14px; }
.admin-user-chip { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--color-text); }
.role-badge {
    background: var(--navy-800);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 999px;
}
.admin-main { flex: 1; padding: 28px; min-width: 0; }
.admin-page-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; flex-wrap: wrap; gap: 12px; }
.admin-page-header h1 { margin: 0 0 4px; font-size: clamp(1.15rem, 1rem + 0.8vw, 1.4rem); }
.admin-page-header p { margin: 0; color: var(--color-muted); font-size: 0.9rem; }
.admin-page-date { color: var(--color-muted); font-size: 0.85rem; }

/* ---- Kad statistik moden ---- */
.stat-grid-v2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-bottom: 24px; }
.stat-card-v2 {
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 20px;
}
.stat-icon-box {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.stat-icon-box svg { width: 22px; height: 22px; }
.stat-icon-navy { background: var(--navy-bg); color: var(--navy-fg); }
.stat-icon-gold { background: var(--amber-bg); color: var(--amber-fg); }
.stat-icon-mint { background: var(--mint-bg); color: var(--mint-fg); }
.stat-icon-red { background: var(--red-bg); color: var(--red-fg); }
.stat-card-v2 .stat-label-v2 { font-size: 0.82rem; color: var(--color-muted); margin-bottom: 4px; }
.stat-card-v2 .stat-value-v2 { font-size: 1.55rem; font-weight: 700; color: var(--color-text); }
.stat-card-v2 .stat-sub { font-size: 0.78rem; color: var(--color-muted); margin-top: 4px; }
.stat-card-v2 .stat-sub a { color: var(--navy-700); text-decoration: none; font-weight: 600; }

.panel-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 18px; }
@media (max-width: 900px) { .panel-grid { grid-template-columns: 1fr; } }
.panel-v2 {
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 22px;
}
.panel-v2-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.panel-v2-header h2 { margin: 0; font-size: 1rem; font-family: var(--font-display); font-weight: 600; }
.panel-v2-header .panel-year { color: var(--color-muted); font-size: 0.85rem; }

/* ---- Breakpoint tablet: kekalkan sidebar tapi kurangkan jarak/saiz ---- */
@media (max-width: 1024px) and (min-width: 781px) {
    .admin-sidebar { width: 220px; }
    .admin-main { padding: 22px; }
    .stat-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
    .admin-sidebar { position: fixed; left: -264px; z-index: 20; transition: left 0.2s; }
    .admin-sidebar.terbuka { left: 0; }
    .admin-main { padding: 18px; }
    .admin-topbar { padding: 12px 16px; }
    .sidebar-toggle { display: inline-flex !important; }
    .sidebar-overlay.terbuka { display: block; }
    .stat-grid-v2 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .admin-page-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .admin-user-chip { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .role-badge { display: none; }
    .stat-grid-v2 { grid-template-columns: 1fr; }
    .admin-topbar-left a span { display: none; }
}
.sidebar-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border-soft);
    background: #fff;
    cursor: pointer;
    margin-right: 8px;
}
.sidebar-toggle svg { width: 20px; height: 20px; color: var(--navy-800); }
.sidebar-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(15,31,61,0.4);
    z-index: 15;
}

/* ---- Responsif: nav awam & borang ---- */
@media (max-width: 640px) {
    .header-inner { flex-wrap: wrap; gap: 10px; }
    .main-nav { display: flex; flex-wrap: wrap; gap: 4px; }
    .main-nav a, .main-nav .link-button, .nav-cta { margin-left: 0; }
    .hero-v2 { padding: 32px 22px; }
    .auth-form-box { max-width: 100%; }
}

/* =========================================================
   FASA 3: Nav Awam Moden + Halaman Awam/Ahli
   ========================================================= */
.site-header-v2 {
    background: #fff;
    border-bottom: 1px solid var(--border-soft);
    position: sticky;
    top: 0;
    z-index: 10;
}
.site-header-v2 .header-inner { padding: 14px 20px; }
.site-header-v2 .brand { color: var(--navy-900); }
.site-header-v2 .brand-logo { background: #fff; border: 1px solid var(--border-soft); }
.site-header-v2 .main-nav a, .site-header-v2 .main-nav .link-button {
    color: var(--color-muted);
    font-weight: 500;
    margin-left: 22px;
}
.site-header-v2 .main-nav a:hover, .site-header-v2 .main-nav .link-button:hover { color: var(--navy-900); text-decoration: none; }
.nav-cta {
    background: var(--gold-500);
    color: var(--navy-900) !important;
    padding: 9px 18px;
    border-radius: 8px;
    font-weight: 700 !important;
    margin-left: 22px;
}
.nav-cta:hover { background: var(--gold-600); color: var(--navy-900) !important; }

.site-footer-v2 {
    background: var(--navy-900);
    color: #a9b4cc;
    padding: 24px 20px;
    margin-top: 48px;
    font-size: 0.82rem;
    text-align: center;
}
.site-footer-v2 .footer-note { opacity: 0.85; margin-top: 6px; }

/* ---- Hero laman utama ---- */
.hero-v2 {
    background:
        linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 56px 44px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
/* Motif bintang lapan-penjuru (corak geometri seni bina masjid tradisional)
   sebagai tekstur latar halus -- ciri unik reka bentuk, bukan sekadar hiasan */
.hero-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.10;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84' viewBox='0 0 84 84'%3E%3Cg fill='none' stroke='%23d4a017' stroke-width='1'%3E%3Cpath d='M42 4 L52 20 L70 12 L62 30 L80 34 L62 38 L70 56 L52 48 L42 64 L32 48 L14 56 L22 38 L4 34 L22 30 L14 12 L32 20 Z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 84px 84px;
}
.hero-v2::after {
    content: '';
    position: absolute;
    right: -70px; bottom: -70px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,160,23,0.14) 0%, rgba(212,160,23,0) 70%);
}
.hero-v2 .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--gold-500);
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 14px;
}
.hero-v2 .hero-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold-500); }
.hero-v2 h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.6rem, 1.15rem + 2vw, 2.5rem);
    line-height: 1.15;
    margin: 0 0 14px;
    max-width: 600px;
}
.hero-v2 p { color: #cbd4e6; max-width: 520px; margin: 0; font-size: 1.02rem; }

.action-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.action-card-v2 {
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 24px;
    text-align: left;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.action-card-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15,31,61,0.10), 0 2px 6px rgba(15,31,61,0.06);
}
.action-card-v2 .action-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.action-card-v2 .action-icon svg { width: 22px; height: 22px; }
.icon-inline { width: 1em; height: 1em; vertical-align: -0.15em; flex-shrink: 0; }
.btn svg, .auth-secondary-btn svg { width: 18px; height: 18px; vertical-align: -4px; flex-shrink: 0; }
.action-card-v2 h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; margin: 0 0 6px; }
.action-card-v2 p { color: var(--color-muted); font-size: 0.88rem; margin: 0 0 16px; }

/* ---- Kad Buletin / Makluman (papan notis moden) ---- */
.buletin-list { display: flex; flex-direction: column; gap: 14px; }
.buletin-card {
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--gold-500);
    box-shadow: var(--shadow-card);
    padding: 20px 22px;
    transition: box-shadow 0.18s ease;
}
.buletin-card:hover { box-shadow: 0 6px 16px rgba(15,31,61,0.09), 0 1px 3px rgba(15,31,61,0.05); }
.buletin-card .buletin-tarikh {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--gold-100);
    color: var(--gold-600);
    font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}
.buletin-card h3, .buletin-card h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    margin: 0 0 10px;
    color: var(--navy-900);
}
.buletin-card .buletin-gambar {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 12px;
    display: block;
    box-shadow: 0 1px 4px rgba(15,31,61,0.10);
}
.buletin-card .buletin-teks { margin: 0; color: var(--color-text); line-height: 1.65; }
.buletin-card .buletin-teks:not(:last-child) { margin-bottom: 8px; }

/* ---- Butang/Banner Infaq (InfaqPay) ---- */
.infaq-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--navy-900);
    font-weight: 700;
    padding: 13px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(212, 160, 23, 0.35);
    transition: transform 0.15s;
}
.infaq-cta:hover { transform: translateY(-1px); text-decoration: none; color: var(--navy-900); }
.infaq-cta svg { width: 20px; height: 20px; flex-shrink: 0; }

.infaq-cta-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1.5px solid var(--gold-500);
    color: var(--gold-600);
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.88rem;
    margin-top: 16px;
}
.infaq-cta-outline:hover { background: var(--gold-100); text-decoration: none; }
.infaq-cta-outline svg { width: 16px; height: 16px; }
