﻿/* Prevent horizontal overflow from fixed/absolute positioned elements (e.g. scroll-top FAB) */
html,
body {
    overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --fpt-blue: #002C6B;
    --fpt-orange: #F37021;
    --fpt-green: #00923C;
    --bg-light: #f3e8d945;
    --bg-white: #F3E8D9;
    --bg-cream: #F3E8D9;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --gray-bg: #EDEDED;
    --border-radius: 20px;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

/* Scroll offset for sticky header - prevents header from covering section titles */
section[id],
[id^="gioi-thieu"],
[id^="tin-tuc"],
[id^="can-giup-do"],
[id^="bao-cao"],
[id^="du-an"],
[id^="lien-he"] {
    scroll-margin-top: 0px;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseOrange {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 102, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: 200px 0;
    }
}

/* CMS Utility Styles */
.news-category-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--fpt-orange);
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.report-box {
    margin-top: 40px;
    padding: 40px;
    background: #F8F9FA;
    border-radius: 16px;
    border: 1px solid #E9ECEF;
}

.report-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

/* ─── Statistics Section ──────────────────────────────────────── */
.stats-section-refine {
    background: linear-gradient(135deg, #001845 0%, #002C6B 60%, #003580 100%);
    color: white;
    border-radius: 30px;
    margin: 0 20px;
}

.stats-section-refine .section-subtitle-center {
    color: white;
}

/* 2-column grid for stat-progress cards */
.stats-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

/* Digital style stat card */
.stat-progress-card.digital-style {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 24px 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-progress-card.digital-style:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.stat-progress-card.digital-style h5 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.digital-number-container {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 16px;
}

.digital-number {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    color: white;
    font-variant-numeric: tabular-nums;
    letter-spacing: -1px;
}

.digital-unit {
    font-size: 16px;
    font-weight: 600;
    color: var(--fpt-orange);
}

.digital-bar-placeholder {
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.digital-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--fpt-orange), #FF9933);
    border-radius: 2px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Report Section ───────────────────────────────────────────── */
.report-box-refine {
    background: white;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.bao-cao-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    gap: 16px;
}

.bao-cao-header h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--fpt-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.year-dropdown {
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--fpt-orange);
    cursor: pointer;
    background: #f8f9fa;
    appearance: auto;
}

.report-note-black {
    font-size: 13px;
    color: #999;
    margin-bottom: 24px;
}

/* 2-column grid for summary cards */
.report-summary-grid-refine {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.summary-card-gray {
    background: #F8F9FA;
    border-radius: 12px;
    padding: 24px 20px;
    border: 1px solid #E9ECEF;
}

.summary-label-black {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    margin-bottom: 10px;
}

.summary-value-black {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 20px;
}

.val-big {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--fpt-orange);
    font-variant-numeric: tabular-nums;
}

.summary-details-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
}

.detail-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.val-mid-wrapper {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.val-mid {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    font-variant-numeric: tabular-nums;
}

.unit-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--fpt-orange);
}

.lbl-gray {
    font-size: 11px;
    color: #999;
    font-weight: 500;
}

/* ─── Compact Report Custom Card (for years < 2025) ───────────────── */
.report-compact-card-refine {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #E9ECEF;
    padding: 24px;
    gap: 20px;
    flex-wrap: wrap;
}

.compact-card-total {
    flex: 1;
    min-width: 250px;
    background: #eef5fb;
    /* Light blue background */
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.compact-card-total-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--fpt-orange);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.compact-card-total-value {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: var(--fpt-orange);
}

.compact-card-total-value .val-big {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1;
}

.compact-card-details {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    min-width: 300px;
}

.compact-detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.compact-detail-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--fpt-blue);
}

.compact-detail-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: var(--fpt-orange);
}

.compact-detail-value .val-mid {
    font-size: 24px;
    font-weight: 800;
}

.compact-divider {
    width: 1px;
    height: 60px;
    background-color: #E9ECEF;
}

@media (max-width: 768px) {
    .report-compact-card-refine {
        flex-direction: column;
        align-items: stretch;
    }

    .compact-card-details {
        flex-direction: column;
        align-items: stretch;
    }

    .compact-divider {
        width: 100%;
        height: 1px;
    }
}

/* ─── Button Height Standardization ─────────────────────────────── */
/* Ensure mobile-filter-toggle and dropdown-trigger are always equal height */
.mobile-filter-toggle,
.dropdown-trigger {
    min-height: 44px;
}

/* ─── Actions Row (below News grid) ──────────────────────────── */
.actions-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 30px 0 10px;
}

/* Shared base button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 0 22px;
    border-radius: 30px;
    height: 42px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

/* Ghost / outline — secondary action */
.btn-outline-black {
    background: transparent;
    border-color: #1A1A1A;
    color: #1A1A1A;
}

.btn-outline-black:hover {
    background: #1A1A1A;
    color: white;
}

/* Solid black — primary action */
.btn-black {
    background: #1A1A1A;
    border-color: #1A1A1A;
    color: white;
}

.btn-black:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Popup-trigger CTA — orange gradient with glow pulse to signal modal opens */
.btn-popup-cta {
    background: linear-gradient(135deg, var(--fpt-orange) 0%, #FF9933 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 14px rgba(255, 102, 0, 0.35);
    animation: pulseOrange 2.5s infinite;
    position: relative;
}

.btn-popup-cta::after {
    /* Small "popup" arrow hint at top-right corner */
    content: '↗';
    position: absolute;
    top: -8px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: white;
    color: var(--fpt-orange);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    line-height: 18px;
    text-align: center;
}

.btn-popup-cta:hover {
    background: linear-gradient(135deg, #e55a00 0%, var(--fpt-orange) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 102, 0, 0.45);
    animation: none;
}

/* Pill variant for action-center (Xem thêm, etc.) */
.btn-pill-black {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    height: 40px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: #1A1A1A;
    color: white;
    text-decoration: none;
    border: 2px solid #1A1A1A;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-pill-black:hover {
    background: transparent;
    color: #1A1A1A;
    transform: translateY(-2px);
}

/* Mobile — stack buttons on very small screens */
@media (max-width: 480px) {
    .actions-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .actions-row .btn {
        width: 100%;
        justify-content: center;
    }
}

.stats-note {
    text-align: center;
    color: #999;
    font-size: 13px;
    margin-bottom: 30px;
}

.year-selector {
    color: var(--fpt-orange);
    cursor: pointer;
}

.summary-label {
    font-size: 14px;
    font-weight: 700;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-center {
    text-align: center;
    margin-top: 30px;
}

.slider-dots-refine {
    display: flex;
    gap: 8px;
}

.slider-dots-refine .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dots-refine .dot.active {
    background: var(--fpt-orange);
}

.featured-img-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CCC;
}

.placeholder-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #CCC;
    background: rgba(0, 0, 0, 0.05);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    z-index: 0;
}

.arrow-nav {
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.arrow-nav:hover {
    color: var(--fpt-orange);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Roboto', sans-serif;
}

body {
    background-color: #FFFFFF;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1440px;
}

/* Header Refine */
header {
    height: 80px;
    background: linear-gradient(135deg, #002C6B 0%, #001845 100%);
    backdrop-filter: blur(10px);
    color: white;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 9991;
    /* For absolute positioned logo */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header-logo-group {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    margin-right: auto;
    /* Pushes the menu and right group to the right */
}

.header-right-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand-logo {
    height: 36px;
    object-fit: contain;
}

/* Because the background is dark blue, we might need to drop shadow or invert if the logos clash.
   Given these logos, FPT is usually orange/color and VCD is white/orange text. */
.brand-logo.fpt-vcd {
    height: 48px;
    background-color: var(--bg-white);
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.logo-divider {
    height: 30px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin-left: 20px;
}

nav ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
    white-space: nowrap;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fpt-orange);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: white;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: background 0.2s;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Animated hamburger lines — morph to X when [aria-expanded="true"] */
.ham-line {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease, width 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] .ham-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .ham-line:nth-child(2) {
    opacity: 0;
    width: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .ham-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Active nav link */
nav ul li a.active {
    color: white;
    font-weight: 600;
}

nav ul li a.active::after {
    width: 100%;
}

/* Header CTA Button */
.header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: var(--fpt-orange);
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border-radius: 24px;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.header-cta-btn:hover {
    background: #e55c00;
    transform: translateY(-1px);
}

/* Logo link — participates in flex flow (not absolute anymore) */
.logo-group {
    position: static;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-group a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Sticky header shadow on scroll */
#site-header-el {
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

#site-header-el.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    background: rgba(0, 44, 107, 0.98);
    backdrop-filter: blur(8px);
}

/* Footer bottom row with legal links */
.footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--fpt-orange);
}


/* ── Mobile Responsive Header ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .logo-divider {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 32px;
        height: 24px;
        background: transparent;
        border: none;
        padding: 0;
        cursor: pointer;
        z-index: 10002;
    }

    .ham-line {
        width: 100%;
        height: 3px;
        background-color: #fff;
        border-radius: 4px;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        transform-origin: center;
    }

    /* Animation Hamburger to X */
    .mobile-menu-toggle[aria-expanded="true"] .ham-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }

    .mobile-menu-toggle[aria-expanded="true"] .ham-line:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

    .mobile-menu-toggle[aria-expanded="true"] .ham-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }

    .header-right-group {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(90deg, #FF9100 0%, #FF4110 100%);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        z-index: 10000;
    }

    nav#mainNav.active {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        margin-left: 0;
    }

    nav ul li a {
        display: block;
        padding: 10px;
        font-size: 16px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   HERO CINEMATIC — Video + Image Slider with CTA Overlay
   ═══════════════════════════════════════════════════════════════ */

.hero-cinematic {
    position: relative;
    height: 85vh;
    min-height: 550px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Media Slider ─────────────────────────────────────────────── */
.hero-media-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 9:16 Video container — centered crop for desktop */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .hero-video {
        object-position: center 20%;
    }
}

/* ── Dark Gradient Overlay ────────────────────────────────────── */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
            rgba(0, 51, 102, 0.55) 0%,
            rgba(0, 30, 60, 0.75) 60%,
            rgba(0, 20, 40, 0.90) 100%);
}

