﻿/* ============================================================
   FINANCIALS PAGE  (annual-reports)
   ============================================================ */

/* ── SHARED SECTION HEADINGS ─────────────────────────────── */
.section-eyebrow {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}
.section-title-lg {
    font-weight: 800;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--bank-maroon);
    margin-top: 4px;
    margin-bottom: 8px;
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.active {
    opacity: 1;
    transform: none;
}

/* ── PAGE HEADER ─────────────────────────────────────────── */
.financials-page-header {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    background-color: var(--bank-maroon);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.financials-page-header::before { display: none; }
.financials-page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.financials-page-header .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 50px;
}
.financials-page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.3px;
}
.financials-page-header p {
    font-size: 1.05rem;
    color: rgba(0,0,0,0.75);
    margin: 0;
}
.financials-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(0,0,0,0.65);
    margin-top: 10px;
    flex-wrap: wrap;
}
.financials-breadcrumb a { color: var(--bank-maroon); text-decoration: none; }
.financials-breadcrumb a:hover { color: #111; }
.financials-breadcrumb .sep { color: rgba(0,0,0,0.35); font-size: 0.7rem; }

/* ── MAIN CONTENT ────────────────────────────────────────── */
.financials-main {
    flex: 1;
    padding: 60px 0;
    background: var(--page-bg);
}

/* ── SECTION HEADING ─────────────────────────────────────── */
.fin-eyebrow {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--gold);
}
.fin-section-title {
    font-weight: 800;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--bank-maroon);
    margin-top: 4px;
    margin-bottom: 8px;
}

/* ── REPORT GROUP HEADER ─────────────────────────────────── */
.report-group-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--bank-maroon);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0ebe4;
    display: flex;
    align-items: center;
    gap: 10px;
}
.report-group-title i { color: var(--gold); }

/* ── REPORT CARD ─────────────────────────────────────────── */
.report-card {
    background: var(--page-bg);
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 28px 20px;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.report-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--gold);
}
.report-card-thumb {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.report-card-icon {
    font-size: 3rem;
    color: var(--bank-maroon);
    margin-bottom: 12px;
    display: block;
}
.report-card-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--bank-maroon);
    margin-bottom: 16px;
    flex: 1;
    line-height: 1.5;
}
.btn-report-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: auto;
    box-shadow: 0 4px 14px rgba(255,140,0,0.3);
}
.btn-report-download:hover {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(255,140,0,0.4);
}

/* ── EMPTY STATE ─────────────────────────────────────────── */
.fin-empty {
    text-align: center;
    padding: 48px 0;
    color: #000;
}
.fin-empty i { font-size: 3rem; display: block; margin-bottom: 12px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 991px) {
    .financials-main { padding: 40px 0; }
}

