﻿/* Alternative 3 - Corporate Professional Design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Telkom University Color Palette */
    --primary-red: #e30613;
    --primary-dark: #b71c1c;
    --primary-light: #ff5252;
    --secondary-red: #c62828;
    --accent-gold: #ffc107;
    --accent-blue: #1976d2;
    --neutral-dark: #212121;
    --neutral-gray: #757575;
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-light: #f5f5f5;
    --text-primary: #212121;
    --text-secondary: #757575;
    --text-muted: #9e9e9e;
    --border-color: #e0e0e0;
    --shadow-xs: 0 1px 2px 0 rgba(227, 6, 19, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(227, 6, 19, 0.1), 0 1px 2px -1px rgba(227, 6, 19, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(227, 6, 19, 0.1), 0 2px 4px -2px rgba(227, 6, 19, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(227, 6, 19, 0.1), 0 4px 6px -4px rgba(227, 6, 19, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(227, 6, 19, 0.1), 0 8px 10px -6px rgba(227, 6, 19, 0.1);
    --font-body: 'Nunito Sans', sans-serif;
    --font-display: 'Cormorant Garamond', serif;
}

html {
    font-size: 15px;
}

body {
    font-family: var(--font-body);
    background:
        radial-gradient(circle at 8% 0%, rgba(227, 6, 19, 0.10) 0%, rgba(227, 6, 19, 0) 36%),
        radial-gradient(circle at 92% 18%, rgba(255, 193, 7, 0.16) 0%, rgba(255, 193, 7, 0) 34%),
        linear-gradient(180deg, #fffdfd 0%, #f8f9fc 46%, #f3f5fa 100%);
    color: var(--text-primary);
    line-height: 1.55;
    overflow-x: hidden;
    position: relative;
}

body::before,
body::after {
    content: '';
    position: fixed;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(30px);
    opacity: 0.34;
}

body::before {
    top: -70px;
    right: -60px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.55) 0%, rgba(227, 6, 19, 0) 70%);
}

body::after {
    bottom: -90px;
    left: -70px;
    background: radial-gradient(circle, rgba(25, 118, 210, 0.45) 0%, rgba(25, 118, 210, 0) 70%);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    letter-spacing: 0.15px;
}

.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 18px 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.brand-logo {
    height: 42px;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

/* Desktop Navigation Menu */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.navbar-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.navbar-link:hover {
    color: var(--primary-red);
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.navbar-link:hover::after {
    width: 100%;
}

.navbar-link.active {
    color: var(--primary-red);
}

.navbar-link.active::after {
    width: 100%;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c20510 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(227, 6, 19, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c20510 0%, #a00408 100%);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.5);
    transform: translateY(-2px);
}

.btn-icon {
    display: flex;
    align-items: center;
}

.btn-icon svg {
    width: 20px;
    height: 20px;
}

/* Main Content jarak antar section top & bottom*/
.main-content {
    flex: 1;
    padding: 24px 0 32px;
    position: relative;
}

.main-content::before {
    content: '';
    position: absolute;
    inset: 8px 0 auto;
    height: 220px;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(227, 6, 19, 0.08) 0%, rgba(227, 6, 19, 0) 48%),
        radial-gradient(circle at 78% 35%, rgba(25, 118, 210, 0.07) 0%, rgba(25, 118, 210, 0) 45%);
}

/* Hero Section */
.hero-section {
    margin: 10px 0;
    position: relative;
    isolation: isolate;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: -12px -16px auto;
    height: 150px;
    border-radius: 26px;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 40%, rgba(227, 6, 19, 0.16), transparent 46%),
        radial-gradient(circle at 78% 35%, rgba(255, 193, 7, 0.18), transparent 42%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.hero-slider {
    background: linear-gradient(135deg, #8b0000 0%, #a80000 50%, #b71c1c 100%);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 280px;
    box-shadow: var(--shadow-xl);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding: 35px;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(100, 0, 0, 0.92) 0%, rgba(139, 0, 0, 0.88) 50%, rgba(168, 0, 0, 0.85) 100%);
}

.slide-content-wrapper {
    position: relative;
    z-index: 1;
    color: white;
}

.slide-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.95;
    font-weight: 400;
}

.hero-navigation {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.nav-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.nav-arrow svg {
    width: 16px;
    height: 16px;
}

.hero-pagination {
    display: flex;
    gap: 8px;
}

.pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    width: 28px;
    border-radius: 4px;
    background: white;
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Performance Panel */
.performance-panel {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.panel-header {
    text-align: center;
    margin-bottom: 16px;
}

.panel-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.panel-divider {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-light));
    margin: 0 auto;
    border-radius: 2px;
}

.performance-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.performance-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px;
    background: var(--bg-secondary);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.performance-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-red);
}

.performance-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.performance-icon svg {
    width: 22px;
    height: 22px;
    color: white;
    stroke-width: 2.5;
}

.icon-blue {
    background: linear-gradient(135deg, #78909c, #546e7a);
}

.icon-purple {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.icon-green {
    background: linear-gradient(135deg, #34d399, #10b981);
}

.icon-red {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
}

.icon-gold {
    background: linear-gradient(135deg, var(--accent-gold), #ffa000);
}

.performance-data {
    flex: 1;
}

.data-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 3px;
    line-height: 1;
}

.data-label {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 6px;
}

.data-growth {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 500;
}

.data-growth svg {
    width: 13px;
    height: 13px;
}

.data-growth.positive {
    color: #10b981;
}

.data-growth.info {
    color: var(--text-muted);
}

/* ==================== Gallery Section (Penyaluran Manfaat) ==================== */
.gallery-section-fullwidth {
    margin-top: 16px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.gallery-header {
    text-align: center;
    margin-bottom: 24px;
}

.gallery-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue));
    border-radius: 2px;
}

.gallery-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 12px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-thumbnail img {
    transform: scale(1.1);
}

.gallery-video {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.8);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 48px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

.gallery-action {
    color: white;
    font-size: 14px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 16px;
    border-radius: 20px;
    text-align: center;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-action {
    transform: translateY(0);
    opacity: 1;
}

.gallery-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-decoration: none;
    display: block;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-thumbnail img {
    transform: scale(1.1);
}

.gallery-video {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.8);
}

.gallery-info {
    padding: 20px;
    background: white;
}

.gallery-item-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.gallery-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Gallery Slider */
.gallery-slider-wrapper {
    overflow: hidden;
    border-radius: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-slider .gallery-item {
    min-width: 33.333%;
    padding: 0 12px;
    box-sizing: border-box;
}

/* Slider Controls (Bottom) */
.gallery-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-slider-btn {
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gallery-slider-btn:hover {
    background: var(--primary-red);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.3);
    transform: scale(1.1);
}

.gallery-slider-btn svg {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.gallery-slider-btn:hover svg {
    color: white;
}

.gallery-slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-dot:hover {
    background: rgba(227, 6, 19, 0.5);
    transform: scale(1.2);
}

.gallery-dot.active {
    background: var(--primary-red);
    width: 32px;
    border-radius: 6px;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.video-container h3 {
    position: relative;
    padding-bottom: 0;
    margin-bottom: 16px;
}

.video-modal-close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10001;
}

.video-modal-close:hover,
.video-modal-close:focus {
    color: #bbb;
    text-decoration: none;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
}

#lightboxCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 600;
}

/* ==================== News Section (Full Width) ==================== */
.news-section-fullwidth {
    margin-top: 16px;
    position: relative;
    isolation: isolate;
}

.news-section-fullwidth::before {
    content: '';
    position: absolute;
    inset: -10px -8px auto;
    height: 120px;
    z-index: -1;
    pointer-events: none;
    border-radius: 20px;
    background:
        repeating-linear-gradient(135deg, rgba(25, 118, 210, 0.10) 0 8px, rgba(25, 118, 210, 0) 8px 20px),
        radial-gradient(circle at 88% 40%, rgba(227, 6, 19, 0.12), transparent 42%);
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: var(--shadow-lg);
}

.news-header {
    margin-bottom: 20px;
    text-align: center;
}

.news-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.news-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
    border-radius: 2px;
}

.news-slider-wrapper {
    overflow: hidden;
    border-radius: 12px;
    max-width: 1400px;
    margin: 0 auto;
}

.news-slider {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease-in-out;
}

.news-slider .news-card {
    flex: 0 0 25%;
    padding: 0 10px;
    box-sizing: border-box;
}

.news-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-red);
}

.news-card:active {
    transform: translateY(-3px);
}

.news-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.news-img-1 {
    background-image: url('../images/beasiswa.png');
}

.news-img-2 {
    background-image: url('../images/penghargaan.png');
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-thumbnail {
    background-size: 105%;
}

.news-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-red);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(227, 6, 19, 0.3);
}