/* ── Hero Content ─────────────────────────────────────────────── */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 900px;
    animation: slideUpFade 0.8s ease-out;
}

.hero-text-block {
    margin-bottom: 50px;
}

.hero-title {
    font-size: clamp(32px, 8vw, 56px);
    font-weight: 900;
    letter-spacing: clamp(1px, 0.5vw, 4px);
    margin-bottom: clamp(12px, 2vw, 20px);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(15px, 2vw, 20px);
    font-weight: 400;
    opacity: 0.9;
    max-width: 65ch;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ── CTA Button Group ─────────────────────────────────────────── */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
}

.hero-cta-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover i {
    transform: scale(1.2);
}

/* CTA Primary — FPT Orange (most important action) */
.cta-primary {
    background: var(--fpt-orange);
    color: white;
    box-shadow: 0 4px 25px rgba(255, 102, 0, 0.45);
    animation: pulseOrange 2s infinite;
}

.cta-primary:hover {
    background: #e55b00;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 35px rgba(255, 102, 0, 0.55);
}

/* CTA Secondary — Glassmorphic white */
.cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

/* CTA Tertiary — FPT Green */
.cta-tertiary {
    background: var(--fpt-green);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 146, 60, 0.35);
}

.cta-tertiary:hover {
    background: #007a32;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 146, 60, 0.50);
}

/* ── Slide Indicators ─────────────────────────────────────────── */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
    /* Increase touch target to 44x44px for accessibility */
}

.hero-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
}

.hero-dot.active {
    background: #FFFFFF;
    border-color: #FFFFFF;
    transform: scale(1.2);
}

.hero-dot:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.4);
}

/* ── Mobile Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero-cinematic {
        height: 20vh;
        /* Reduced from 70vh for compactness */
        min-height: 200px;
    }

    .hero-text-block {
        margin-bottom: 25px;
        /* Reduced from 35px */
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0 15px;
    }

    .hero-cta-btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
        border-radius: 12px;
        /* Slightly softer than pill for touch clarity */
    }
}

/* Common Section */
.section-padding {
    padding: 40px 0;
}

@media (max-width: 768px) {
    #tin-tuc.section-padding {
        padding-top: 20px;
        /* Thêm khoảng cách cho section tin tức khỏi bị dính vào slide */
    }
}

.section-title-refine {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(90deg, #FF9000 0%, #F37021 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.section-subtitle-center {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    color: var(--fpt-orange);
    letter-spacing: 1px;
}

/* News Refine */
.section-header-refine {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 999;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.section-title-refine {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(90deg, #FF9000 0%, #F37021 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin: 0;
    letter-spacing: 1px;
}

/* Clickable News Title */
.news-title-clickable {
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.news-title-clickable:hover {
    opacity: 0.8;
}

/* News Category Filters */
.mobile-filter-toggle {
    display: none;
    /* Hidden on desktop */
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.news-cat-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #F37021;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 16px;
    border-radius: 20px;
    background: #FFE1BA;
    border: 1px solid #FF9000;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1;
    height: 36px;
}

.news-cat-filter:hover,
.news-cat-filter.active {
    color: white;
    background: var(--fpt-orange);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

/* Custom Dropdown for Division Filter */
.custom-dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-trigger {
    background: #f8f9fa;
    padding: 10px 18px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    border: 1px solid #ddd;
    transition: all 0.2s ease;
}

.dropdown-trigger:hover {
    border-color: var(--fpt-orange);
}

/* Split-pill dropdown style (Figma) */
.split-pill-trigger {
    display: flex;
    align-items: center;
    padding: 0;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid var(--fpt-orange);
    background: white;
    height: 38px;
    gap: 0;
}

.split-pill-label {
    padding: 0 22px;
    color: var(--fpt-orange);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
    background: white;
    height: 100%;
    display: flex;
    align-items: center;
}

.split-pill-value {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 22px;
    background: var(--fpt-orange);
    color: white;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    height: 100%;
    white-space: nowrap;
    width: 100%;
}

.split-pill-value i {
    font-size: 13px;
    color: white;
}

.split-pill-trigger:hover .split-pill-value {
    background: #E86515;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 8px 0;
    margin-top: 8px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.custom-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 10px 18px;
    font-size: 13px;
    color: #333;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu li:hover,
.dropdown-menu li.active {
    background: #f4f6f8;
    color: var(--fpt-orange);
    font-weight: 600;
}

#currentDivision {
    color: #ffffff;
    /* As requested by the user */
    font-weight: 700;
}

/* ── News Grids ────────────────────────────────────────────── */
.news-grid-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.news-grid-sub {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .news-grid-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-grid-sub {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .news-grid-sub {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ── News Cards ────────────────────────────────────────────── */
.news-card-large,
.news-card-small {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    padding: 0;
}

.news-card-large:hover,
.news-card-small:hover {
    transform: translateY(-5px);
}

/* News card content area */
.news-card-content {
    padding: 12px 0 16px 0;
    transition: background 0.3s ease;
}

.news-card-large:hover .news-card-content,
.news-card-small:hover .news-card-content {
    background: transparent;
}

.card-img-placeholder {
    width: 100%;
    height: 320px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    border-radius: 8px;
}

.card-img-placeholder.small {
    height: 180px;
}

.news-category-badge {
    display: inline-block;
    background: var(--fpt-orange);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.news-card-large h4 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.beneficiary-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(243, 112, 33, 0.1);
    color: var(--fpt-orange);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    margin-top: 16px;
}

.news-card-small h4 {
    font-size: 16px;
    line-height: 1.4;
    margin-top: 15px;
    margin-bottom: 10px;
}

.news-date {
    font-size: 13px;
    color: #888;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-date i {
    color: #aaa;
}



/* Skeleton Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }

    100% {
        background-position: 468px 0;
    }
}


.actions-row {
    display: flex;
    justify-content: space-between;
}

.btn {
    padding: 12px 30px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
}

.btn-black {
    background: var(--fpt-orange);
    color: white;
    transition: all 0.3s ease;
}

.btn-black:hover {
    background: #d95e1c;
    transform: translateY(-2px);
}

.btn-outline-black {
    background: transparent;
    border: 2px solid var(--fpt-orange);
    color: var(--fpt-orange);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-black:hover {
    background: var(--fpt-orange);
    color: white;
    transform: translateY(-2px);
}

/* Help Refine — Figma: dark blue bg, horizontal image+text */
.help-section-refine {
    background: linear-gradient(135deg, #001845 0%, #002C6B 100%);
    color: white;
    padding: 60px 0 !important;
    width: 100%;
    border-radius: 30px;
}

.help-section-inner {
    max-width: 1500px;
    margin: 0 auto;
}

/* Title override: white, centered */
.help-title {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    color: white !important;
}

.help-header {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    border-bottom: none;
}

.help-header .header-left {
    width: 100%;
    justify-content: center;
}

.help-header .header-right {
    width: auto;
}

/* Split-pill override for dark background */
.help-section-refine .split-pill-trigger {
    border-color: rgba(255, 255, 255, 0.3);
}

.help-section-refine .split-pill-label {
    color: var(--fpt-orange);
    background: #002157;
}

.help-section-refine .split-pill-value {
    background: var(--fpt-orange);
}

.help-section-refine .dropdown-menu {
    min-width: 220px;
}

/* ── New Two-Card Grid Layout ── */
.help-campaigns-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1127px;
    margin: auto;
}

.help-card-horizontal {
    display: flex;
    background: linear-gradient(135deg, #0d214a 0%, #153b75 100%);
    border-radius: 0 40px 0 40px;
    overflow: hidden;
    align-items: stretch;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05), 0 10px 40px rgba(0, 0, 0, 0.2);
    min-height: 380px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.help-card-horizontal.reverse {
    flex-direction: row;
}

.hc-content {
    width: 40%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hc-content h3 {
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.hc-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-hc-detail {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 50px;
    background: transparent;
    color: var(--fpt-orange);
    border: 1.5px solid var(--fpt-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hc-detail:hover {
    background: var(--fpt-orange);
    color: white;
}

.hc-image {
    width: 60%;
    position: relative;
    min-height: 100%;
}

.hc-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 40px 0 40px;
}

.action-center {
    text-align: center;
    margin-top: 40px;
}

.btn-hc-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 50px;
    background: var(--fpt-orange);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-hc-view-all:hover {
    background: #d95e1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 112, 33, 0.3);
}

@media (max-width: 900px) {

    .help-card-horizontal,
    .help-card-horizontal.reverse {
        flex-direction: column;
    }

    .hc-image {
        min-height: 250px;
        width: 100%;
    }

    .hc-content {
        padding: 40px 30px;
        width: 100%;
    }
}

.btn-pill-black {
    background: var(--fpt-orange);
    color: white;
    border-radius: 50px;
    padding: 16px 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--fpt-orange);
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.btn-pill-black:hover {
    background: #E86515;
    border-color: #E86515;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 112, 33, 0.4);
}

/* Orange outline button for Help section */
.btn-outline-orange {
    background: transparent;
    color: var(--fpt-orange);
    border: 2px solid var(--fpt-orange);
    border-radius: 50px;
    padding: 14px 40px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-orange:hover {
    background: var(--fpt-orange);
    color: white;
    transform: translateY(-2px);
}

/* Intro Refine */
/* ═══════════════════════════════════════════════════════════════════════════ */
/* INTRO SECTION - Enhanced UI/UX Design */
/* ═══════════════════════════════════════════════════════════════════════════ */

.intro-section-enhanced {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    background: var(--bg-cream);
}

.intro-grid-refine {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5fc 100%);
    padding: 50px 60px;
}

.intro-img-box {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.intro-main-image {
    width: 90%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    transition: transform 0.4s ease;
    z-index: 1;
}

.intro-img-box:hover .intro-main-image {
    transform: scale(1.02);
}

.intro-img-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.intro-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 74, 25, 0.1) 0%, rgba(0, 119, 200, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.intro-img-box:hover .intro-img-overlay {
    opacity: 1;
}

.intro-img-badge {
    position: absolute;
    top: 6px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    animation: badge-float 3s ease-in-out infinite;
    z-index: 3;
}

@keyframes badge-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.intro-img-badge i {
    color: var(--fpt-orange);
    font-size: 18px;
}

.intro-img-badge span {
    color: var(--fpt-orange);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.intro-content-box {
    padding: 40px 20px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
}

.intro-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fpt-orange);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.intro-eyebrow i {
    font-size: 14px;
}

.intro-content-box h3 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--fpt-orange);
    line-height: 1.25;
    position: relative;
    letter-spacing: -0.5px;
}

.intro-content-box h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, var(--fpt-orange) 0%, rgba(230, 74, 25, 0.3) 100%);
    border-radius: 4px;
}

.intro-content-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    font-weight: 400;
    margin-top: 25px;
    margin-bottom: 30px;
    white-space: pre-wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--fpt-orange);
}

.highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e64a19 0%, #ff6f42 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    color: white;
    font-size: 18px;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.highlight-text strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--fpt-orange);
    line-height: 1;
}

.highlight-text span {
    font-size: 11px;
    color: #6c757d;
    font-weight: 500;
}

/* CTA Buttons */
.intro-text-collapsible {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    font-weight: 400;
    margin-top: 25px;
    margin-bottom: 30px;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    white-space: pre-wrap;
}

.intro-text-collapsible img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.intro-text-collapsible.collapsed {
    max-height: 200px;
}

.intro-text-collapsible::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(#00000000, #f3e8d9);
    /* Matches the background roughly */
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.5s ease;
}



.intro-text-collapsible.expanded::after {
    opacity: 0;
}

.intro-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-intro-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--fpt-orange);
    color: white;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-intro-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-intro-primary:hover::before {
    left: 100%;
}

.btn-intro-primary:hover {
    background: #d95e1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 112, 33, 0.3);
    color: white;
}

.btn-intro-primary i {
    transition: transform 0.3s ease;
}

.btn-intro-primary:hover i {
    transform: translateX(4px);
}

.btn-intro-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: white;
    color: var(--fpt-orange);
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--fpt-orange);
    transition: all 0.3s ease;
}

.btn-intro-secondary:hover {
    background: var(--fpt-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 119, 200, 0.25);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-grid-refine {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 40px;
    }

    .intro-img-box {
        min-height: 400px;
    }

    .intro-main-image {
        width: 85%;
        max-height: 350px;
    }

    .intro-content-box {
        padding: 30px 20px;
    }

    .intro-content-box h3 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .intro-grid-refine {
        padding: 40px 20px;
        gap: 30px;
    }

    .intro-img-box {
        min-height: 320px;
    }

    .intro-main-image {
        width: 92%;
        max-height: 280px;
    }

    .intro-img-badge {
        top: 20px;
        left: 20px;
        padding: 10px 18px;
    }

    .intro-img-badge i {
        font-size: 14px;
    }

    .intro-img-badge span {
        font-size: 12px;
    }

    .intro-content-box {
        padding: 20px;
    }

    .intro-content-box h3 {
        font-size: 26px;
    }

    .intro-content-box p {
        font-size: 15px;
    }

    .intro-cta-group {
        flex-direction: column;
    }

    .btn-intro-primary,
    .btn-intro-secondary {
        width: 100%;
        justify-content: center;
    }
}


/* Stats Section */
.stats-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-progress-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 166, 0.1);
}

.stat-progress-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--fpt-orange), var(--fpt-orange));
}

.digital-number-container {
    margin: 15px 0 20px 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.digital-number,
.digital-number-small {
    font-family: 'SF Mono', 'Roboto Mono', monospace;
    font-size: 38px;
    font-weight: 800;
    color: var(--fpt-orange);
    text-shadow: 0 0 15px rgba(3, 78, 162, 0.2);
    letter-spacing: -1px;
}

.digital-unit {
    font-size: 15px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.digital-bar-placeholder {
    height: 12px;
    background: rgba(0, 0, 0, 0.05);
    width: 100%;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.digital-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--fpt-orange), #2196F3);
    border-radius: 20px;
    transition: width 2s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 0 10px rgba(33, 150, 243, 0.5);
}

/* Projects Layout - Grid */
.projects-layout-refine {
    position: relative;
    padding: 20px 60px 60px;
    /* Add horizontal padding so arrows aren't clipped */
    display: flex;
    align-items: center;
}

.projects-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
}

.project-main-card {
    display: flex;
    flex-direction: column;
}

.img-box-large {
    height: 450px;
    background-color: #dcdcdc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 20px;
}

.proj-title-main {
    font-size: 22px;
    font-weight: 800;
    color: #000;
    line-height: 1.3;
    margin-bottom: 12px;
}

.proj-desc-main {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.projects-side-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
}

.project-side-card {
    display: flex;
    flex-direction: column;
    background: transparent;
}

.img-box-small {
    height: 180px;
    background-color: #dcdcdc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 15px;
    overflow: hidden;
}

.proj-title-side {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
    margin-bottom: 6px;
}

.proj-desc-side {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    font-size: 40px;
    color: #ccc;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    color: var(--fpt-orange);
}

.nav-arrow.left {
    left: 0;
}

.nav-arrow.right {
    right: 0;
}

/* Project Cards Enhanced Styles */
a.project-main-card,
a.project-side-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.project-main-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease;
    overflow: hidden;
    border-radius: 12px;
    padding: 0;
    background: transparent;
}

.project-main-card:hover {
    transform: translateY(-3px);
}

.project-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--fpt-orange);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.project-main-content {
    padding: 16px 0 0 0;
}

.project-main-card:hover .proj-title-main {
    color: var(--fpt-orange);
}

.proj-title-main {
    transition: color 0.4s ease;
}

.project-side-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease;
    border-radius: 10px;
    overflow: hidden;
    background: transparent;
    padding: 0;
}

.project-side-card:hover {
    transform: translateY(-3px) !important;
}

.project-side-card:hover .proj-title-side {
    color: var(--fpt-orange);
}

.proj-title-side {
    transition: color 0.4s ease;
}

.project-side-content {
    padding: 15px 0 0 0;
}

/* Project Grid Animations */
.projects-grid-container.slide-out {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.2s ease-out;
}

.projects-grid-container.slide-in {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.4s ease-out;
}

/* Project Indicators */
.projects-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.proj-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.proj-indicator:hover {
    background: #999;
    transform: scale(1.2);
}

.proj-indicator.active {
    background: var(--fpt-orange);
    transform: scale(1.3);
}

/* Footer Refine */
.footer-refine {
    background: linear-gradient(180deg, #003a60 0%, var(--fpt-orange) 100%);
    color: white;
    padding: 80px 0 0;
}

.footer-grid-refine {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 80px;
}

/* Map Loading State */
.map-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    gap: 12px;
}

.map-loading i {
    font-size: 24px;
    color: var(--fpt-orange);
}

/* OLD MAP STYLES - Kept for backwards compatibility but hidden by new styles */
.vietnam-map-bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(1) brightness(1.8) contrast(1.2) sepia(1) hue-rotate(180deg) saturate(3);
    opacity: 0.8;
}

.map-point {
    position: absolute;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 5;
}

.point-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--fpt-orange);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--fpt-orange);
}

.point-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: rgba(243, 112, 33, 0.4);
    border-radius: 50%;
    animation: mapPulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes mapPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.map-tooltip {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -120%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    width: max-content;
    max-width: 220px;
    border-bottom: 3px solid var(--fpt-orange);
}

.map-tooltip.visible {
    opacity: 1;
    transform: translate(-50%, -100%);
}

.map-tooltip h6 {
    color: var(--fpt-orange);
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 800;
}

.map-tooltip p {
    color: #444;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   INTERACTIVE VIETNAM SVG MAP STYLES
   ═══════════════════════════════════════════════════════════════ */

.interactive-map-container {
    position: relative;
    width: 220px;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vietnam-map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.vietnam-map-svg {
    width: 100%;
    height: 100%;
}

.vietnam-outline {
    transition: all 0.3s ease;
}

.vietnam-outline:hover {
    filter: url(#mapShadow) brightness(1.1);
}

.region {
    fill: rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

/* Map Markers */
.map-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
}

.map-marker:hover,
.map-marker.active {
    transform: scale(1.2);
    z-index: 20;
}

.marker-dot {
    width: 12px;
    height: 12px;
    background: var(--fpt-orange);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.4);
    animation: markerPulse 2s ease-in-out infinite;
}

.marker-dot.capital {
    width: 14px;
    height: 14px;
    background: var(--fpt-green);
}

@keyframes markerPulse {

    0%,
    100% {
        box-shadow: 0 2px 8px rgba(255, 102, 0, 0.4);
    }

    50% {
        box-shadow: 0 2px 15px rgba(255, 102, 0, 0.8);
    }
}

.marker-label {
    margin-top: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--fpt-orange);
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.vietnam-svg-map {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.2));
}

/* Province Path Styling */
.province {
    fill: rgba(0, 102, 166, 0.7);
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.province:hover,
.province.active {
    fill: var(--fpt-orange);
    stroke: #ffffff;
    stroke-width: 1.5;
    filter: drop-shadow(0 0 6px rgba(255, 102, 0, 0.6));
    transform-origin: center;
}

.province.capital {
    fill: rgba(0, 146, 60, 0.7);
    stroke: #ffffff;
    stroke-width: 1;
}

.province.capital:hover,
.province.capital.active {
    fill: var(--fpt-orange);
    filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.8));
}

/* City Markers */
.city-marker {
    fill: #ffffff;
    stroke: var(--fpt-orange);
    stroke-width: 2;
    filter: drop-shadow(0 0 4px rgba(255, 102, 0, 0.5));
    animation: cityPulse 2s ease-in-out infinite;
}

.capital-marker {
    fill: var(--fpt-orange);
    stroke: #ffffff;
    stroke-width: 2;
}

@keyframes cityPulse {

    0%,
    100% {
        r: attr(r);
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Map Tooltip Container */
.map-tooltip-container {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    z-index: 100;
    transition: opacity 0.2s ease;
}

.map-tooltip-container.visible {
    opacity: 1;
}

.map-tooltip-inner {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 102, 166, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 180px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--fpt-orange);
}

.tooltip-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tooltip-icon {
    color: var(--fpt-orange);
    font-size: 16px;
}

.tooltip-header h6 {
    color: var(--fpt-orange);
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.tooltip-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

.tooltip-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tooltip-stat .stat-value {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--fpt-orange);
}

.tooltip-stat .stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tooltip-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 166, 0.08);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--fpt-orange);
}