.news-content {
    padding: 20px;
}

.news-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 18px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.news-slider-btn {
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.news-slider-btn:hover {
    background: var(--primary-red);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.3);
    transform: scale(1.1);
}

.news-slider-btn svg {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.news-slider-btn:hover svg {
    color: white;
}

.news-slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.news-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.news-dot:hover {
    background: rgba(227, 6, 19, 0.5);
    transform: scale(1.2);
}

.news-dot.active {
    background: var(--primary-red);
    width: 32px;
    border-radius: 6px;
}

.news-card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-date {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-date::before {
    content: 'ðŸ“…';
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    margin-top: 14px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 25px;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-box {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 20px 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.contact-icon-wrapper {
    margin-bottom: 14px;
}

.contact-icon-bg {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.contact-icon-bg svg {
    width: 24px;
    height: 24px;
    color: white;
    stroke-width: 2.5;
}

.icon-bg-red {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
}

.icon-bg-blue {
    background: linear-gradient(135deg, var(--accent-blue), #1565c0);
}

.icon-bg-green {
    background: linear-gradient(135deg, #34d399, #10b981);
}

.icon-bg-gold {
    background: linear-gradient(135deg, var(--accent-gold), #ffa000);
}

.contact-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-text {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Social Media Section */
.social-media-section {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid var(--border-color);
}

.social-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.social-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.social-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 650px;
    margin: 0 auto;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.social-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.social-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.social-icon svg {
    width: 25px;
    height: 25px;
    color: white;
}

.social-content {
    flex: 1;
}

.social-name {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.social-handle {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    margin-top: 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-link {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-red);
}

.footer-separator {
    color: var(--text-muted);
    font-size: 12px;
}

/* Mobile Bottom Navigation */
/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    order: -1;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-menu span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Sidebar Menu */
.mobile-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    pointer-events: none;
}

.mobile-sidebar.active {
    pointer-events: auto;
}

.mobile-sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-sidebar.active .mobile-sidebar-overlay {
    opacity: 1;
}

.mobile-sidebar-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    max-width: 80vw;
    background: white;
    box-shadow: 2px 0 16px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-sidebar.active .mobile-sidebar-content {
    transform: translateX(0);
}

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.sidebar-logo {
    height: 36px;
}

.close-sidebar {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.close-sidebar:hover {
    color: var(--primary-red);
}

.close-sidebar svg {
    width: 24px;
    height: 24px;
}

.mobile-sidebar-menu {
    flex: 1;
    padding: 16px 0;
}

.mobile-menu-link {
    display: block;
    padding: 16px 24px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: var(--primary-red);
    background: rgba(227, 6, 19, 0.05);
    border-left-color: var(--primary-red);
}

.mobile-sidebar-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.btn-donate-mobile {
    width: 100%;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .performance-panel {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    /* Show hamburger menu */
    .hamburger-menu {
        display: flex;
        order: -1;
        margin-right: auto;
    }
    
    /* Show mobile sidebar */
    .mobile-sidebar {
        display: block;
    }
    
    /* Hide desktop menu and donate button */
    .navbar-menu,
    .navbar-actions {
        display: none;
    }
    
    /* Adjust navbar content for mobile */
    .navbar-content {
        justify-content: center;
        position: relative;
    }
    
    .brand {
        order: 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .navbar-content {
        justify-content: center;
        gap: 0;
    }
    
    .brand-logo {
        height: 38px;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        margin: 8px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-slider {
        min-height: 240px;
    }
    
    .hero-slide {
        padding: 28px 22px;
    }
    
    .slide-badge {
        font-size: 8px;
        padding: 3px 10px;
        margin-bottom: 10px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .hero-description {
        font-size: 12px;
    }
    
    .hero-navigation {
        bottom: 15px;
        gap: 12px;
    }
    
    .nav-arrow {
        width: 28px;
        height: 28px;
    }
    
    .nav-arrow svg {
        width: 14px;
        height: 14px;
    }
    
    .pagination-dot {
        width: 6px;
        height: 6px;
    }
    
    .pagination-dot.active {
        width: 22px;
    }
    
    /* Performance Panel Mobile */
    .performance-panel {
        padding: 18px;
        min-height: 240px;
        margin-top: 20px;
    }
    
    .panel-title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .panel-divider {
        width: 35px;
        height: 2.5px;
    }
    
    .panel-header {
        margin-bottom: 14px;
    }
    
    .performance-grid {
        gap: 8px;
    }
    
    .performance-card {
        padding: 10px;
        gap: 9px;
    }
    
    .performance-icon {
        width: 36px;
        height: 36px;
    }
    
    .performance-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .data-value {
        font-size: 18px;
    }
    
    .data-label {
        font-size: 10px;
        margin-bottom: 5px;
    }
    
    .data-growth {
        font-size: 9px;
    }
    
    .data-growth svg {
        width: 12px;
        height: 12px;
    }
    
    /* News Section Tablet */
    @media (max-width: 1024px) {
        .news-slider .news-card {
            flex: 0 0 50%;
        }
        
        /* Gallery Slider Tablet - 2 items */
        .gallery-slider .gallery-item {
            min-width: 50%;
        }
        
        .gallery-slider-controls {
            gap: 20px;
        }
    }
    
    /* News Section Mobile */
    .news-section-fullwidth {
        margin-top: 12px;
        padding: 20px 16px;
    }
    
    .news-header {
        margin-bottom: 14px;
    }
    
    .news-title {
        font-size: 22px;
        padding-bottom: 10px;
    }
    
    .news-title::after {
        width: 50px;
        height: 2.5px;
    }
    
    .news-slider .news-card {
        flex: 0 0 100%;
        padding: 0;
    }
    
    .news-thumbnail {
        height: 180px;
    }
    
    .news-badge {
        font-size: 9px;
        padding: 3px 10px;
        top: 10px;
        right: 10px;
    }
    
    .news-content {
        padding: 16px;
    }
    
    .news-card-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .news-date {
        font-size: 12px;
    }

    .news-slider-controls {
        gap: 16px;
        margin-top: 14px;
    }

    .news-slider-btn {
        width: 40px;
        height: 40px;
    }

    .news-slider-btn svg {
        width: 20px;
        height: 20px;
    }

    .news-slider-dots {
        gap: 8px;
    }

    .news-dot {
        width: 8px;
        height: 8px;
    }

    .news-dot.active {
        width: 24px;
    }
    
    /* Gallery Section Mobile */
    .gallery-section-fullwidth {
        margin-top: 12px;
        padding: 22px 16px;
    }
    
    .gallery-header {
        margin-bottom: 16px;
    }
    
    .gallery-title {
        font-size: 22px;
        padding-bottom: 10px;
    }
    
    .gallery-title::after {
        width: 60px;
        height: 2.5px;
    }
    
    .gallery-subtitle {
        font-size: 13px;
        margin-top: 8px;
    }
    
    .gallery-slider .gallery-item {
        min-width: 100%;
        padding: 0;
    }
    
    .gallery-slider-controls {
        gap: 16px;
        margin-top: 14px;
    }
    
    .gallery-slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .gallery-slider-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .gallery-slider-dots {
        gap: 8px;
    }
    
    .gallery-dot {
        width: 8px;
        height: 8px;
    }
    
    .gallery-dot.active {
        width: 24px;
    }
    
    .gallery-thumbnail {
        height: 200px;
    }
    
    /* Video Modal Mobile */
    .video-modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 10px;
    }
    
    .video-modal-close {
        top: 5px;
        right: 15px;
        font-size: 40px;
    }
    
    .gallery-icon {
        font-size: 36px;
    }
    
    .gallery-info {
        padding: 16px;
    }
    
    .gallery-item-title {
        font-size: 16px;
    }
    
    .gallery-description {
        font-size: 13px;
    }
    
    .gallery-action {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    /* Lightbox Mobile */
    .lightbox-modal {
        padding: 20px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
    
    #lightboxCaption {
        font-size: 14px;
        width: 90%;
        padding: 12px 0;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        margin-top: 12px;
    }
    
    .section-header-center {
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .section-subtitle {
        font-size: 12px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .contact-box {
        padding: 18px 14px;
    }
    
    .contact-icon-wrapper {
        margin-bottom: 12px;
    }
    
    .contact-icon-bg {
        width: 46px;
        height: 46px;
    }
    
    .contact-icon-bg svg {
        width: 22px;
        height: 22px;
    }
    
    .contact-title {
        font-size: 14px;
        margin-bottom: 7px;
    }
    
    .contact-text {
        font-size: 11px;
        line-height: 1.5;
    }
    
    /* Social Media Mobile */
    .social-media-section {
        margin-top: 14px;
        padding-top: 14px;
    }
    
    .social-title {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .social-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .social-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .social-card {
        padding: 13px;
        gap: 10px;
    }
    
    .social-icon {
        width: 42px;
        height: 42px;
    }
    
    .social-icon svg {
        width: 23px;
        height: 23px;
    }
    
    .social-name {
        font-size: 13px;
    }
    
    .social-handle {
        font-size: 10px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 18px 0 100px;
        margin-top: 25px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-left p {
        font-size: 11px;
    }
    
    .footer-link {
        font-size: 11px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 11px;
    }
    
    .performance-card {
        padding: 8px;
        gap: 8px;
    }
    
    .performance-icon {
        width: 34px;
        height: 34px;
    }
    
    .performance-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .data-value {
        font-size: 16px;
    }
    
    .data-label {
        font-size: 9px;
    }
    
    .mobile-nav-item {
        min-width: 45px;
        padding: 8px 4px 6px;
    }
    
    .mobile-nav-icon {
        width: 26px;
        height: 26px;
        padding: 3px;
    }
    
    .mobile-nav-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .mobile-nav-label {
        font-size: 9px;
    }
    
    .nav-donate {
        width: 60px;
        height: 60px;
        top: -22px;
        border-width: 2.5px;
    }
    
    .nav-donate .mobile-nav-icon {
        width: 28px;
        height: 28px;
    }
    
    .nav-donate .mobile-nav-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .nav-donate .mobile-nav-label {
        font-size: 9px;
    }
}

/* Extra Extra Small Mobile */
@media (max-width: 360px) {
    .performance-card {
        padding: 7px;
        gap: 7px;
    }
    
    .performance-icon {
        width: 32px;
        height: 32px;
    }
    
    .performance-icon svg {
        width: 17px;
        height: 17px;
    }
    
    .data-value {
        font-size: 15px;
    }
    
    .data-label {
        font-size: 8px;
    }
    
    .mobile-nav-item {
        min-width: 40px;
        padding: 7px 2px 5px;
    }
    
    .mobile-nav-icon {
        width: 24px;
        height: 24px;
        padding: 2px;
    }
    
    .mobile-nav-icon svg {
        width: 21px;
        height: 21px;
    }
    
    .mobile-nav-label {
        font-size: 8px;
    }
    
    .nav-donate {
        width: 56px;
        height: 56px;
        top: -20px;
        border-width: 2px;
    }
    
    .nav-donate .mobile-nav-icon {
        width: 26px;
        height: 26px;
    }
    
    .nav-donate .mobile-nav-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .nav-donate .mobile-nav-label {
        font-size: 8px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slider,
.performance-panel,
.contact-box {
    animation: fadeInUp 0.8s ease-out;
}

.performance-panel {
    animation-delay: 0.2s;
}

.contact-box:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-box:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-box:nth-child(3) {
    animation-delay: 0.3s;
}
/* =============================================
   NEWS LIST PAGE
   ============================================= */

.news-list-section {
    margin: 30px 0 40px;
    position: relative;
    isolation: isolate;
}

.news-list-section::before {
    content: '';
    position: absolute;
    inset: -8px -10px auto;
    height: 130px;
    pointer-events: none;
    z-index: -1;
    border-radius: 20px;
    background:
        linear-gradient(120deg, rgba(227, 6, 19, 0.08), rgba(255, 193, 7, 0.07)),
        radial-gradient(circle at 22% 48%, rgba(255, 255, 255, 0.65), transparent 42%);
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* News Grid */
.news-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.news-list-card {
    background: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.news-list-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.news-list-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-list-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.news-list-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-list-card:hover .news-list-thumbnail img {
    transform: scale(1.08);
}

.news-list-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.news-img-1 {
    background-image: url('../images/beasiswa.png');
}

.news-img-2 {
    background-image: url('../images/penghargaan.png');
}

.news-list-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.news-list-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-red);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.news-list-content {
    padding: 24px;
}

.news-list-date {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.news-list-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-list-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-list-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.news-list-views {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.news-list-views svg {
    width: 16px;
    height: 16px;
}

.news-list-readmore {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-red);
    transition: gap 0.3s ease;
}

.news-list-card:hover .news-list-readmore {
    gap: 10px;
}

.news-list-readmore svg {
    width: 16px;
    height: 16px;
}

/* Empty State */
.news-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.news-empty-state svg {
    width: 80px;
    height: 80px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.news-empty-state h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.news-empty-state p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.btn-back-home {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* CTA Section */
.news-cta-section {
    margin: 40px 0;
}

.news-cta-card {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 16px;
    padding: 48px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: var(--shadow-xl);
}

.news-cta-content {
    flex: 1;
}

.news-cta-title {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.news-cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.news-cta-action {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-donate-large {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: white;
    color: var(--primary-red);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-donate-large svg {
    width: 20px;
    height: 20px;
}

.btn-donate-large:hover {
    background: var(--bg-secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-back-secondary {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-back-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive News List */
@media (max-width: 768px) {
    .news-list-section {
        margin: 20px 0 30px;
    }
    
    .page-header {
        margin-bottom: 30px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    .news-list-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-list-thumbnail {
        height: 180px;
    }
    
    .news-list-content {
        padding: 20px;
    }
    
    .news-list-title {
        font-size: 18px;
    }
    
    .news-cta-card {
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        text-align: center;
    }
    
    .news-cta-title {
        font-size: 22px;
    }
    
    .news-cta-text {
        font-size: 14px;
    }
    
    .news-cta-action {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-donate-large,
    .btn-back-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 24px;
    }
    
    .news-list-thumbnail {
        height: 160px;
    }
    
    .news-list-content {
        padding: 16px;
    }
    
    .news-list-title {
        font-size: 16px;
    }
    
    .news-list-excerpt {
        font-size: 13px;
    }
    
    .news-cta-title {
        font-size: 20px;
    }
}

/* =============================================
   NEWS DETAIL PAGE
   ============================================= */

.news-detail-section {
    margin: 30px 0;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 13px;
}

.breadcrumb-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--primary-red);
}

.breadcrumb-separator {
    color: var(--text-muted);
}

.breadcrumb-current {
    color: var(--text-primary);
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* News Detail Container */
.news-detail-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
}

/* Main Content */
.news-detail-content {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.news-detail-header {
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.news-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.news-category {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-beasiswa {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.category-program {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.category-penghargaan {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.category-umum {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
}

.news-publish-date {
    color: var(--text-secondary);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-detail-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.news-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.news-meta-bottom {
    display: flex;
    align-items: center;
    gap: 16px;
}

.news-views {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 13px;
}

.news-views svg {
    width: 18px;
    height: 18px;
}

/* Featured Image */
.news-featured-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.news-featured-image img {
    width: 100%;
    max-height: 420px;
    height: auto;
    display: block;
    object-fit: cover;
}

/* News Content Body */
.news-detail-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
}

.news-detail-body p {
    margin-bottom: 16px;
}

.news-detail-body h2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.news-detail-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.news-detail-body ul,
.news-detail-body ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.news-detail-body li {
    margin-bottom: 8px;
}

.news-detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.news-detail-body blockquote {
    border-left: 4px solid var(--primary-red);
    padding: 16px 20px;
    margin: 24px 0;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-style: italic;
}

/* Share Section */
.news-share {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.share-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

.share-facebook {
    background: #1877f2;
}

.share-facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.share-twitter {
    background: #1da1f2;
}

.share-twitter:hover {
    background: #1a91da;
    transform: translateY(-2px);
}

.share-whatsapp {
    background: #25d366;
}

.share-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

/* Sidebar */
.news-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

/* Related News */
.related-news-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-news-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

.related-news-item:hover {
    background: var(--bg-secondary);
    transform: translateX(5px);
}

.related-news-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.related-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-news-content {
    flex: 1;
}

.related-news-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-news-date {
    font-size: 12px;
    color: var(--text-muted);
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: white;
}

.cta-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.cta-text {
    font-size: 14px;
    margin-bottom: 16px;
    opacity: 0.95;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    color: var(--primary-red);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cta-button svg {
    width: 18px;
    height: 18px;
}

.cta-button:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive for News Detail */
@media (max-width: 1024px) {
    .news-detail-container {
        grid-template-columns: 1fr;
    }
    
    .news-detail-sidebar {
        order: 1;
    }
}

@media (max-width: 768px) {
    .news-detail-section {
        margin: 20px 0;
    }
    
    .breadcrumb {
        font-size: 11px;
        gap: 6px;
        margin-bottom: 16px;
    }
    
    .news-detail-content {
        padding: 24px 18px;
    }
    
    .news-detail-title {
        font-size: 26px;
    }
    
    .news-excerpt {
        font-size: 14px;
    }
    
    .news-detail-body {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .news-detail-body h2 {
        font-size: 22px;
    }
    
    .news-detail-body h3 {
        font-size: 18px;
    }
    
    .sidebar-widget {
        padding: 18px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .news-detail-content {
        padding: 20px 16px;
    }
    
    .news-detail-title {
        font-size: 22px;
    }
    
    .news-category {
        font-size: 10px;
        padding: 4px 10px;
    }
}

/* =============================================
   BACK TO TOP BUTTON
   ============================================= */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--secondary-red), var(--primary-dark));
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.4);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 100px; /* Above mobile bottom nav */
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 90px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
    
    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   PAGE DETAIL STYLES
   ============================================ */

.page-detail-section {
    padding: 18px 0 32px;
    min-height: calc(100vh - 200px);
}

.page-header {
    text-align: center;
    margin-bottom: 28px;
}

.page-title {
    font-size: 34px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 16px;
    color: #222222;
    max-width: 700px;
    margin: 0 auto;
}

.page-banner {
    margin-bottom: 28px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.page-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.page-content {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    line-height: 1.6;
    color: #111111;
    font-size: 16px;
}

.page-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    margin-top: 24px;
    margin-bottom: 12px;
}

.page-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    margin-top: 18px;
    margin-bottom: 10px;
}

.page-content p {
    margin-bottom: 6px;
    color: #111111;
}

.page-content ul, .page-content ol {
    margin-left: 22px;
    margin-bottom: 14px;
}

.page-content li {
    margin-bottom: 8px;
    color: #111111;
}

/* ============================================
   STATIC PAGE TOTAL REDESIGN
   ============================================ */

.static-page-section {
    --static-accent: #cc0614;
    --static-accent-soft: #ffe7ea;
    --static-text: #141414;
    --static-surface: #ffffff;
    --static-surface-soft: #faf8f6;
    position: relative;
    padding: 28px 0 42px;
    overflow: clip;
}

.static-page-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(44% 32% at 5% 8%, rgba(227, 6, 19, 0.14), transparent 76%),
        radial-gradient(36% 30% at 93% 13%, rgba(15, 42, 74, 0.11), transparent 78%),
        linear-gradient(180deg, #fff9fa 0%, #f5f4f2 56%, #f7f7f7 100%);
}

.static-page-atmosphere::before,
.static-page-atmosphere::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    opacity: 0.35;
    animation: staticBlobFloat 12s ease-in-out infinite;
}

.static-page-atmosphere::before {
    width: 320px;
    height: 320px;
    right: -120px;
    top: 120px;
    background: radial-gradient(circle, rgba(204, 6, 20, 0.22), rgba(204, 6, 20, 0));
}

.static-page-atmosphere::after {
    width: 260px;
    height: 260px;
    left: -100px;
    top: 300px;
    background: radial-gradient(circle, rgba(15, 42, 74, 0.25), rgba(15, 42, 74, 0));
    animation-delay: -5s;
}

.static-page-container {
    position: relative;
    z-index: 1;
}

.static-breadcrumb {
    margin-bottom: 20px;
}

.static-page-header {
    display: grid;
    grid-template-columns: 1.4fr minmax(220px, 0.6fr);
    gap: 18px;
    margin-bottom: 30px;
    border-radius: 26px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 249, 0.94));
    box-shadow: 0 26px 56px rgba(21, 21, 21, 0.1);
    padding: 26px;
}

.static-page-hero-main {
    min-width: 0;
}

.static-page-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 14px;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--static-accent);
    border: 1px solid rgba(204, 6, 20, 0.25);
    background: var(--static-accent-soft);
}

.static-page-title {
    font-size: clamp(34px, 5.4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.032em;
    color: #0f0f0f;
    margin-bottom: 14px;
}

.static-page-subtitle {
    max-width: 72ch;
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.7;
    color: #333333;
}

.static-page-hero-rail {
    display: grid;
    align-content: start;
    gap: 12px;
}

.static-theme-switcher {
    display: inline-flex;
    width: 100%;
    gap: 8px;
    padding: 6px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 17, 17, 0.1);
}

.static-theme-btn {
    flex: 1;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #4a4a4a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 9px 8px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.static-theme-btn:hover {
    color: #1f1f1f;
    background: rgba(0, 0, 0, 0.04);
}

.static-theme-btn.is-active {
    color: #ffffff;
    background: linear-gradient(135deg, #ba0815, #e30613);
    box-shadow: 0 6px 16px rgba(157, 7, 18, 0.3);
}

.static-rail-card {
    border-radius: 16px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #ffffff;
    padding: 14px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.static-rail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.static-rail-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 6px;
}

.static-rail-value {
    color: #111;
    font-size: 15px;
    line-height: 1.4;
}

.static-page-banner {
    margin-bottom: 28px;
    border-radius: 22px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 26px 44px rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

.static-page-banner img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    transform: scale(1.02);
}

.static-page-content {
    border-radius: 24px;
    border: 1px solid rgba(17, 17, 17, 0.09);
    background: linear-gradient(180deg, #fff, #fbfbfb);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.static-reading-progress {
    position: sticky;
    top: calc(var(--header-height, 80px) + 12px);
    z-index: 4;
    height: 8px;
    background: #ece9e6;
    margin: 4px 0 18px;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
}

.static-reading-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #9e0510 0%, #e30613 48%, #ff5b66 100%);
    transition: width 0.18s linear;
    position: relative;
}

.static-reading-progress span::after {
    content: "";
    position: absolute;
    top: 0;
    right: -18px;
    width: 18px;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.55));
    animation: staticProgressShine 1.35s linear infinite;
}

.static-page-layout {
    display: block;
    padding: 26px;
}

.static-page-article {
    min-width: 0;
}

.static-page-meta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.static-meta-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #363636;
}

.static-page-content-inner {
    max-width: 100%;
    overflow-x: hidden;
    counter-reset: staticSection;
}

.static-story-brief {
    margin-bottom: 18px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff, #fff8f8);
    padding: 16px 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.static-story-brief h3 {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #8e1118;
}

.static-story-brief ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.static-story-brief li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #2f2f2f;
}

.static-story-brief li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c20714, #ff5d65);
}

.static-content-block {
    counter-increment: staticSection;
    border-radius: 16px;
    background: var(--static-surface);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
    padding: clamp(18px, 2.4vw, 30px);
    margin-bottom: 20px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.static-content-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.11);
}

.static-content-block::before {
    content: counter(staticSection, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    min-width: 34px;
    height: 22px;
    border-radius: 999px;
    padding: 0 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #8f1118;
    background: rgba(227, 6, 19, 0.1);
    border: 1px solid rgba(227, 6, 19, 0.2);
}

.static-content-intro::before {
    content: "Pembuka";
    min-width: 72px;
}

.static-content-intro {
    border: 1px solid rgba(204, 6, 20, 0.22);
    background: linear-gradient(180deg, #fffaf9 0%, #ffffff 100%);
}

.static-page-content h2 {
    font-size: clamp(26px, 3.8vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 4px 0 12px;
    color: var(--static-text);
}

.static-page-content h3 {
    font-size: clamp(21px, 2.8vw, 30px);
    line-height: 1.22;
    letter-spacing: -0.01em;
    margin: 26px 0 10px;
    color: #1f1f1f;
}

.static-page-content h2,
.static-page-content h3 {
    scroll-margin-top: calc(var(--header-height, 80px) + 44px);
}

.static-page-content p,
.static-page-content li {
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.9;
    color: #252525;
    margin-bottom: 12px;
}

.static-lead-paragraph {
    font-size: clamp(19px, 2.1vw, 24px);
    line-height: 1.8;
    color: #1c1c1c;
    font-weight: 500;
    margin-bottom: 16px;
}


.static-page-content ul,
.static-page-content ol {
    margin: 10px 0 18px 24px;
}

.static-page-content a {
    color: #a90712;
    text-decoration: underline;
    text-decoration-thickness: 1.6px;
    text-underline-offset: 3px;
    font-weight: 600;
}

.static-page-content blockquote {
    margin: 18px 0;
    padding: 18px 20px;
    border-radius: 14px;
    border-left: 5px solid var(--static-accent);
    background: #fff2f4;
    font-style: italic;
}

.static-page-content blockquote.static-editorial-quote {
    position: relative;
    margin: 24px 0;
    border-left: 0;
    border-radius: 16px;
    padding: 22px 22px 20px 54px;
    background: linear-gradient(120deg, rgba(157, 7, 18, 0.1), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(157, 7, 18, 0.24);
    color: #2c1a1c;
    font-size: clamp(18px, 1.9vw, 24px);
    line-height: 1.6;
    font-style: normal;
}

.static-page-content blockquote.static-editorial-quote::before {
    content: "\201C";
    position: absolute;
    left: 16px;
    top: 4px;
    font-size: 54px;
    line-height: 1;
    color: rgba(157, 7, 18, 0.55);
    font-weight: 700;
}

.static-page-content hr {
    border: 0;
    border-top: 1px dashed #d8d8d8;
    margin: 28px 0;
}

.static-page-content img,
.static-page-content iframe,
.static-page-content video,
.static-page-content table {
    max-width: 100%;
}

.static-page-content img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 18px 0;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.static-page-content img:hover {
    transform: scale(1.02);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.static-page-content iframe {
    width: 100%;
    min-height: 380px;
    border: 0;
    border-radius: 14px;
    margin: 18px 0;
}

.static-page-content table {
    display: block;
    width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
    border-radius: 12px;
    margin: 18px 0;
    background: #fff;
}

.static-page-content table th,
.static-page-content table td {
    border: 1px solid #ebebeb;
    padding: 11px 12px;
    text-align: left;
    white-space: nowrap;
}

.static-page-content table th {
    background: #fff6f7;
    color: #191919;
    font-weight: 700;
}

.static-fade-item {
    opacity: 1;
    transform: none;
}

.static-fade-item.in-view,
.static-content-block.in-view {
    animation: staticFadeUp 720ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
    animation-delay: var(--reveal-delay, 0ms);
}

@keyframes staticFadeUp {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.99);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes staticBlobFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -14px, 0) scale(1.04);
    }
}

@keyframes staticProgressShine {
    from {
        transform: translateX(-12px);
        opacity: 0.35;
    }
    to {
        transform: translateX(6px);
        opacity: 0.85;
    }
}

/* Warm theme is default from base styles. */
.static-page-section[data-static-theme="warm"] .static-page-kicker {
    color: #a30c16;
}

/* Corporate Luxe variant */
.static-page-section[data-static-theme="luxe"] {
    --static-accent: #0b3f64;
    --static-accent-soft: #e8f2fb;
    --static-text: #101822;
    --static-surface: #ffffff;
    --static-surface-soft: #f3f7fb;
}

.static-page-section[data-static-theme="luxe"] .static-page-atmosphere {
    background:
        radial-gradient(42% 30% at 7% 8%, rgba(12, 71, 108, 0.16), transparent 78%),
        radial-gradient(34% 28% at 92% 14%, rgba(3, 26, 43, 0.18), transparent 76%),
        linear-gradient(180deg, #f1f7fc 0%, #eef3f7 55%, #f8fafc 100%);
}

.static-page-section[data-static-theme="luxe"] .static-page-atmosphere::before {
    background: radial-gradient(circle, rgba(10, 74, 117, 0.26), rgba(10, 74, 117, 0));
}

.static-page-section[data-static-theme="luxe"] .static-page-atmosphere::after {
    background: radial-gradient(circle, rgba(26, 58, 89, 0.32), rgba(26, 58, 89, 0));
}

.static-page-section[data-static-theme="luxe"] .static-page-header {
    border-color: rgba(8, 35, 59, 0.18);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(237, 245, 252, 0.95));
}

.static-page-section[data-static-theme="luxe"] .static-page-kicker,
.static-page-section[data-static-theme="luxe"] .static-content-block::before,
.static-page-section[data-static-theme="luxe"] .static-content-intro::before {
    color: #0e507d;
    border-color: rgba(12, 89, 136, 0.22);
    background: rgba(12, 89, 136, 0.13);
}

.static-page-section[data-static-theme="luxe"] .static-reading-progress span,
.static-page-section[data-static-theme="luxe"] .static-theme-btn.is-active {
    background: linear-gradient(135deg, #0a4f7f, #1176ab);
}

.static-page-section[data-static-theme="luxe"] .static-story-brief {
    background: linear-gradient(135deg, #ffffff, #eef6fd);
    border-color: rgba(9, 73, 117, 0.18);
}

.static-page-section[data-static-theme="luxe"] .static-story-brief h3,
.static-page-section[data-static-theme="luxe"] .static-page-content a {
    color: #0d5a8d;
}

.static-page-section[data-static-theme="luxe"] .static-story-brief li::before {
    background: linear-gradient(135deg, #0e5f93, #58a4d4);
}

.static-page-section[data-static-theme="luxe"] .static-content-intro {
    border-color: rgba(9, 73, 117, 0.18);
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.static-page-section[data-static-theme="luxe"] .static-page-content blockquote,
.static-page-section[data-static-theme="luxe"] .static-page-content blockquote.static-editorial-quote {
    background: linear-gradient(120deg, rgba(13, 92, 143, 0.12), rgba(255, 255, 255, 0.96));
    border-color: rgba(13, 92, 143, 0.22);
    color: #1f2f3d;
}

/* ============================================
   DONORS PAGE STYLES
   ============================================ */

.donors-section {
    padding: 18px 0 32px;
    min-height: calc(100vh - 200px);
    position: relative;
    isolation: isolate;
}

.donors-section::before,
.donors-section::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: -1;
    border-radius: 999px;
}

.donors-section::before {
    width: 180px;
    height: 180px;
    right: -30px;
    top: 110px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.14), rgba(227, 6, 19, 0));
}

.donors-section::after {
    width: 220px;
    height: 220px;
    left: -60px;
    bottom: 220px;
    background: radial-gradient(circle, rgba(25, 118, 210, 0.12), rgba(25, 118, 210, 0));
}

.donor-category {
    margin-bottom: 36px;
}

.donor-search {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.donor-search-input {
    width: min(520px, 100%);
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    font-size: 14px;
    color: #111111;
    box-shadow: var(--shadow-xs);
}

.donor-search-input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.12);
}

.wall-of-fame-section {
    margin-top: 8px;
    margin-bottom: 34px;
    padding: 26px;
    border-radius: 20px;
    background: radial-gradient(circle at top right, rgba(255, 210, 110, 0.18), transparent 46%),
                radial-gradient(circle at bottom left, rgba(170, 25, 40, 0.14), transparent 42%),
                linear-gradient(140deg, #13151b 0%, #1d212c 100%);
    color: #f9f5eb;
    box-shadow: 0 20px 38px rgba(15, 17, 24, 0.28);
}

.wall-of-fame-header {
    margin-bottom: 22px;
}

.wall-kicker {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 11px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    font-weight: 700;
}

.wall-of-fame-header h2 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 8px;
    color: #ffffff;
}

.wall-of-fame-header p {
    max-width: 760px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(250, 246, 238, 0.92);
}

.wall-tier-group {
    margin-top: 22px;
}

.wall-tier-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.wall-tier-heading h3 {
    font-size: 22px;
    color: #ffffff;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wall-tier-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.18);
}

.wall-tier-heading span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.78);
}

.wall-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.wall-donor-card {
    position: relative;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(170deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.donor-reveal,
.donor-reveal .wall-donor-card {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.donor-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.donor-reveal .wall-donor-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: var(--donor-reveal-delay, 0s);
}

.donor-reveal.is-visible .wall-donor-card {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: var(--donor-reveal-delay, 0s);
}

.wall-donor-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.wall-rank {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 4px 8px;
}

.wall-photo {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.28);
    margin-bottom: 12px;
}

.wall-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wall-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
}

.wall-photo-placeholder svg {
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.85);
}

.wall-tier-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 10px;
    letter-spacing: 0.7px;
    font-weight: 700;
}

.wall-tier-badge.tier-platinum {
    background: linear-gradient(120deg, #ffffff, #dde4f4);
    color: #111827;
}

.wall-tier-badge.tier-special {
    background: linear-gradient(120deg, #ffe8a3, #ffb703 55%, #fb8500);
    color: #1f1f1f;
}

.wall-tier-badge.tier-gold {
    background: linear-gradient(120deg, #ffe39b, #d8a824);
    color: #1f2937;
}

.wall-tier-badge.tier-silver {
    background: linear-gradient(120deg, #f0f3f8, #b8c2d3);
    color: #202b3d;
}

.wall-body h4 {
    margin: 0 0 4px;
    font-size: 17px;
    line-height: 1.4;
    color: #ffffff;
}

.wall-type {
    margin: 0 0 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.76);
}

.wall-amount {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #fff1c2;
}

.regular-donor-section {
    margin-top: 20px;
}

.regular-donor-header {
    margin-bottom: 14px;
}

.regular-donor-header h2 {
    margin: 0 0 6px;
    font-size: 28px;
    color: #111111;
}

.regular-donor-header p {
    margin: 0;
    color: #414141;
    font-size: 14px;
}

.regular-donor-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    background: #ffffff;
}

.regular-donor-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.regular-donor-table thead th {
    text-align: left;
    background: linear-gradient(120deg, #ef233c 0%, #d90429 100%);
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 13px 14px;
}

.regular-donor-table tbody td {
    padding: 13px 14px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    font-size: 14px;
    color: #111111;
}

.regular-donor-table tbody tr:nth-child(odd) {
    background: #fcfcfd;
}

.regular-donor-table tbody tr:hover {
    background: #fff6f7;
}

.regular-donor-name {
    font-weight: 600;
}

.regular-donor-type {
    display: inline-block;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    background: #f2f4f8;
    color: #1f2937;
}

.regular-donor-amount {
    font-weight: 700;
    color: #b00020;
}

.regular-empty-search {
    margin-top: 10px;
    font-size: 13px;
    color: #5b5b5b;
}

.wall-empty {
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.wall-empty p,
.wall-empty h3 {
    color: #ffffff;
}

.donor-testimonials {
    margin-top: 32px;
    padding: 28px 0 8px;
    border-top: 1px solid var(--border-color);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 22px;
}

.testimonials-title {
    font-size: 24px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 6px;
}

.testimonials-subtitle {
    font-size: 13px;
    color: #111111;
}


.testimonials-slider-wrapper {
    overflow: hidden;
    border-radius: 14px;
}

.testimonials-slider {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    position: relative;
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.testimonials-slider .testimonial-card {
    flex: 0 0 100%;
    padding: 18px;
    box-sizing: border-box;
}

.testimonial-card::before {
    content: "â€œ";
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 40px;
    line-height: 1;
    color: rgba(227, 6, 19, 0.12);
    font-weight: 700;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(0, 0, 0, 0.08);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f3f3;
    font-size: 18px;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 2px;
}

.testimonial-amount {
    font-size: 12px;
    color: var(--primary-red);
    font-weight: 600;
}

.testimonial-text {
    font-size: 13px;
    line-height: 1.55;
    color: #111111;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.testimonial-btn {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.testimonial-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.testimonial-btn svg {
    width: 20px;
    height: 20px;
}

.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.testimonial-dot.active {
    width: 22px;
    border-radius: 6px;
    background: var(--primary-red);
}


.cta-section {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: white;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: var(--primary-red);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: white;
}

/* ============================================
   PROGRAMS PAGE STYLES
   ============================================ */

.programs-section {
    padding: 18px 0 32px;
    min-height: calc(100vh - 200px);
    position: relative;
    isolation: isolate;
}

.programs-section::before {
    content: '';
    position: absolute;
    inset: 16px 0 auto;
    height: 150px;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle at 12% 35%, rgba(255, 193, 7, 0.18), transparent 38%),
        radial-gradient(circle at 80% 48%, rgba(227, 6, 19, 0.12), transparent 42%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 22px;
    margin-top: 24px;
}

.program-card {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-red);
}

.program-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.program-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-card:hover .program-thumbnail img {
    transform: scale(1.05);
}

.program-placeholder {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon svg {
    width: 80px;
    height: 80px;
    color: var(--text-muted);
}

.program-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.badge-beasiswa {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.badge-research {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.badge-community {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
}

.badge-infrastructure {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.badge-other {
    background: linear-gradient(135deg, #607D8B, #455A64);
}

.program-status {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
}

.status-active {
    background: #4CAF50;
}

.status-planned {
    background: #2196F3;
}

.status-completed {
    background: #607D8B;
}

.status-suspended {
    background: #F44336;
}

.program-content {
    padding: 18px;
}

.program-title {
    font-size: 17px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 8px;
    line-height: 1.4;
}

.program-description {
    font-size: 13px;
    color: #111111;
    line-height: 1.55;
    margin-bottom: 12px;
}

.program-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #111111;
}

.meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary-red);
}

/* ============================================
   REPORTS PAGE STYLES
   ============================================ */

.reports-section {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
}

.report-year-group {
    margin-bottom: 50px;
}

.year-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.year-icon {
    font-size: 32px;
}

.year-count {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: auto;
}

.reports-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.report-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.report-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-red);
}

.report-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.report-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.report-info {
    flex: 1;
}

.report-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.report-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.report-type {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
}

.badge-annual {
    background: #2196F3;
}

.badge-quarterly {
    background: #FF9800;
}

.badge-monthly {
    background: #4CAF50;
}

.badge-financial {
    background: #9C27B0;
}

.badge-activity {
    background: #F44336;
}

.report-period, .report-size {
    font-size: 13px;
    color: var(--text-secondary);
}

.report-downloads {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.report-downloads svg {
    width: 14px;
    height: 14px;
}

.report-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.report-actions {
    display: flex;
    gap: 12px;
}

.info-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.info-card {
    background: var(--bg-primary);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.info-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.empty-state p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
    .page-title {
        font-size: 26px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    .page-content {
        padding: 22px 16px;
    }

    .static-page-header {
        grid-template-columns: 1fr;
        padding: 22px 16px;
        border-radius: 18px;
    }

    .static-theme-switcher {
        grid-template-columns: 1fr 1fr;
    }

    .static-theme-btn {
        font-size: 10px;
        padding: 8px 6px;
    }

    .static-page-banner,
    .static-page-content {
        border-radius: 18px;
    }

    .static-page-layout {
        padding: 16px;
    }

    .static-reading-progress {
        top: calc(var(--header-height, 80px) + 8px);
        height: 7px;
        margin: 2px 0 14px;
    }

    .static-page-meta-strip {
        gap: 8px;
        margin-bottom: 10px;
    }

    .static-meta-pill {
        font-size: 11px;
        padding: 6px 10px;
    }

    .static-story-brief {
        padding: 14px;
        margin-bottom: 14px;
    }

    .static-page-content blockquote.static-editorial-quote {
        padding: 16px 14px 14px 40px;
    }

    .static-page-content blockquote.static-editorial-quote::before {
        left: 10px;
        top: 2px;
        font-size: 44px;
    }

    .static-page-content p,
    .static-page-content li {
        font-size: 16px;
    }

    .static-page-content h2 {
        margin-top: 18px;
    }

    .static-content-block {
        border-radius: 14px;
        padding: 16px;
        margin-bottom: 14px;
    }

    .static-page-content iframe {
        min-height: 250px;
    }
    
    .wall-of-fame-section {
        padding: 18px;
    }

    .wall-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wall-tier-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .regular-donor-table {
        min-width: 560px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .report-card {
        flex-direction: column;
        gap: 16px;
    }
    
    .info-section {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .cta-section {
        padding: 40px 24px;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
}

@media (max-width: 1200px) {
    .wall-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .wall-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wall-of-fame-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 620px) {
    .wall-grid {
        grid-template-columns: 1fr;
    }

    .wall-of-fame-header h2 {
        font-size: 24px;
    }

    .regular-donor-header h2 {
        font-size: 24px;
    }

    .donor-reveal,
    .donor-reveal .wall-donor-card,
    .donor-reveal.is-visible,
    .donor-reveal .wall-donor-card.is-visible,
    .donor-reveal.is-visible .wall-donor-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        transition-delay: 0s !important;
    }
}

/* ============================================================
   DONATION MODAL — MODERN PREMIUM DESIGN
   ============================================================ */

/* ---- BACKDROP ---- */
.donation-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease;
}
.donation-modal.show {
    opacity: 1;
    pointer-events: auto;
}
.donation-modal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,20,44,0.88) 0%, rgba(100,18,18,0.72) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: overlayReveal 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes overlayReveal {
    0%   { opacity: 0; clip-path: circle(0% at 50% 50%); }
    60%  { opacity: 1; clip-path: circle(80% at 50% 50%); }
    100% { opacity: 1; clip-path: circle(150% at 50% 50%); }
}

/* ---- DIALOG SHELL ---- */
.donation-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(720px, calc(100% - 20px));
    max-height: 94vh;
    overflow-y: auto;
    border-radius: 24px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08);
    background: #f3f6fb;
    display: flex;
    flex-direction: column;
}

/* ============================================================
   PUBLIC TYPOGRAPHY REFINEMENT
   ============================================================ */

.page-title {
    font-size: clamp(1.85rem, 2.4vw, 2.35rem) !important;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 0.92rem !important;
    line-height: 1.55;
}

.section-title {
    font-size: clamp(1.45rem, 2.2vw, 1.95rem);
}

.hero-title {
    font-size: clamp(2rem, 3.2vw, 2.5rem);
}

.hero-description,
.news-card-title,
.contact-text,
.social-subtitle,
.footer-left p,
.footer-link {
    font-size: 0.9rem;
}

/* ============================================================
   RICH CONTENT (TINYMCE) TYPOGRAPHY
   Reduce content size ~15% and use softer feminine body font
   ============================================================ */

.page-content,
.content-body,
.news-detail-body,
.static-page-content-inner {
    font-family: 'Lora', 'Cormorant Garamond', serif;
    font-size: 13.6px !important;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.page-content p,
.content-body p,
.news-detail-body p,
.static-page-content-inner p,
.page-content li,
.content-body li,
.news-detail-body li,
.static-page-content-inner li {
    font-size: 13.6px !important;
    line-height: 1.7;
}

.page-content h2,
.content-body h2,
.news-detail-body h2,
.static-page-content-inner h2 {
    font-size: 18.7px !important;
    line-height: 1.35;
}

.page-content h3,
.content-body h3,
.news-detail-body h3,
.static-page-content-inner h3 {
    font-size: 15.3px !important;
    line-height: 1.4;
}
.donation-modal.show .donation-modal-dialog {
    animation: dlgSpring 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.08s both;
}
@keyframes dlgSpring {
    0%   { opacity: 0; transform: perspective(900px) rotateX(10deg) translateY(60px) scale(0.93); }
    55%  { opacity: 1; transform: perspective(900px) rotateX(-2deg) translateY(-8px) scale(1.015); }
    78%  { transform: perspective(900px) rotateX(1deg) translateY(3px) scale(0.997); }
    100% { transform: perspective(900px) rotateX(0) translateY(0) scale(1); }
}

/* ---- CLOSE BUTTON ---- */
.donation-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.25s;
    backdrop-filter: blur(4px);
}
.donation-modal-close:hover {
    background: rgba(255,255,255,0.32);
    transform: rotate(90deg);
}

/* ---- HERO HEADER ---- */
.donation-modal-hero {
    background: linear-gradient(135deg, #0d1f4e 0%, #1a3a7c 40%, #8b1a1a 100%);
    padding: 30px 28px 24px;
    border-radius: 24px 24px 0 0;
    position: relative;
    overflow: hidden;
}
.donation-modal-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}
.donation-modal-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255,120,60,0.08);
    pointer-events: none;
}
.donation-hero-chip-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.donation-hero-chip {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 999px;
    padding: 4px 12px;
    backdrop-filter: blur(4px);
}
.donation-modal-title {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin: 0 0 8px;
    line-height: 1.2;
}
.donation-hero-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
    margin: 0;
    max-width: 480px;
}

/* ---- FORM BODY ---- */
.donation-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    background: #f3f6fb;
    border-radius: 0 0 24px 24px;
}

/* ---- SECTION CARDS ---- */
.donation-form-section {
    background: #ffffff;
    border: 1px solid #e2e8f4;
    border-radius: 16px;
    padding: 18px 16px;
    margin-bottom: 14px;
    box-shadow: 0 2px 12px rgba(15,25,55,0.06);
}
.donation-form-section:last-of-type {
    margin-bottom: 0;
}
.donation-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a3a7c;
    background: linear-gradient(90deg, #ddefff, #e8f0ff);
    border: 1px solid #b8d0f5;
    border-radius: 999px;
    padding: 4px 12px;
    margin-bottom: 10px;
}
.donation-form-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0d1f4e;
    margin: 0 0 14px;
}

/* ---- LABELS & INPUTS ---- */
.donation-form label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #3d4a63;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.donation-form select {
    margin-bottom: 16px;
}
.donation-form input,
.donation-form select,
.donation-form textarea {
    width: 100%;
    display: block;
    margin-top: 5px;
    border: 1.5px solid #d4dff0;
    border-radius: 12px;
    padding: 11px 14px;
    font-size: 14px;
    font-family: inherit;
    background: #f8faff;
    color: #1a2035;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.donation-form input:focus,
.donation-form select:focus,
.donation-form textarea:focus {
    outline: none;
    border-color: #3b6ecf;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(59,110,207,0.15);
    transform: translateY(-1px);
}

/* ---- ANONYMOUS TOGGLE ---- */
.donation-check-row {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: #2d3a55 !important;
    background: #f0f5ff;
    border: 1.5px solid #cddaf5;
    border-radius: 12px;
    padding: 10px 14px;
    cursor: pointer;
    margin-bottom: 10px;
}
.donation-check-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #1a3a7c;
    flex-shrink: 0;
}

/* ---- HELPER NOTE ---- */
.donation-note {
    font-size: 11px;
    color: #7a8aab;
    margin: -4px 0 8px;
    line-height: 1.5;
}

/* ---- PAYMENT WRAP ---- */
.donation-payment-wrap {
    margin-top: 2px;
}

/* ---- BANK DETAIL CARD ---- */
.donation-payment-info {
    margin-top: 10px;
    background: linear-gradient(135deg, #fffbf0, #fff4d6);
    border: 1.5px solid #f0d080;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 13px;
    color: #5a3d00;
    white-space: pre-wrap;
}
.donation-bank-detail-title {
    font-size: 10px;
    font-weight: 800;
    color: #7a5000;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}
.donation-bank-detail-value {
    font-size: 15px;
    font-weight: 600;
    color: #3a2500;
    line-height: 1.5;
    margin-bottom: 10px;
}
.donation-copy-btn {
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #0d1f4e, #1a3a7c);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 9px 16px;
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.18s, background 0.25s;
    box-shadow: 0 4px 12px rgba(13,31,78,0.28);
}
.donation-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13,31,78,0.36);
}
.donation-copy-btn.is-copied {
    background: linear-gradient(135deg, #0f6b35, #15a352);
    box-shadow: 0 4px 12px rgba(15,107,53,0.3);
}

/* ---- QRIS BOX ---- */
.donation-qris-box {
    margin-top: 10px;
    border: 1.5px solid #e0e7f4;
    border-radius: 14px;
    padding: 14px;
    background: #fff;
    display: inline-block;
}
.donation-qris-box img {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
}

/* ---- ACTIONS ---- */
.donation-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    padding: 0 2px;
}
.donation-form-actions .btn {
    background: linear-gradient(135deg, #0d1f4e 0%, #1a3a7c 50%, #c0392b 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.03em;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(13,31,78,0.35);
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.donation-form-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(13,31,78,0.45);
    opacity: 0.95;
}
.donation-form-actions .btn:active {
    transform: translateY(0);
}

/* ---- FEEDBACK ---- */
.donation-feedback {
    min-height: 18px;
    margin: 8px 2px 0;
    font-size: 13px;
    font-weight: 600;
}
.donation-feedback.success { color: #107a3a; }
.donation-feedback.error   { color: #b71c1c; }

/* ---- RESPONSIVE ---- */
@media (min-width: 640px) {
    .donation-form {
        padding: 24px;
    }
    .donation-form-section {
        padding: 20px 18px;
    }
    .donation-modal-hero {
        padding: 36px 32px 28px;
    }
    .donation-modal-title {
        font-size: 34px;
    }
}
@media (max-width: 640px) {
    .donation-modal-dialog {
        width: 100%;
        max-height: 100dvh;
        border-radius: 20px 20px 0 0;
        align-self: flex-end;
    }
    .donation-modal {
        align-items: flex-end;
    }
    .donation-modal-hero {
        border-radius: 20px 20px 0 0;
    }
    .donation-modal-title {
        font-size: 24px;
    }
    .donation-hero-subtitle {
        font-size: 12px;
    }
}

/* ---- FLOATING DONATE FAB (Mobile only) ---- */

/* ---- FLOATING DONATE FAB ---- */
.donate-fab {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 1900;
    display: none;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, #0d1f4e 0%, #1a3a7c 45%, #c0392b 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px 22px 14px 18px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(13,31,78,0.45), 0 3px 10px rgba(192,57,43,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
.donate-fab:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 36px rgba(13,31,78,0.55);
}
.donate-fab:active {
    transform: scale(0.96);
}
.donate-fab svg {
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(255,100,100,0.6));
}
/* pulse ring */
.donate-fab::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 999px;
    border: 2.5px solid rgba(192,57,43,0.55);
    pointer-events: none;
    animation: fabPulse 2.2s ease-in-out infinite;
}
@keyframes fabBounceIn {
    from { opacity: 0; transform: translateY(40px) scale(0.6); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fabPulse {
    0%, 100% { transform: scale(1);   opacity: 0.65; }
    50%       { transform: scale(1.12); opacity: 0; }
}

@media (max-width: 768px) {
    .donate-fab {
        display: flex;
        animation: fabBounceIn 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.6s both;
    }
}

/* ---- WA CHAT BUTTON ---- */
.btn-wa-chat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: none;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
    cursor: pointer;
}
.btn-wa-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37,211,102,0.5);
    color: #fff;
    text-decoration: none;
}
.btn-wa-chat:active {
    transform: scale(0.97);
}
@media (max-width: 480px) {
    .donation-form-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }
    .btn-wa-chat,
    .donation-form-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* ============================================================
   DONATION OVERLAY MODALS (Preview / Success / Error)
   ============================================================ */
.dn-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}
.dn-modal.show {
    opacity: 1;
    pointer-events: auto;
}
.dn-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 40, 0.72);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    cursor: pointer;
}
.dn-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(500px, calc(100% - 24px));
    max-height: 88vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 28px 70px rgba(0,0,0,0.32);
    padding: 28px 24px 24px;
}
.dn-modal.show .dn-modal-dialog {
    animation: dnPop 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes dnPop {
    from { opacity: 0; transform: translateY(32px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---- Preview: header ---- */
.dn-modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1.5px solid #eef1f8;
}
.dn-modal-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dn-icon-preview {
    background: linear-gradient(135deg, #eaf2ff, #ddefff);
    color: #1a3a7c;
}
.dn-modal-title {
    font-size: 18px;
    font-weight: 800;
    color: #0d1f4e;
    margin: 0 0 3px;
}
.dn-modal-subtitle {
    font-size: 12px;
    color: #7a8aab;
    margin: 0;
}

/* ---- Preview: data rows ---- */
.dn-preview-body {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
    border: 1.5px solid #e8edf6;
    border-radius: 14px;
    overflow: hidden;
}
.dn-preview-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid #f0f3fa;
}
.dn-preview-row:last-child {
    border-bottom: none;
}
.dn-preview-row:nth-child(odd) {
    background: #fafbff;
}
.dn-preview-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #7a8aab;
    min-width: 90px;
    flex-shrink: 0;
}
.dn-preview-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a2035;
    word-break: break-word;
}

/* ---- Shared action bar ---- */
.dn-modal-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.btn-dn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid #d4dff0;
    border-radius: 12px;
    background: #fff;
    color: #3d4a63;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s;
}
.btn-dn-back:hover {
    background: #f0f5ff;
    border-color: #b8d0f5;
}
.btn-dn-confirm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #0d1f4e, #1a3a7c);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 11px 20px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(13,31,78,0.3);
    transition: transform 0.18s, box-shadow 0.18s;
}
.btn-dn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13,31,78,0.4);
}
.btn-dn-confirm:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

/* ---- Success modal ---- */
.dn-success-dialog {
    text-align: center;
    padding: 36px 28px 30px;
}
.dn-success-ring {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}
.dn-success-check {
    width: 80px;
    height: 80px;
}
.dn-check-circle {
    stroke: #25c06b;
    stroke-width: 2.5;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-linecap: round;
    animation: dnCheckCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) 0.15s forwards;
}
.dn-check-path {
    stroke: #25c06b;
    stroke-width: 3;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: dnCheckPath 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.65s forwards;
}
@keyframes dnCheckCircle {
    to { stroke-dashoffset: 0; }
}
@keyframes dnCheckPath {
    to { stroke-dashoffset: 0; }
}
.dn-success-title {
    font-size: 22px;
    font-weight: 800;
    color: #0d1f4e;
    margin: 0 0 10px;
}
.dn-success-msg {
    font-size: 14px;
    color: #2d3a55;
    line-height: 1.6;
    margin: 0 0 6px;
}
.dn-success-note {
    font-size: 12px;
    color: #7a8aab;
    margin: 0 0 22px;
}
.dn-success-dialog .btn-dn-confirm {
    background: linear-gradient(135deg, #0f6b35, #15a352);
    box-shadow: 0 4px 14px rgba(15,107,53,0.3);
    padding: 12px 32px;
    font-size: 14px;
}

/* ---- Error modal ---- */
.dn-error-dialog {
    text-align: center;
    padding: 32px 24px 26px;
}
.dn-error-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff1f1;
    border: 2px solid #ffd0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #c0392b;
}
.dn-error-title {
    font-size: 20px;
    font-weight: 800;
    color: #c0392b;
    margin: 0 0 10px;
}
.dn-error-msg {
    font-size: 14px;
    color: #5a3535;
    line-height: 1.6;
    margin: 0 0 20px;
}

@media (max-width: 480px) {
    .dn-modal-dialog {
        border-radius: 20px 20px 0 0;
        max-height: 92dvh;
    }
    .dn-modal {
        align-items: flex-end;
    }
    .dn-modal-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }
    .btn-dn-back,
    .btn-dn-confirm {
        width: 100%;
        justify-content: center;
    }
}

/* ---- Bank logo badge in bank detail card ---- */
.donation-bank-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    flex-wrap: wrap;
}
.donation-bank-logo {
    flex-shrink: 0;
    width: 56px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    text-align: center;
    line-height: 1.1;
    word-break: break-all;
}
.donation-bank-info {
    flex: 1;
    min-width: 0;
}

/* ---- Proof image preview in preview modal ---- */
.dn-preview-proof {
    border-top: 1px solid #eef1f8;
    padding: 12px 14px;
    background: #fafbff;
}
.dn-preview-proof-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #7a8aab;
    margin-bottom: 10px;
}
.dn-proof-preview {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.dn-proof-img {
    max-width: 100%;
    max-height: 220px;
    width: auto;
    border-radius: 10px;
    border: 1.5px solid #e2e8f4;
    object-fit: contain;
    background: #f0f3fa;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.dn-proof-name {
    font-size: 12px;
    color: #5d6473;
    word-break: break-all;
}
.dn-proof-pdf-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e53935, #c62828);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    box-shadow: 0 2px 8px rgba(229,57,53,0.3);
}