.tooltip-highlight i {
    color: var(--fpt-orange);
    font-size: 10px;
}

/* Map Legend */
.map-legend {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    background: transparent;
    padding: 8px 0;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.legend-title {
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-dot.capital {
    background: var(--fpt-orange);
    box-shadow: 0 0 6px rgba(255, 102, 0, 0.6);
}

.legend-dot.province {
    background: rgba(0, 102, 166, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-steps-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.step-v {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-num {
    font-size: 48px;
    font-weight: 900;
    color: var(--fpt-orange);
    line-height: 1;
}

.step-info h6 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   STATISTICS SECTION - FPT 3-COLOR THEME (FULL WIDTH)
   Blue #0066A6 | Orange #FF6600 | Green #00923C
   ═══════════════════════════════════════════════════════════════ */

/* ── Section Canvas - Full Width với 3 màu FPT ── */
.stats-section-refine {
    background: linear-gradient(135deg,
            rgba(0, 102, 166, 0.03) 0%,
            rgba(255, 102, 0, 0.02) 50%,
            rgba(0, 146, 60, 0.03) 100%);
    color: var(--text-dark);
    padding: 80px 0 !important;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.stats-section-refine .section-subtitle-center {
    color: var(--fpt-orange);
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

/* ── Clean Stat Cards Grid ── */
.stats-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.stat-progress-card.digital-style {
    background: #ffffff;
    border: 1px solid rgba(0, 102, 166, 0.1);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Card 1 & 4: FPT Blue accent */
.stat-progress-card.digital-style:nth-child(1)::before,
.stat-progress-card.digital-style:nth-child(4)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--fpt-orange);
}

/* Card 2: FPT Orange accent */
.stat-progress-card.digital-style:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--fpt-orange);
}

/* Card 3: FPT Green accent */
.stat-progress-card.digital-style:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--fpt-green);
}

.stat-progress-card.digital-style:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 102, 166, 0.12);
}

/* Blue card hover */
.stat-progress-card.digital-style:nth-child(1):hover,
.stat-progress-card.digital-style:nth-child(4):hover {
    border-color: var(--fpt-orange);
}

/* Orange card hover */
.stat-progress-card.digital-style:nth-child(2):hover {
    border-color: var(--fpt-orange);
    box-shadow: 0 12px 30px rgba(255, 102, 0, 0.15);
}

/* Green card hover */
.stat-progress-card.digital-style:nth-child(3):hover {
    border-color: var(--fpt-green);
    box-shadow: 0 12px 30px rgba(0, 146, 60, 0.15);
}

.stat-progress-card h5 {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* ── Clean Numbers Style ── */
.digital-number-container {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.digital-number {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--fpt-orange);
    line-height: 1;
    letter-spacing: -1px;
}

/* Card 2: Orange number */
.stat-progress-card.digital-style:nth-child(2) .digital-number {
    color: var(--fpt-orange);
}

/* Card 3: Green number */
.stat-progress-card.digital-style:nth-child(3) .digital-number {
    color: var(--fpt-green);
}

.digital-unit {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
}

/* ── Progress Bars với 3 màu FPT ── */
.digital-bar-placeholder {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.digital-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: var(--fpt-orange);
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Card 2: Orange bar */
.stat-progress-card.digital-style:nth-child(2) .digital-bar-fill {
    background: var(--fpt-orange);
}

/* Card 3: Green bar */
.stat-progress-card.digital-style:nth-child(3) .digital-bar-fill {
    background: var(--fpt-green);
}

/* ── Stats Note ── */
.stats-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* ── Report Section Container - Flat Design ── */
.report-section-refine {
    background: #ffffff;
    padding: 60px 0 !important;
    margin-bottom: 0;
}

/* ── Báo Cáo Năm Report Box - Clean Flat Style ── */
.report-box-refine {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.bao-cao-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

.bao-cao-header h4 {
    font-size: 28px;
    font-weight: 800;
    color: var(--fpt-orange);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

.year-dropdown {
    background: var(--fpt-orange);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.year-dropdown:hover {
    background: #e55c00;
    transform: scale(1.05);
}

.year-dropdown:focus {
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.3);
}

.year-dropdown option {
    background: var(--fpt-orange);
    color: #ffffff;
}

.report-note-black {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
    text-align: center;
}

/* ── Financial Summary Cards Grid - Flat Design ── */
.report-summary-grid-refine {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.summary-card-gray {
    background: #f8fafc;
    border: none;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--fpt-orange);
}

/* THU card - Orange accent */
.summary-card-gray:first-child {
    border-left-color: var(--fpt-orange);
    border-top: none;
}

/* CHI card - Blue accent */
.summary-card-gray:last-child {
    border-left-color: var(--fpt-orange);
    border-top: none;
}

.summary-label-black {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* THU label */
.summary-card-gray:first-child .summary-label-black {
    color: var(--fpt-orange);
}

/* CHI label */
.summary-card-gray:last-child .summary-label-black {
    color: var(--fpt-orange);
}

.summary-value-black {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 30px;
}

.val-big {
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: var(--fpt-orange);
    line-height: 1;
    letter-spacing: -2px;
}

/* CHI card big value - Blue */
.summary-card-gray:last-child .val-big {
    color: var(--fpt-orange);
}

.unit-text {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 600;
}

.summary-details-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.detail-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.val-mid-wrapper {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.val-mid {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--fpt-orange);
    line-height: 1.2;
}

/* CHI card mid values - Blue */
.summary-card-gray:last-child .val-mid {
    color: var(--fpt-orange);
}

.lbl-gray {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.4;
}

/* ── Responsive Stats ── */
@media (max-width: 1024px) {
    .stats-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .stats-cards-grid {
        grid-template-columns: 1fr;
    }

    .report-summary-grid-refine {
        grid-template-columns: 1fr;
    }

    .digital-number {
        font-size: 32px;
    }

    .val-big {
        font-size: 36px;
    }

    .report-box-refine {
        padding: 24px;
    }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    .digital-bar-fill {
        transition: none;
    }

    .stat-progress-card.digital-style {
        transition: none;
    }

    .stat-progress-card.digital-style:hover {
        transform: none;
    }
}



/* Gradient transition band above footer */
.footer-genz::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fpt-orange) 0%, var(--fpt-blue, #034EA2) 100%);
    z-index: 2;
}

.footer-genz {
    position: relative;
    background-color: #1a1f2c;
    /* Deeper navy – matches reference */
    color: #94a3b8;
    /* slate-400 for muted text */
    padding: 80px 0 40px;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.footer-genz-content {
    position: relative;
    z-index: 2;
}

.footer-genz-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* ── Column Titles ── */
.footer-col h4.footer-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 12px;
}

/* Accent underline on headings */
.footer-col h4.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: var(--fpt-orange);
    border-radius: 2px;
}

/* ── Brand Column ── */
.footer-slogan {
    font-size: 14px;
    line-height: 1.7;
    /* SKILL: 1.5-1.75 for body */
    margin: 20px 0;
    max-width: 300px;
    color: #94a3b8;
}

.footer-logo {
    height: 38px;
    filter: brightness(1.1);
}

/* ── Kinetic Underline Links ── */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 14px;
}

.footer-menu a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    position: relative;
    padding-bottom: 3px;
    cursor: pointer;
    /* SKILL: cursor-pointer on clickable */
    transition: color 0.2s ease;
    /* SKILL: 150-300ms for micro-interactions */
    text-transform: uppercase;
}

.footer-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--fpt-orange);
    transition: width 0.25s cubic-bezier(0.33, 1, 0.68, 1);
}

.footer-menu a:hover {
    color: #ffffff;
}

.footer-menu a:hover::after {
    width: 100%;
}

/* SKILL: focus-states – Visible focus rings */
.footer-menu a:focus-visible {
    outline: 2px solid var(--fpt-orange);
    outline-offset: 4px;
    border-radius: 2px;
}

/* ── Social Icons (Neubrutalism + Magnetic) ── */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-icon {
    width: 42px;
    height: 42px;
    /* SKILL: 44px min touch target */
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Visible border in dark mode */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    /* SKILL: cursor-pointer */
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    background: var(--fpt-orange);
    color: #ffffff;
    border-color: var(--fpt-orange);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(243, 112, 33, 0.35);
}

/* SKILL: focus-states */
.social-icon:focus-visible {
    outline: 2px solid var(--fpt-orange);
    outline-offset: 3px;
}

/* ── Contact Info ── */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
}

.contact-info li i {
    color: var(--fpt-orange);
    font-size: 15px;
    width: 18px;
    text-align: center;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-info li i.fa-phone-alt,
.contact-info li i.fa-envelope {
    color: white;
}

.contact-info .contact-link {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info .contact-link:hover {
    color: var(--fpt-orange);
}

/* ── Gradient Divider ── */
.footer-divider-genz {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(243, 112, 33, 0.3) 20%,
            rgba(3, 78, 162, 0.3) 80%,
            transparent 100%);
    margin: 40px 0 30px;
}

/* ── Copyright Bar ── */
.footer-bottom-genz {
    text-align: center;
    font-size: 13px;
    color: #64748b;
    /* Ensure readable but muted */
    letter-spacing: 0.3px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .footer-genz-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .footer-genz {
        padding: 60px 0 32px;
    }

    .footer-genz-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* SKILL: prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .footer-menu a::after {
        transition: none;
    }

    .social-icon {
        transition: none;
    }

    .social-icon:hover {
        transform: none;
    }
}

/* ══════════════════════════════════════════════════
   NEWS CARD ANCHOR FIX
   (cards are now <a> tags, remove default link styles)
══════════════════════════════════════════════════ */
a.news-card-large,
a.news-card-small {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform 0.25s ease;
}

a.news-card-large:hover,
a.news-card-small:hover {
    transform: translateY(-4px);
}

a.news-card-large h4,
a.news-card-small h4 {
    transition: color 0.2s ease;
}

a.news-card-large:hover h4,
a.news-card-small:hover h4 {
    color: var(--fpt-orange);
}

/* ══════════════════════════════════════════════════
   NEWS DETAIL PAGE — LAYOUT
══════════════════════════════════════════════════ */
body.detail-page {
    background: var(--bg-light);
}

.article-main {
    min-height: 80vh;
    padding: 40px 0 0px;
}

.article-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Breadcrumb ── */
.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.article-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.article-breadcrumb a:hover {
    color: var(--fpt-orange);
}

.article-breadcrumb .bc-sep {
    font-size: 10px;
    opacity: 0.5;
}

/* ── Article Header ── */
.article-header {
    margin-bottom: 28px;
}

.article-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.article-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.article-category-tag {
    display: inline-flex;
    align-items: center;
    background: var(--fpt-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
}

.article-category-tag.help-tag {
    background: var(--fpt-orange);
}

.help-detail-cta {
    display: flex;
    justify-content: center;
    padding: 40px 0;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--fpt-orange);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-primary-large:hover {
    background: var(--fpt-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 166, 0.4);
}

.article-date {
    font-size: 13px;
    color: var(--text-muted);
    flex: 1;
}

.article-meta-actions {
    display: flex;
    gap: 8px;
}

.article-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f5f5f5;
    color: var(--text-dark);
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.article-share-btn:hover {
    background: var(--fpt-orange);
    color: #fff;
    border-color: var(--fpt-orange);
}

/* ── Featured Image ── */
.article-featured-img-wrap {
    margin: 0 0 32px 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
    line-height: 0;
}

.article-featured-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 12px;
}

/* ── Lead Paragraph (Sapo) ── */
.article-sapo {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0 0 28px 0;
    padding: 20px 24px;
    border-left: 4px solid var(--fpt-orange);
    background: #fff8f4;
    border-radius: 0 8px 8px 0;
}

/* ── Article Body Content (CMS HTML) ── */
.article-body {
    font-size: 16px;
    line-height: 1.85;
    color: #333;
}

.article-body p {
    margin: 0 0 20px 0;
}

.article-body h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 36px 0 16px;
    color: var(--text-dark);
}

.article-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--text-dark);
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
}

.article-body a {
    color: var(--fpt-orange);
    text-decoration: underline;
}

.article-body ul,
.article-body ol {
    margin: 0 0 20px 0;
    padding-left: 24px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-body blockquote {
    border-left: 4px solid var(--fpt-orange);
    margin: 24px 0;
    padding: 16px 20px;
    background: #fff8f4;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

.article-body figure {
    margin: 24px 0;
    text-align: center;
}

.article-body figcaption {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
    font-style: italic;
}

/* ── Project Detail Page Styles ── */
.project-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--fpt-orange) 0%, #ff8c42 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(243, 112, 33, 0.3);
}

.project-detail-badge i {
    font-size: 12px;
}

.project-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border-left: 4px solid var(--fpt-orange);
}

.project-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-size: 15px;
}

.project-stat-item i {
    color: var(--fpt-orange);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

/* ── Loading Skeleton ── */
.article-loading {
    padding: 40px 0;
}

.article-skeleton {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sk-line,
.sk-block {
    background: linear-gradient(90deg, #ececec 25%, #f8f8f8 50%, #ececec 75%);
    background-size: 200% 100%;
    animation: skShimmer 1.5s infinite;
    border-radius: 6px;
}

.sk-breadcrumb {
    height: 14px;
    width: 260px;
}

.sk-title {
    height: 36px;
    width: 100%;
}

.sk-title--half {
    width: 60%;
}

.sk-meta {
    height: 16px;
    width: 200px;
    margin-bottom: 8px;
}

.sk-image {
    height: 340px;
    width: 100%;
    border-radius: 12px;
}

.sk-text {
    height: 16px;
    width: 100%;
}

.sk-text--short {
    width: 70%;
}

@keyframes skShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ── Error State ── */
.article-error {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.article-error i {
    font-size: 48px;
    color: #ddd;
    display: block;
    margin-bottom: 16px;
}

.article-error a {
    color: var(--fpt-orange);
    font-weight: 600;
}

/* ══════════════════════════════════════════════════
   RELATED ARTICLES SECTION
══════════════════════════════════════════════════ */
.related-news-section {
    margin-top: 60px;
    padding: 48px 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.related-news-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 32px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.related-news-title .title-accent {
    display: inline-block;
    width: 4px;
    height: 24px;
    background: var(--fpt-orange);
    border-radius: 2px;
}

.related-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .related-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .related-news-grid {
        grid-template-columns: 1fr;
    }
}

.related-news-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-light);
    border: 1px solid #eee;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.related-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.related-card-img {
    width: 100%;
    height: 160px;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 24px;
    flex-shrink: 0;
}

.related-card-body {
    padding: 14px 16px;
}

.related-card-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--fpt-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 6px;
}

.related-card-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-dark);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
    transition: color 0.2s;
}

.related-news-card:hover .related-card-title {
    color: var(--fpt-orange);
}

/* ══════════════════════════════════════════════════
   NEWS LIST PAGE
══════════════════════════════════════════════════ */
body.news-list-page {
    background: var(--bg-light);
}

/* ── Page Hero Banner ── */
.nl-hero-banner {
    background: linear-gradient(135deg, #F37021 0%, #E86515 100%);
    padding: 48px 0 40px;
    color: white;
}

.nl-hero-banner .article-breadcrumb {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.nl-hero-banner .article-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.nl-hero-banner .article-breadcrumb a:hover {
    color: white;
}

.nl-hero-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0 0 10px;
}

.nl-hero-sub {
    font-size: 16px;
    opacity: 0.8;
    margin: 0;
}

/* ── Main Content ── */
.nl-main {
    padding: 40px 0 80px;
}

/* ── Toolbar ── */
.nl-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.nl-toolbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.nl-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nl-tab {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border: 1px solid #FF9000;
    border-radius: 24px;
    background: #FFE1BA;
    color: #F37021;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    white-space: nowrap;
}

.nl-tab:hover {
    border-color: var(--fpt-orange);
    color: var(--fpt-orange);
}

.nl-tab.active {
    background: var(--fpt-orange);
    border-color: var(--fpt-orange);
    color: white;
}

.nl-result-count {
    font-size: 13px;
    color: var(--text-muted);
    flex-shrink: 0;
}

/* ── Category label (inside cards) ── */
.nl-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--fpt-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

/* ── Featured 2-Col Cards ── */
.nl-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.nl-featured-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nl-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.nl-featured-img {
    width: 100%;
    height: 260px;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 32px;
    flex-shrink: 0;
}

.nl-featured-body {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nl-featured-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-dark);
    margin: 0 0 10px;
    transition: color 0.2s;
}

.nl-featured-card:hover .nl-featured-title {
    color: var(--fpt-orange);
}

.nl-featured-summary {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
}

.nl-read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--fpt-orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: gap 0.2s;
    text-decoration: none;
}

.nl-featured-card:hover .nl-read-more {
    gap: 10px;
}

/* ── 4-Column Article Grid ── */
.nl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.nl-grid-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nl-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.nl-grid-img {
    width: 100%;
    height: 180px;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 24px;
    flex-shrink: 0;
    position: relative;
}

.nl-card-media-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 36px;
}

.nl-grid-body {
    padding: 14px 16px 18px;
}

.nl-grid-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
    color: var(--text-dark);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
    transition: color 0.2s;
}

.nl-grid-card:hover .nl-grid-title {
    color: var(--fpt-orange);
}

/* ── Empty State ── */
.nl-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.nl-empty i {
    font-size: 48px;
    color: #ddd;
    display: block;
    margin-bottom: 16px;
}

/* ── Pagination ── */
.nl-pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.nl-pagination {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nl-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    background: white;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.nl-page-btn:hover:not(:disabled) {
    border-color: var(--fpt-orange);
    color: var(--fpt-orange);
}

.nl-page-btn.active {
    background: var(--fpt-orange);
    border-color: var(--fpt-orange);
    color: white;
}

.nl-page-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .nl-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nl-featured {
        grid-template-columns: 1fr;
    }

    .nl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .nl-grid {
        grid-template-columns: 1fr;
    }

    .nl-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── Skeleton inside news-list ── */
.nl-skeleton .nl-featured-img,
.nl-skeleton .nl-grid-img {
    animation: skShimmer 1.5s infinite;
    background: linear-gradient(90deg, #ececec 25%, #f8f8f8 50%, #ececec 75%);
    background-size: 200% 100%;
}

/* ══════════════════════════════════════════════════
   STORY SUBMISSION POPUP MODAL
══════════════════════════════════════════════════ */

/* ── Overlay — Scrollable container ── */
.story-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 29, 58, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: flex-start;
    /* let modal start near top when tall */
    justify-content: center;
    padding: 32px 20px;
    /* top breathing room */
    overflow-y: auto;
    /* overlay scrolls, not the card */
    overflow-x: hidden;
    animation: storyOverlayIn 0.2s ease;
}

/* Center vertically when modal fits viewport */
@supports (align-items: safe center) {
    .story-overlay {
        align-items: safe center;
    }
}

.story-overlay[hidden] {
    display: none;
}

@keyframes storyOverlayIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ── Modal Card ── */
.story-modal {
    position: relative;
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 640px;
    /* no max-height or overflow-y — let overlay handle scroll */
    overflow: hidden;
    /* kill horizontal scrollbar */
    padding: 40px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
    animation: storyModalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Keep modal from being taller than needed */
    flex-shrink: 0;
    margin: auto;
    /* vertical centering within flex overlay */
}

@keyframes storyModalIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Better close button — proper 44x44px touch target */
.story-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    /* SKILL: ≥44px touch target */
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    color: #555;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    z-index: 2;
    flex-shrink: 0;
}

.story-close:hover {
    background: #ffe5d8;
    color: var(--fpt-orange);
}

/* ── Modal Header ── */
.story-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.story-modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fpt-orange) 0%, #ff8c42 100%);
    color: white;
    font-size: 22px;
    margin-bottom: 14px;
}

.story-modal-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 6px;
    letter-spacing: -0.3px;
}

.story-modal-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* ── Form Layout ── */
.story-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.story-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.story-field--full {
    grid-column: 1 / -1;
}

.story-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.story-field label span {
    color: var(--fpt-orange);
}

.story-field input,
.story-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-dark);
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    box-sizing: border-box;
    resize: vertical;
}

.story-field input:focus,
.story-field textarea:focus {
    outline: none;
    border-color: var(--fpt-orange);
    background: white;
    box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.12);
}

.story-field input[aria-invalid="true"],
.story-field textarea[aria-invalid="true"] {
    border-color: #e03030;
}

.story-error {
    font-size: 12px;
    color: #e03030;
    min-height: 16px;
}

/* ── File Upload ── */
.story-file-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1.5px dashed #ccc;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    background: #fafafa;
    width: 100%;
    box-sizing: border-box;
}

.story-file-label:hover {
    border-color: var(--fpt-orange);
    color: var(--fpt-orange);
    background: #fff8f4;
}

.story-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

/* ── Actions Row ── */
.story-actions {
    display: flex;
    justify-content: center;
    margin-top: 6px;
}

.story-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 40px;
    background: var(--fpt-orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    width: 100%;
}

.story-submit:hover:not(:disabled) {
    background: #023d80;
    transform: translateY(-1px);
}

.story-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ── Success State ── */
.story-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    gap: 12px;
    animation: storyModalIn 0.4s ease;
}

.story-success[hidden] {
    display: none;
}

.story-success i {
    font-size: 52px;
    color: #34c759;
}

.story-success strong {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
}

.story-success p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .story-modal {
        padding: 28px 20px;
    }

    .story-row {
        grid-template-columns: 1fr;
    }

    .story-modal-title {
        font-size: 18px;
    }
}

/* ──────────────────────────────────────────────────
   SCROLL-TO-TOP FAB
   ────────────────────────────────────────────────── */
.scroll-top-fab {
    position: fixed;
    right: 32px;
    bottom: 32px;
    width: 48px;
    height: 48px;
    background: var(--fpt-orange);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-top-fab.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-fab:hover {
    background: #003B8E;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.scroll-top-fab i {
    transition: transform 0.3s ease;
}

.scroll-top-fab:hover i {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-top-fab {
        right: max(16px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
        width: 44px;
        /* Minimum touch target size 44px */
        height: 44px;
    }
}

/* ──────────────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS (UI/UX Pro Max)
   ────────────────────────────────────────────────── */

/* Base reveal class - hidden state */
.reveal {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Apple-like smooth ease */
    will-change: opacity, transform;
}

/* Default Fade Up */
.reveal-fade-up {
    transform: translateY(30px);
}

/* Fade Down */
.reveal-fade-down {
    transform: translateY(-30px);
}

/* Fade Left (slides in from right) */
.reveal-fade-left {
    transform: translateX(30px);
}

/* Fade Right (slides in from left) */
.reveal-fade-right {
    transform: translateX(-30px);
}

/* Zoom In */
.reveal-zoom {
    transform: scale(0.9);
}

/* Active state - triggers when observed */
.reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    /* Reset transforms */
}

/* ── Staggered Delays ── */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ── Accessibility ── */
/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   INTERACTIVE VIETNAM MAP STYLES
   ═══════════════════════════════════════════════════════════════ */

.interactive-map-container {
    position: relative;
    width: 200px;
    height: 480px;
    flex-shrink: 0;
}

.vietnam-svg-map {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.2));
}

/* Province base styling */
.province {
    fill: rgba(0, 102, 166, 0.7);
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.province:hover,
.province.active {
    fill: var(--fpt-orange);
    stroke: #fff;
    stroke-width: 1.5;
    filter: drop-shadow(0 0 6px rgba(255, 102, 0, 0.6));
    transform-origin: center;
}

/* Capital cities have special styling */
.province.capital {
    fill: rgba(0, 146, 60, 0.7);
    stroke: rgba(255, 255, 255, 0.8);
    stroke-width: 1;
}

.province.capital:hover,
.province.capital.active {
    fill: var(--fpt-orange);
    filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.8));
}

/* Map Tooltip Container */
.map-tooltip-container {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.map-tooltip-container.visible {
    opacity: 1;
    transform: scale(1);
}

.map-tooltip-inner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 16px;
    min-width: 180px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 102, 166, 0.1);
    border-left: 4px solid var(--fpt-orange);
}

.tooltip-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tooltip-icon {
    width: 28px;
    height: 28px;
    background: var(--fpt-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

.tooltip-header h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--fpt-orange);
    margin: 0;
    line-height: 1.2;
}

.tooltip-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

.tooltip-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tooltip-stat .stat-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--fpt-orange);
    line-height: 1;
}

.tooltip-stat .stat-label {
    font-size: 11px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tooltip-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(0, 102, 166, 0.08) 0%, rgba(0, 102, 166, 0.04) 100%);
    border-radius: 8px;
    font-size: 12px;
    color: var(--fpt-orange);
    font-weight: 600;
}

.tooltip-highlight i {
    color: var(--fpt-orange);
    font-size: 10px;
}

/* Hide old map elements */
.vietnam-map-bg,
.map-point,
.map-tooltip {
    display: none !important;
}

/* Responsive Map */
@media (max-width: 1024px) {
    .interactive-map-container {
        width: 220px;
        height: 420px;
    }

    .map-tooltip-inner {
        min-width: 160px;
        padding: 12px;
    }

    .tooltip-stat .stat-value {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .footer-grid-refine {
        flex-direction: column;
        gap: 40px;
    }

    .interactive-map-container {
        width: 100%;
        max-width: 300px;
        height: 450px;
        margin: 0 auto;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
 * HELP LIST PAGE STYLES
 * ═══════════════════════════════════════════════════════════════════════════ */

.help-list-page {
    background: #f8f9fa;
}

.help-hero-banner {
    background: linear-gradient(135deg, #F37021 0%, #E86515 100%);
}

/* Status Labels */
.hl-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.hl-status i {
    font-size: 8px;
}

.hl-status-active {
    background: #FFE1BA;
    color: #F37021;
}

.hl-status-completed {
    background: rgba(0, 102, 166, 0.15);
    color: #0066A6;
}

/* Featured Card Help Override */
.hl-featured-card .nl-featured-img i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: rgba(255, 255, 255, 0.8);
}

/* Grid Card Help Override */
.hl-grid-card .nl-grid-img {
    position: relative;
}

/* Loading Spinner */
.nl-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 20px;
    color: var(--text-muted);
}

.nl-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e0e0e0;
    border-top-color: var(--fpt-orange);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TOAST NOTIFICATION SYSTEM
   Accessible toast notifications with animations
   ═══════════════════════════════════════════════════════════════════════════ */

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    width: calc(100% - 40px);
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    pointer-events: auto;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.toast-show {
    transform: translateX(0);
    opacity: 1;
}

.toast-hide {
    animation: toast-slide-out 0.3s ease forwards;
}

@keyframes toast-slide-out {
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

.toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-message {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    word-wrap: break-word;
}

.toast-close {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: #666;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.toast-close:hover,
.toast-close:focus {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

.toast-close:focus {
    outline: 2px solid var(--fpt-orange);
    outline-offset: 2px;
}

/* Toast Types */
.toast-success {
    border-left: 4px solid var(--fpt-green);
}

.toast-success .toast-icon {
    color: var(--fpt-green);
}

.toast-error {
    border-left: 4px solid #dc3545;
}

.toast-error .toast-icon {
    color: #dc3545;
}

.toast-warning {
    border-left: 4px solid #ffc107;
}

.toast-warning .toast-icon {
    color: #e5a800;
}

.toast-info {
    border-left: 4px solid var(--fpt-orange);
}

.toast-info .toast-icon {
    color: var(--fpt-orange);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
    }

    .toast {
        padding: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ACCESSIBILITY ENHANCEMENTS
   Focus states, skip links, and screen reader utilities
   ═══════════════════════════════════════════════════════════════════════════ */

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100000;
    padding: 12px 24px;
    background: var(--fpt-orange);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Focus visible for keyboard navigation */
:focus-visible {
    outline: 2px solid var(--fpt-orange);
    outline-offset: 2px;
}

/* Remove focus outline for mouse users */
:focus:not(:focus-visible) {
    outline: none;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Keyboard focus indicator for interactive elements */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--fpt-orange);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .toast {
        border: 2px solid currentColor;
    }

    :focus-visible {
        outline-width: 3px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .toast {
        transition: opacity 0.1s;
        transform: none;
    }

    .toast-show {
        transform: none;
    }

    .toast-hide {
        animation: none;
        opacity: 0;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   MULTI-DEVICE RESPONSIVE IMPROVEMENTS (ui-ux-pro-max)
   ═══════════════════════════════════════════════════════════════ */

/* ── Prevent horizontal overflow on all devices ────────────────── */
body {
    overflow-x: hidden;
}

/* ── Dropdown trigger — reset button styles so it looks same as before ─ */
button.dropdown-trigger {
    font-family: inherit;
    cursor: pointer;
}

button.dropdown-trigger:focus-visible {
    outline: 2px solid var(--fpt-orange);
    outline-offset: 2px;
}

/* ── Touch Targets — ensure minimum 44x44px for interactive elements ─── */
/* We don't apply this to dots/slider nav directly via height/width as it breaks their shape */
.dropdown-trigger,
.story-close,
.news-cat-filter,
.btn,
.hero-cta-btn,
.btn-pill-black,
.btn-intro-primary,
.btn-intro-secondary,
.mobile-menu-toggle {
    min-height: 20px;
}

/* Expand touch target for dots without resizing them */
.hero-dot,
.dot {
    position: relative;
}

.hero-dot::after,
.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
}

.story-close {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ── Mobile tap active feedback (hover alternative for touch devices) ─── */
@media (hover: none) and (pointer: coarse) {
    .hero-cta-btn:active {
        opacity: 0.85;
        transform: scale(0.98);
    }

    .btn:active,
    .btn-pill-black:active,
    .btn-intro-primary:active,
    .btn-intro-secondary:active,
    .story-close:active {
        opacity: 0.85;
        transform: scale(0.97);
    }

    .news-card-large:active,
    .news-card-small:active {
        opacity: 0.9;
    }

    /* Disable hover-based transforms on touch devices */
    .intro-img-box:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
}

/* ── Typography — fluid scaling with clamp() ───────────────────── */
.hero-title {
    font-size: clamp(32px, 8vw, 56px);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    line-height: 1.5;
}

.section-title-refine {
    font-size: clamp(24px, 5vw, 28px);
    line-height: 1.3;
}

.intro-content-box h3 {
    font-size: clamp(28px, 6vw, 38px);
    line-height: 1.3;
}

.featured-content h4 {
    font-size: clamp(18px, 4vw, 22px);
    line-height: 1.4;
}

.news-card-small h4,
.news-card-large h4 {
    line-height: 1.4;
}

/* ── Projects specific styles (missing classes) ──────────────── */
.nav-arrow {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: var(--fpt-orange);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.nav-arrow.left {
    left: 10px;
}

.nav-arrow.right {
    right: 10px;
}

@media (hover: hover) {
    .nav-arrow:hover {
        background: var(--fpt-orange);
        color: white;
    }
}

.projects-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.proj-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
}

.proj-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
}

.proj-indicator.active {
    background: var(--fpt-orange);
}

/* ── Mobile inputs — prevent iOS zoom (min 16px) ──────────────── */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    font-size: max(16px, 1rem);
}

/* ── Tablet specific overrides (768–1024px) ────────────────────── */
@media (max-width: 1024px) and (min-width: 769px) {
    .intro-grid-refine {
        padding: 60px 40px;
        gap: 30px;
    }

    .intro-content-box {
        padding: 20px 0 20px 20px;
    }

    .help-slider-container {
        height: 380px;
    }

    .help-slide {
        padding: 30px 40px;
    }

    .featured-content {
        padding: 20px 28px;
    }

    .report-summary-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /* Projects grid */
    .projects-layout-refine {
        padding: 20px 40px 60px;
    }

    .projects-grid-container {
        grid-template-columns: 1fr;
    }

    .img-box-large {
        height: 350px;
    }
}

/* ── Mobile specific overrides (≤768px) ────────────────────────── */
@media (max-width: 768px) {

    /* Intro section — stack vertically */
    .intro-grid-refine {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 30px;
    }

    .intro-img-box {
        min-height: 260px;
    }

    .intro-content-box {
        padding: 0;
    }

    /* Help section slider */
    .help-slider-container {
        height: 340px;
    }

    .help-slide {
        padding: 20px;
    }

    .featured-content {
        padding: 16px 20px;
        max-width: 100%;
        margin-bottom: 15px;
    }

    /* Report grid — single column on mobile */
    .report-summary-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .report-box {
        padding: 24px 20px;
    }

    /* Actions row — stack on mobile */
    .actions-row {
        flex-direction: column;
        gap: 10px;
        padding-top: 0;
    }

    /* News Grid & Card Optimizations */
    .news-grid-main {
        gap: 20px;
        margin-bottom: 20px;
    }

    .news-grid-sub {
        gap: 15px;
        margin-bottom: 25px;
    }

    .news-card-content {
        padding: 10px 0 12px 0;
    }

    .news-category-badge {
        margin-bottom: 8px;
    }

    .news-card-large h3,
    .news-card-small h4 {
        margin-bottom: 8px;
        line-height: 1.3;
    }

    /* Section header — Row layout on mobile */
    .section-header-refine {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 0px;
        margin-bottom: 20px;
    }

    .card-img-placeholder {
        height: 180px;
    }

    .header-left,
    .header-right {
        display: contents;
    }

    .section-title-refine {
        width: 100%;
        margin-bottom: 10px;
    }

    .custom-dropdown {
        width: calc(52% - 7.5px);
        margin-top: 0;
    }

    .dropdown-trigger {
        width: 100%;
        padding: 10px 12px;
        justify-content: space-between;
    }

    /* Fix the solid orange block issue on mobile for the split-pill layout */
    .split-pill-trigger {
        padding: 0 !important;
    }

    /* Prevent dropdown text from overflowing its half of the screen */
    .dropdown-trigger span.split-pill-label {
        display: none;
        /* Hide label to save space on small screens if needed, otherwise use ellipsis */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Mobile category filter toggle button */
    .mobile-filter-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: #f8f9fa;
        border: 1px solid #ddd;
        padding: 10px 12px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        color: #333;
        transition: all 0.2s ease;
        width: calc(50% - 7.5px);
        margin-bottom: 0;
    }

    .mobile-filter-toggle[aria-expanded="true"] {
        border-color: var(--fpt-orange);
        color: var(--fpt-orange);
    }

    /* Target the container as a toggleable dropdown */
    .category-filters {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        background: white;
        border-radius: 8px;
        padding: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        margin-top: 5px;
        flex-wrap: wrap;
        flex-direction: row;

        /* Toggle visibility */
        display: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .category-filters.show {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Dropdown menu mobile fix (prevent overflowing out of screen) */
    .dropdown-menu {
        left: 0;
        right: auto;
        width: calc(100vw - 40px);
        /* Fill most of the screen width */
    }

    /* Intro CTA buttons — stack vertically on mobile */
    .intro-cta-group {
        flex-direction: column;
        gap: 12px;
    }

    .btn-intro-primary,
    .btn-intro-secondary {
        justify-content: center;
        width: 100%;
        padding: 14px 24px;
    }

    /* Section subtitle center — smaller on mobile */
    .section-subtitle-center {
        font-size: 20px;
        margin-bottom: 24px;
    }

    /* Stats cards — always 2-col on mobile */
    .stats-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Report summary keeps 2-col too */
    .report-summary-grid-refine {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    /* Report box — reduce padding on mobile */
    .report-box-refine {
        padding: 20px 16px;
        border-radius: 12px;
    }

    /* Help section header — simple flex row (no filter button) */
    #can-giup-do .section-header-refine {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 12px;
        padding-bottom: 16px;
    }

    #can-giup-do .header-left,
    #can-giup-do .header-right {
        display: block;
        /* Restore normal display for help section */
    }

    #can-giup-do .section-title-refine {
        grid-column: auto;
        /* Undo span full-width */
        margin-bottom: 0;
        flex-shrink: 0;
    }

    #can-giup-do .custom-dropdown {
        flex-shrink: 1;
        min-width: 0;
        width: calc(100% - 7.5px);
        right: 35px;
    }

    #can-giup-do.help-section-refine {
        margin-top: 20px;
        padding: 30px 0 !important;
        margin-bottom: 20px;
    }

    #helpCampaignsContainer {
        padding: 15px;
    }

    #can-giup-do .help-campaigns-grid {
        margin-top: 20px;
    }

    #can-giup-do .dropdown-menu {
        /* Since this dropdown is on the far right, anchor it to the right */
        left: auto;
        right: 0;
        width: 250px;
        max-width: calc(100vw - 40px);
    }

    /* Projects Grid Mobile */
    .projects-layout-refine {
        padding: 20px 0 60px;
    }

    .projects-grid-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .projects-side-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .img-box-large {
        height: 250px;
    }

    .img-box-small {
        height: 200px;
    }

    .stats-section-refine {
        padding: 20px 0 !important;
    }

    .report-section-refine {
        padding: 20px 0 !important;
    }
}

/* ── Small mobile (< 480px) ────────────────────────────────────── */
@media (max-width: 480px) {
    .section-padding {
        /* Reduce heavy spacing */
        padding: 10px 0;
    }

    /* Convert category filters to a sleek vertical list / dropdown style on tiny screens */
    .category-filters {
        flex-direction: column;
        gap: 8px;
        width: calc(100vw - 32px);
        /* match container padding 16px */
    }

    .news-cat-filter {
        width: 100%;
        margin: 0;
        justify-content: flex-start;
        text-align: left;
    }

    /* Tighter grid for tiny screens */
    .news-grid-main {
        gap: 15px;
    }

    .news-grid-sub {
        gap: 10px;
    }

    .news-card-content {
        padding: 8px 0 10px 0;
    }

    .container {
        /* Support safe areas on devices like iPhone X/11/12/13/14/15 */
        padding: 0 max(16px, env(safe-area-inset-right)) 0 max(16px, env(safe-area-inset-left));
    }

    .intro-grid-refine {
        padding: 24px 16px;
    }

    .help-slider-container {
        /* Ensure touch target min-heights do not squeeze content too much */
        height: max(320px, 60vh);
        min-height: 320px;
    }

    /* Move slider nav arrows completely to the sides and increase size */
    .help-nav {
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.5);
    }

    .help-nav.prev {
        left: 0;
        border-radius: 0 8px 8px 0;
    }

    .help-nav.next {
        right: 0;
        border-radius: 8px 0 0 8px;
    }

    .hero-content-wrapper {
        padding: 0 max(20px, env(safe-area-inset-right)) 0 max(20px, env(safe-area-inset-left));
        /* Ensure CTA buttons are in thumb zone */
        margin-top: auto;
        margin-bottom: 20vh;
    }

    .hero-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   V2 LAYOUT — Header Tools & Language Switcher
   ═══════════════════════════════════════════════════════════════════════════ */

.header-tools {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 20px;
}

.header-tool-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.header-tool-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
}

.lang-active {
    color: var(--fpt-orange);
    cursor: pointer;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.4);
}

.lang-inactive {
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.2s;
}

.lang-inactive:hover {
    color: white;
}

/* ═══════════════════════════════════════════════════════════════════════════
   V2 LAYOUT — Footer with Orange CTA + Dark Blue Bottom
   ═══════════════════════════════════════════════════════════════════════════ */

/* Orange CTA Section */
.footer-cta-section {
    background: linear-gradient(135deg, #F37021 0%, #E86515 100%);
    padding: 80px 20px;
    text-align: center;
    border-radius: 30px 30px 0 0;
}

.footer-cta-title {
    font-size: 32px;
    font-weight: 900;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: white;
    color: #F37021;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-cta-btn:hover {
    background: #002C6B;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Dark Blue Bottom Section */
.footer-dark-section {
    background: linear-gradient(180deg, #002C6B 0%, #001845 100%);
    padding: 60px 0 0;
    color: white;
}

.footer-grid-v2 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-v2 .footer-col {
    color: white;
}

.footer-v2 .footer-logo {
    height: 40px;
    margin-bottom: 16px;
}

.footer-v2 .footer-slogan {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-v2 .social-links {
    display: flex;
    gap: 12px;
}

.footer-v2 .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.footer-v2 .social-icon:hover {
    background: var(--fpt-orange);
    transform: translateY(-3px);
}

.footer-v2 .footer-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-v2 .footer-menu {
    list-style: none;
}

.footer-v2 .footer-menu li {
    margin-bottom: 12px;
}

.footer-v2 .footer-menu a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-v2 .footer-menu a:hover {
    color: var(--fpt-orange);
}

.footer-v2 .contact-info {
    list-style: none;
}

.footer-v2 .contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.5;
}

.footer-v2 .contact-info i {
    color: var(--fpt-orange);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-v2 .contact-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-v2 .contact-link:hover {
    color: var(--fpt-orange);
}

.footer-divider-v2 {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer-bottom-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 900px) {
    .footer-grid-v2 {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-cta-title {
        font-size: 24px;
    }

    .footer-bottom-v2 {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-grid-v2 {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    /* Brand col and Contact col span full width */
    .footer-grid-v2 .footer-col:first-child,
    .footer-grid-v2 .footer-col:last-child {
        grid-column: span 2;
        text-align: center;
    }

    .footer-v2 .contact-info li {
        justify-content: center;
    }

    .footer-col h4.footer-title::after {
        left: 0;
        transform: none;
    }

    .footer-col:first-child h4.footer-title::after,
    .footer-col:last-child h4.footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    p.footer-slogan {
        margin: auto;
    }

    .header-tools {
        margin-left: 0;
        margin-top: 16px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   V2 OVERRIDES (Figma Feedback Fixes)
   ═══════════════════════════════════════════════════════════════════════════ */

/* 1. Menu colors & Header background */
header#site-header-el {
    background: linear-gradient(90deg, #FF9100 0%, #FF4110 100%) !important;
}

header#site-header-el.scrolled {
    background: linear-gradient(90deg, #FF9100 0%, #FF4110 100%) !important;
    box-shadow: 0 4px 20px rgba(255, 65, 16, 0.3);
}

nav ul li a {
    color: #ffffff !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

nav ul li a:hover,
nav ul li a.active {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    font-weight: 800;
}

nav ul li a::after {
    background: #ffffff !important;
}

.header-tool-btn .fas.fa-search {
    color: white !important;
    font-size: 20px;
}

/* 2. Fully rounded buttons everywhere */
.btn,
.btn-black,
.btn-outline-black,
.btn-popup-cta,
.btn-pill-black {
    border-radius: 50px !important;
}

/* Project cards rounded further */
.news-card-large,
.news-card-small,
.project-card,
.stats-card,
.report-box-refine,
.help-slider-container {
    border-radius: 20px !important;
}

/* 3. Help Section tweaks */
.help-section-refine {
    background: linear-gradient(135deg, #001845 0%, #002C6B 100%);
    padding: 60px 0 !important;
    margin-bottom: 60px;
}

.help-slide {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.help-slide .featured-content {
    background: transparent !important;
    box-shadow: none !important;
    color: white;
    width: 60%;
    margin-bottom: 0;
    border-left: none;
    padding-left: 0;
}

.help-slide .featured-content h4 {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
}

.help-slide .featured-content p {
    color: rgba(255, 255, 255, 0.8);
}

.help-slide .featured-img-placeholder,
.help-slide img {
    border-radius: 20px;
    width: 40%;
    object-fit: cover;
}

/* 4. Projects horizontal slider layout */
.projects-slider-v2 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.projects-slider-v2::-webkit-scrollbar {
    display: none;
}

.projects-slider-v2 .project-card {
    min-width: 320px;
    scroll-snap-align: start;
    flex-shrink: 0;
    background: white;
    box-shadow: var(--shadow-soft);
}

/* 5. Intro Section tweaks */
.intro-grid-refine {
    background: var(--bg-cream);
}

.intro-content-box h3 {
    color: var(--fpt-orange);
}

/* 6. Fix primary orange buttons */
.btn-primary-orange,
.btn-pill-black {
    background-color: var(--fpt-orange) !important;
    border-color: var(--fpt-orange) !important;
    color: white !important;
}

.btn-primary-orange:hover,
.btn-pill-black:hover {
    background-color: #E86515 !important;
}

/* === TẠM ẨN: hero-overlay & hero-content-wrapper === */
.hero-overlay,
.hero-content-wrapper,
.hero-content-wrapper.reveal,
.hero-content-wrapper.reveal-fade-down,
.hero-content-wrapper.reveal.active {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* ===================================================== */

/* Back to chungta - left of logo */
.header-left-group {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.header-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 16px;
    flex-shrink: 0;
}

.back-to-chungta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
    white-space: nowrap;
    padding: 6px 10px 6px 0;
    cursor: pointer;
}


/* ===================================================== */
/* FINANCE CARDS (Hanh Trinh Vi Cong Dong 2026)             */
/* ===================================================== */

.fin-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
    font-family: 'Inter', sans-serif;
}

.fin-card {
    background-color: #001C54;
    border-radius: 12px;
    padding: 32px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.fin-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.fin-total-amount {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    font-variant-numeric: tabular-nums;
}

.fin-total-thu {
    color: #FF5A00;
}

.fin-total-chi {
    color: #00FF00;
}

.fin-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.fin-detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fin-detail-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    line-height: 1.4;
}

.fin-detail-amount {
    font-size: 18px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.fin-detail-amount.thu-detail {
    color: #FF9900;
}

.fin-detail-amount.chi-detail {
    color: #00FF00;
}

.fin-unit-text {
    font-size: 14px;
    color: #4B70DD;
}

.fin-update-note {
    font-size: 13px;
    color: #E86A33;
    opacity: 0.9;
    margin-top: auto;
}

@media (max-width: 768px) {
    .fin-cards-container {
        grid-template-columns: 1fr;
    }

    .fin-details-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================================== */
/* YEARLY REPORT CARDS (Bao Cao Nam > 2024)             */
/* ===================================================== */

.fin-yearly-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: 'Inter', sans-serif;
    margin-top: 20px;
}

.fin-yearly-divider {
    height: 1px;
    background-color: #D6E4FF;
    width: 100%;
}

.fin-yearly-row {
    display: flex;
    align-items: stretch;
    border-radius: 12px;
    border: 1px solid #D6E4FF;
    background-color: #F8FBFF;
    overflow: hidden;
}

.fin-yearly-left {
    background-color: #EBF3FF;
    padding: 32px 24px;
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid #D6E4FF;
}

.fin-yearly-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.fin-yearly-title.thu {
    color: #FF5A00;
}

.fin-yearly-title.chi {
    color: #00923C;
}

.fin-yearly-total {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}

.fin-yearly-total.thu {
    color: #FF5A00;
}

.fin-yearly-total.chi {
    color: #00A63F;
}

.fin-yearly-right {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    background-color: #FFFFFF;
}

.fin-yearly-details-row {
    display: flex;
    flex-wrap: wrap;
}

.fin-yearly-details-row:not(:last-child) {
    border-bottom: 1px solid #E6EFFF;
}

.fin-yearly-item {
    flex: 1;
    min-width: 200px;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-right: 1px solid #E6EFFF;
}

.fin-yearly-item:last-child {
    border-right: none;
}

.fin-yearly-item-label {
    font-size: 15px;
    color: #334155;
    font-weight: 500;
    line-height: 1.4;
}

.fin-yearly-item-amount {
    font-size: 20px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.fin-yearly-item-amount.thu {
    color: #F37021;
}

.fin-yearly-item-amount.chi {
    color: #00B14F;
}

/* Compact Report Card (Used for history < 2025) */
.compact-report-card {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: transparent;
    padding: 0;
    gap: 32px;
}

.compact-report-left {
    flex: 0 0 320px;
    background: #f2f7fd;
    border: 1px solid #b3d4ff;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.compact-report-lbl {
    color: var(--fpt-orange);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.compact-report-val {
    color: var(--fpt-orange);
    font-weight: 800;
    font-size: 2.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    line-height: 1;
}

.compact-report-val .val-unit {
    font-size: 1.5rem;
}

.compact-report-right {
    flex: 1;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 32px;
}

.compact-report-detail-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 8px;
    padding-bottom: 8px;
}

.compact-report-detail-item:not(:first-child) {
    border-left: 1px solid #d1e3ff;
    padding-left: 32px;
}

.detail-item-lbl {
    color: #1e3050;
    font-size: 1.05rem;
    line-height: 1.4;
    margin: 0;
    min-height: 48px;
}

.detail-item-val {
    color: var(--fpt-orange);
    font-weight: 700;
    font-size: 1.75rem;
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: auto;
}

.detail-item-val .val-unit {
    font-size: 1.25rem;
}

@media (max-width: 992px) {
    .fin-yearly-row {
        flex-direction: column;
    }

    .fin-yearly-left {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #D6E4FF;
        padding: 24px;
    }

    .fin-yearly-item {
        border-bottom: 1px solid #E6EFFF;
        border-right: none;
        padding: 16px 24px;
        flex: none;
        width: 100%;
    }

    .fin-yearly-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .compact-report-card {
        flex-direction: column;
        gap: 20px;
    }

    .compact-report-left {
        flex: auto;
        width: 100%;
    }

    .compact-report-right {
        flex-direction: column;
        gap: 0;
    }

    .compact-report-detail-item:not(:first-child) {
        border-left: none;
        border-top: 1px solid #d1e3ff;
        padding-left: 0;
        padding-top: 15px;
        margin-top: 15px;
    }

    .compact-report-val {
        font-size: 2rem;
    }

    .detail-item-val {
        font-size: 1.5rem;
    }

    .fin-yearly-total {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .fin-yearly-item {
        padding: 12px 20px;
        width: 100%;
    }

    .fin-yearly-item-label {
        font-size: 14px;
    }

    .fin-yearly-item-amount {
        font-size: 18px;
    }

    .detail-item-lbl {
        min-height: auto;
        margin-bottom: 5px;
    }
}