/* CSS Variables */
:root {
    --color-primary: #063a63; /* Dark Navy */
    --color-secondary: #0a66a9; /* Medium Blue */
    --color-tertiary: #00aeed; /* Light Blue */
    --color-accent: #f88532; /* Orange */
    --color-accent-light: #fff3e8;
    --color-bg-light: #f2f8fc;
    --color-text-main: #063a63;
    --color-text-muted: #5c7182;
    --color-white: #ffffff;
    --color-placeholder: #d8e6f1;
    --color-placeholder-text: #9ab0c2;
    
    --font-main: 'Be Vietnam Pro', sans-serif;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    width: 100%;
}

.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mt-64 { margin-top: 64px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-orange {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-orange:hover { background-color: #e57322; }

.btn-outline {
    border: 1.5px solid var(--color-white);
    color: var(--color-white);
}

.btn-outline:hover { background-color: rgba(255,255,255,0.1); }

.btn-blue {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-blue:hover { background-color: var(--color-primary); }

.btn-outline-blue {
    border: 1.5px solid var(--color-secondary);
    color: var(--color-secondary);
}

.btn-outline-blue:hover { background-color: var(--color-bg-light); }

.link-arrow {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
}
.link-arrow:hover { text-decoration: underline; }

/* Section Headers */
.section-subtitle {
    display: block;
    color: var(--color-accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.54px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-subtitle.color-light-blue {
    color: var(--color-tertiary);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.36px;
    margin-bottom: 12px;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto;
}

/* TOP BAR */
.top-bar {
    background-color: var(--color-primary);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 10px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.social-icons {
    height: 22px;
}

.language-switch {
    color: var(--color-tertiary);
    font-weight: 500;
}

.language-switch .inactive {
    color: rgba(255,255,255,0.5);
}

/* HEADER */
.header {
    background-color: var(--color-white);
    box-shadow: 0 2px 6px rgba(5,59,99,0.08);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo img {
    height: 60px;
}

.nav-menu {
    display: flex;
    gap: 24px;
    flex: 1;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
}

.nav-menu a.active, .nav-menu a:hover {
    color: var(--color-secondary);
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.search-icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-primary);
    width: 32px;
    height: 32px;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(127deg, #063a63 0%, #0a66a9 77%);
    height: 580px;
    position: relative;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    pointer-events: none;
}

.shape-1 { right: -50px; top: 60px; width: 920px; }
.shape-2 { right: 0; top: -40px; width: 1280px; }
.shape-3 { right: -100px; top: 170px; width: 600px; }

.hero-container {
    display: flex;
    justify-content: space-between;
    height: 100%;
    position: relative;
    z-index: 10;
}

.hero-content {
    padding-top: 96px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.hero-badge {
    background: rgba(255,255,255,0.12);
    padding: 8px 16px 8px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-badge span {
    color: var(--color-white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.32px;
}

.hero-title {
    color: var(--color-white);
    font-size: 58px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.16px;
}

.hero-desc {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
}

.hero-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
}

.dot.active {
    width: 26px;
    background: var(--color-white);
}

.hero-image-wrapper {
    position: absolute;
    right: 80px;
    top: 90px;
}

.hero-image-placeholder {
    width: 560px;
    min-height: 600px; height: 600px;
    border: 1.5px dashed var(--color-white);
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    font-weight: 500;
}

.hero-stats {
    position: absolute;
    bottom: -30px;
    left: -60px;
    background: var(--color-white);
    padding: 18px 22px;
    border-radius: 14px;
    box-shadow: 0 16px 36px rgba(5,59,99,0.22);
}

.hero-stats h3 {
    color: var(--color-secondary);
    font-size: 26px;
    font-weight: 800;
}

.hero-stats p {
    color: var(--color-text-muted);
    font-size: 13px;
}

/* QUICK ACCESS */
.quick-access {
    position: relative;
    margin-top: -78px;
    z-index: 20;
    margin-bottom: 60px;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(5,59,99,0.14);
    padding: 8px;
    gap: 8px;
}

.quick-card {
    background: var(--color-bg-light);
    border-radius: 14px;
    padding: 22px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    transition: transform 0.3s;
    cursor: pointer;
}

.quick-card:hover {
    transform: translateY(-5px);
}

.quick-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
}

.bg-orange { background-color: var(--color-accent); }
.bg-blue-light { background-color: rgba(0,174,237,0.14); }

.quick-card h4 {
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 600;
}

.quick-card p {
    color: var(--color-text-muted);
    font-size: 12px;
}

/* SERVICES */
.services {
    background: var(--color-bg-light);
    padding: 140px 0 88px;
    margin-top: -120px; /* Adjust overlap */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.service-card {
    background: var(--color-white);
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(5,59,99,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-5px); }

.service-img {
    height: 170px;
    background: var(--color-placeholder);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-placeholder-text);
    font-size: 13px;
    font-weight: 500;
}

.service-info {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.service-info h3 {
    font-size: 17px;
    color: var(--color-primary);
}

.service-info p {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: auto;
}

/* NEWS */
.news {
    padding: 88px 0;
    background: var(--color-white);
}

.notice-bar {
    background: var(--color-accent-light);
    border: 1px solid var(--color-accent);
    border-radius: 12px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.notice-badge {
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    letter-spacing: 1px;
}

.notice-text {
    flex: 1;
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 500;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.news-card {
    background: var(--color-white);
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(5,59,99,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-img {
    height: 210px;
    background: var(--color-placeholder);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-placeholder-text);
}

.news-info {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-category {
    background: var(--color-bg-light);
    color: var(--color-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.news-date {
    color: var(--color-text-muted);
    font-size: 12px;
}

.news-info h3 {
    font-size: 17px;
    color: var(--color-primary);
    line-height: 1.4;
    margin-bottom: auto;
}

/* MEDIA (VIDEO) */
.media-section {
    background: linear-gradient(112deg, #063a63 0%, #0a66a9 83%);
    padding: 88px 0;
}

.media-grid {
    display: flex;
    gap: 24px;
    margin-top: 40px;
}

.main-video {
    flex: 1;
}

.video-placeholder {
    height: 420px;
    background: rgba(255,255,255,0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
}

.video-list {
    width: 432px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.video-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.07);
    cursor: pointer;
    transition: background 0.3s;
}

.video-item:hover, .video-item.active {
    background: rgba(255,255,255,0.14);
}

.video-thumb {
    width: 132px;
    height: 84px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
}

.video-info h4 {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

.video-info span {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}

/* GALLERY */
.gallery {
    background: var(--color-bg-light);
    padding: 88px 0 96px;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-row.mt-20 {
    margin-top: 20px;
}

.gallery-img {
    height: 190px;
    background: var(--color-placeholder);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-placeholder-text);
}

/* FOOTER */
.footer {
    background: var(--color-primary);
    color: var(--color-white);
}

.footer-content {
    display: flex;
    padding: 64px 80px 44px;
    gap: 56px;
}

.footer-col-main {
    flex: 1;
}

.footer-logo {
    width: 72px;
    height: 72px;
    margin-bottom: 16px;
}

.footer-col-main h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-col-main p {
    font-size: 14px;
    opacity: 0.72;
    line-height: 1.7;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col h4 {
    color: var(--color-tertiary);
    font-size: 11px;
    letter-spacing: 1.32px;
    margin-bottom: 6px;
}

.footer-col a, .footer-col p {
    font-size: 14px;
    opacity: 0.72;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    background: rgba(255,255,255,0.06);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    opacity: 0.6;
}

/* =========================================
   GIỚI THIỆU PAGE (02)
========================================= */
.page-header {
    background: linear-gradient(112deg, #063a63 0%, #0a66a9 83%);
    padding: 60px 0;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}
.page-header .breadcrumb {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 20px;
}
.page-header .page-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
}
.page-header .page-desc {
    font-size: 16px;
    opacity: 0.9;
}

.history-section { padding: 80px 0; }
.history-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}
.history-image { flex: 1; min-height: 600px; height: 600px; border-radius: 16px; overflow: hidden; }
.history-content { flex: 1; }
.history-text {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 40px;
}
.history-stats { display: flex; gap: 20px; align-items: stretch; }
.stat-item { flex: 1; background: #f8fafc; padding: 24px; border-radius: 16px; }
.stat-item h3 { color: var(--color-primary); font-size: 32px; font-weight: 800; margin-bottom: 4px; }
.stat-item p { color: var(--color-text-muted); font-size: 14px; margin: 0; }

.vision-section { background: var(--color-bg-light); padding: 80px 0; }
.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.vision-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(5,59,99,0.05);
}
.vision-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    border-radius: 12px;
}
.vision-card h3 { color: var(--color-primary); font-size: 18px; margin-bottom: 12px; }
.vision-card p { color: var(--color-text-muted); font-size: 14px; }

.org-section { padding: 80px 0; }
.org-chart {
    width: 100%;
    min-height: 600px; height: 600px;
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
}

.facility-section { background: var(--color-bg-light); padding: 80px 0; }
.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.facility-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(5,59,99,0.05);
}
.facility-img { min-height: 240px; height: 240px; }
.facility-info { padding: 24px; }
.facility-info h3 { color: var(--color-primary); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.facility-info p { color: var(--color-text-muted); font-size: 14px; }

.placeholder-img {
    background-color: var(--color-placeholder);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-placeholder-text);
    font-size: 13px;
    width: 100%;
}
.bg-placeholder { background-color: var(--color-placeholder); }

/* =========================================
   DỊCH VỤ PAGE (03, 04, 05) - 2 COLUMNS LAYOUT
========================================= */
.page-content {
    padding: 60px 0;
    background: var(--color-white);
}
.layout-2-cols {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Sidebar */
.sidebar {
    width: 300px;
    flex-shrink: 0;
}
.sidebar-menu {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(6, 58, 99, 0.05);
}
.sidebar-title,
.sidebar-menu .sidebar-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-primary);
    padding: 16px 24px;
    margin: 0;
    line-height: 1.3;
}
.sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0 0 12px 0;
    gap: 0;
}
.sidebar-list li {
    margin: 0;
    padding: 0;
}
.sidebar-list a {
    display: block;
    padding: 14px 24px;
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.2s ease;
    line-height: 1.4;
    background: transparent;
}
.sidebar-list a:hover {
    background: #f8fafc;
    color: var(--color-primary);
}
.sidebar-list a.active {
    color: var(--color-secondary);
    font-weight: 600;
    background: #edf5fc;
}
.sidebar-search {
    display: flex;
    align-items: center;
    background: var(--color-white);
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.sidebar-search svg {
    width: 16px;
    height: 16px;
    color: #666;
    margin-right: 12px;
}
.sidebar-search input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-family: inherit;
    font-size: 14px;
}
.sidebar-support {
    background: var(--color-primary);
    border-radius: 16px;
    padding: 24px;
}
.sidebar-support h3 {
    font-size: 16px;
    color: var(--color-white);
    margin-bottom: 8px;
}
.sidebar-support p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
    line-height: 1.6;
}
.support-hotline {
    display: inline-block;
    color: var(--color-white);
    font-size: 20px;
    font-weight: 700;
}

/* Main Content List */
.main-content {
    flex: 1;
    min-width: 0;
}
.list-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.toolbar-text {
    font-size: 14px;
    color: var(--color-text-muted);
}
.toolbar-sort {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 500;
    cursor: pointer;
}

.service-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-list-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(5,59,99,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(5,59,99,0.1);
}
.service-list-img {
    height: 190px;
}
.service-list-info {
    padding: 20px;
}
.service-list-info h3 {
    font-size: 16px;
    color: var(--color-primary);
    margin-bottom: 8px;
}
.service-list-info p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}
.read-more {
    font-size: 14px;
    color: var(--color-secondary);
    font-weight: 600;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--color-white);
    color: var(--color-text-main);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.page-link.active {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Article Content Styles */
.article-title {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 12px;
}
.article-desc {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}
.article-featured-img {
    height: 380px;
    border-radius: 20px;
    margin-bottom: 40px;
}
.article-content h3 {
    font-size: 20px;
    color: var(--color-primary);
    margin-top: 40px;
    margin-bottom: 16px;
}
.article-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-main);
    margin-bottom: 16px;
}
.article-list {
    padding-left: 20px;
    margin-bottom: 24px;
}
.article-list li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-main);
    margin-bottom: 8px;
}
.article-inline-img {
    height: 300px;
    border-radius: 16px;
    margin: 40px 0;
}

/* Process List */
.process-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}
.process-step {
    display: flex;
    align-items: center;
    background: var(--color-bg-light);
    border-radius: 12px;
    padding: 16px 20px;
    gap: 16px;
}
.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--color-white);
    color: var(--color-primary);
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}
.step-text {
    font-size: 15px;
    color: var(--color-text-main);
}

/* Support CTA Box */
.support-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-bg-light);
    border-radius: 20px;
    padding: 32px 40px;
    margin-top: 60px;
    margin-bottom: 60px;
}
.support-cta-box h3 {
    margin-top: 0;
    margin-bottom: 8px;
}
.support-cta-box p {
    margin-bottom: 0;
}

/* Methods */
.method-card {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    background: var(--color-bg-light);
    border-radius: 16px;
    padding: 24px;
}
.method-img {
    width: 220px;
    height: 160px;
    border-radius: 12px;
    flex-shrink: 0;
}
.method-info {
    flex: 1;
}
.method-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(6,58,99,0.1);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}
.method-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 0;
}

/* Reading Guide */
.reading-guide {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.reading-img {
    width: 360px;
    height: 260px;
    border-radius: 16px;
    flex-shrink: 0;
}
.reading-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
}
.faq-question {
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--color-white);
}
.faq-icon {
    font-size: 24px;
    line-height: 1;
}
.faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-main);
    display: none;
}

/* Tabs */
.custom-tabs {
    display: flex;
    border-bottom: 2px solid var(--color-bg-light);
}
.tab-item {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}
.tab-item.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-secondary);
}

/* Data Table */
.table-responsive {
    overflow-x: auto;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
}
.data-table th {
    background: var(--color-bg-light);
    color: var(--color-text-muted);
    font-weight: 600;
    text-align: left;
    padding: 16px 24px;
    font-size: 14px;
    border-bottom: 2px solid rgba(0,0,0,0.05);
}
.data-table td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--color-text-main);
    font-size: 15px;
}
.data-table td.price {
    font-weight: 700;
    color: var(--color-primary);
}

/* =========================================
   THANH TOÁN & BIỂU GIÁ NƯỚC (FIGMA 06)
========================================= */
.pill-tabs {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-bottom: 28px;
}
.pill-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #5c7182;
    background: #f2f8fc;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
    cursor: pointer;
}
.pill-tab:hover {
    background: #e8f2fa;
    color: var(--color-primary);
}
.pill-tab.active {
    background: #0a66a9;
    color: #ffffff;
}

/* Payment Table Card */
.payment-table-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 6px 18px 0px rgba(5,59,99,0.07);
    border: 1px solid rgba(5,59,99,0.05);
    margin-top: 24px;
    margin-bottom: 28px;
    width: 100%;
}
.payment-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
}
.payment-table thead th {
    background: #063a63;
    color: #ffffff;
    font-weight: 600;
    padding: 16px 24px;
    border: none;
    font-size: 14px;
}
.payment-table tbody tr {
    border-bottom: 1px solid rgba(5, 59, 99, 0.05);
}
.payment-table tbody tr:nth-child(even) {
    background: #f2f8fc;
}
.payment-table tbody tr:nth-child(odd) {
    background: #ffffff;
}
.payment-table tbody tr:last-child {
    border-bottom: none;
}
.payment-table td {
    padding: 16px 24px;
    color: #063a63;
    font-size: 14px;
    border: none;
    vertical-align: middle;
}
.payment-table td.price {
    font-weight: 700;
    color: #063a63;
}

/* Ghi chú và văn bản đính kèm */
.payment-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 28px;
}
.payment-note-card {
    background: #fff3e8;
    border: 1px solid #f88532;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.payment-note-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: #063a63;
    margin: 0;
}
.payment-note-card p {
    font-size: 14px;
    color: #5c7182;
    line-height: 1.7;
    margin: 0;
}
.payment-attachment-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0px 6px 18px 0px rgba(5,59,99,0.07);
    border: 1px solid rgba(5,59,99,0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.payment-attachment-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: #063a63;
    margin: 0 0 4px 0;
}
.attachment-file-item {
    background: #f2f8fc;
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: background 0.2s;
}
.attachment-file-item:hover {
    background: #e8f2fa;
}
.attachment-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(10, 102, 169, 0.12);
    color: #0a66a9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.attachment-icon svg {
    width: 18px;
    height: 18px;
}
.attachment-name {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    color: #063a63;
}
.attachment-download {
    font-size: 13px;
    font-weight: 600;
    color: #0a66a9;
    text-decoration: none;
    flex-shrink: 0;
}
.attachment-download:hover {
    text-decoration: underline;
}

/* Section: Các hình thức thanh toán */
.payment-methods-section {
    background: #f2f8fc;
    padding: 80px 0 88px;
    width: 100%;
}
.payment-methods-header {
    text-align: center;
    margin-bottom: 36px;
}
.payment-eyebrow {
    font-size: 11px;
    font-weight: 600;
    color: #f88532;
    letter-spacing: 1.54px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.payment-main-title {
    font-size: 34px;
    font-weight: 700;
    color: #063a63;
    margin: 0;
}
.payment-channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.payment-channel-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0px 6px 18px 0px rgba(5,59,99,0.07);
    border: 1px solid rgba(5,59,99,0.04);
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.payment-channel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(5,59,99,0.1);
}
.channel-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(0, 174, 237, 0.14);
    color: #0a66a9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.channel-icon-box svg {
    width: 24px;
    height: 24px;
}
.payment-channel-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #063a63;
    margin: 0;
}
.payment-channel-card p {
    font-size: 13px;
    color: #5c7182;
    line-height: 1.7;
    margin: 0;
}

/* Search Bill Box */
.search-bill-box {
    background: var(--color-bg-light);
    border-radius: 20px;
    padding: 32px 40px;
}
.search-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 24px;
    align-items: flex-end;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}
.form-control {
    height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}
.form-control:focus {
    border-color: var(--color-secondary);
}

/* Customer Info */
.customer-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 24px;
}
.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.info-item span {
    font-size: 13px;
    color: var(--color-text-muted);
}
.info-item strong {
    font-size: 15px;
    color: var(--color-text-main);
}

/* =========================================
   RESPONSIVE (MOBILE & TABLET)
========================================= */

@media (max-width: 1200px) {
    .container { padding: 0 40px; }
    .hero-title { font-size: 48px; }
    .hero-image-wrapper { right: 40px; }
    .hero-image-placeholder { width: 450px; height: 350px; }
    
    .quick-access-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-row { grid-template-columns: repeat(3, 1fr); }
    .footer-content { flex-wrap: wrap; }
}

@media (max-width: 992px) {
    .nav-menu { display: none; }
    .hidden-mobile { display: none !important; }
    
    /* Mobile Header Icons */
    .mobile-search-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        color: var(--color-primary);
        width: 38px;
        height: 38px;
        cursor: pointer;
        padding: 0;
    }
    .mobile-search-btn svg { width: 20px; height: 20px; }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--color-primary);
        color: var(--color-white);
        border: none;
        width: 32px;
        height: 32px;
        border-radius: 8px;
        cursor: pointer;
    }
    .mobile-menu-btn svg { width: 18px; height: 18px; }

    /* Hide Top Bar on Mobile */
    .top-bar { display: none; }
    
    /* Hero Section Mobile */
    .hero { height: auto; padding-bottom: 120px; }
    .hero-content { align-items: stretch; text-align: left; gap: 16px; padding-top: 40px; }
    .hero-title { font-size: 32px; letter-spacing: -0.5px; }
    .hero-desc { font-size: 14px; max-width: 100%; }
    .hero-buttons { 
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        gap: 12px; 
        width: 100%; 
        margin-top: 10px; 
    }
    .hero-buttons .btn { width: 100%; padding: 12px 10px; font-size: 14px; }
    
    .shape-1, .shape-2, .shape-3 { display: none; }
    .hero-image-wrapper { display: none; } /* Hide big image on mobile */
    .hero-dots { display: none; }
    
    /* Quick Access */
    .quick-access { margin-top: -60px; }
    .quick-access-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px; 
        padding: 16px; 
        border-radius: 16px; 
    }
    .quick-card { padding: 20px 12px; gap: 8px; }
    .quick-icon { width: 40px; height: 40px; border-radius: 10px; }
    .quick-card h4 { font-size: 14px; }
    .quick-card p { font-size: 11px; }
    
    /* Notice */
    .notice-bar { 
        padding: 12px 16px; 
        gap: 10px; 
        align-items: flex-start;
        border-radius: 10px;
    }
    .notice-badge { 
        border-radius: 50%; 
        width: 8px; 
        height: 8px; 
        padding: 0; 
        flex-shrink: 0; 
        color: transparent; 
        margin-top: 6px;
    }
    .notice-text { font-size: 13px; line-height: 1.5; }
    .notice-bar .link-arrow { display: none; }

    /* Sections */
    .section-title { font-size: 24px; }
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    
    .service-card {
        flex-direction: row;
        align-items: center;
        padding: 16px;
        gap: 16px;
    }
    .service-img {
        width: 80px;
        height: 80px;
        border-radius: 10px;
        flex-shrink: 0;
    }
    .service-info { padding: 0; }
    .service-info h3 { font-size: 15px; }
    .service-info p { font-size: 12px; }
    
    .news-grid { grid-template-columns: 1fr; }
    .news-img { height: 180px; }
    
    .media-grid { flex-direction: column; }
    .video-placeholder { height: 220px; }
    .video-list { width: 100%; }
    
    .gallery-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gallery-img { height: 140px; }
    
    .footer-content { flex-direction: column; gap: 40px; padding: 40px 0; }
    .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .header-content { gap: 16px; }
    .logo img { height: 44px; }
}

/* =========================================
   MOBILE FULLSCREEN MENU
========================================= */
.mobile-fullscreen-menu {
    position: fixed;
    top: 72px; /* Height of header */
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: var(--color-bg-light);
    z-index: 99;
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

.mobile-fullscreen-menu.open {
    transform: translateX(0);
}

.mobile-menu-search {
    display: flex;
    align-items: center;
    background: var(--color-white);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.mobile-menu-search svg {
    width: 18px;
    height: 18px;
    color: var(--color-text-muted);
    margin-right: 12px;
}

.mobile-menu-search input {
    border: none;
    outline: none;
    width: 100%;
    font-family: inherit;
    font-size: 14px;
    color: var(--color-text-main);
}

.mobile-nav-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
}

.mobile-nav-list a.active {
    color: var(--color-secondary);
}

.mobile-nav-list a span {
    font-size: 18px;
    color: rgba(6,58,99,0.3);
}

.mobile-menu-footer {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-lang-switch {
    display: flex;
    background: var(--color-white);
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.mobile-lang-switch button {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 0;
    border-radius: 50px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    cursor: pointer;
}

.mobile-lang-switch button.active {
    background: var(--color-secondary);
    color: var(--color-white);
}

.mobile-hotline-btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
}
/* -------------------------------------
   NEWS & ARTICLE PAGES
------------------------------------- */

.news-layout {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.news-main {
    flex: 1;
    min-width: 0;
}
.news-sidebar {
    width: 340px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Featured Article Card (Frame 09) */
.news-featured-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0px 8px 22px 0px rgba(5, 59, 99, 0.09);
    overflow: hidden;
    margin-bottom: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(5, 59, 99, 0.04);
}
.news-featured-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 12px 28px 0px rgba(5, 59, 99, 0.12);
}
.news-featured-img-wrap {
    display: block;
    width: 100%;
    height: 340px;
    background: #d8e6f1;
    position: relative;
    overflow: hidden;
}
.news-featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-featured-content {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.news-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #5c7182;
}
.badge-featured {
    background: #f88532;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    display: inline-block;
}
.badge-category {
    background: #f2f8fc;
    color: #0a66a9;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
}
.news-featured-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}
.news-featured-title a {
    color: #063a63;
    text-decoration: none;
    transition: color 0.2s ease;
}
.news-featured-title a:hover {
    color: #0a66a9;
}
.news-featured-excerpt {
    font-size: 15px;
    color: #5c7182;
    line-height: 1.7;
    margin: 0;
}

/* News List Items (Horizontal Cards) */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.news-card-item {
    background: #ffffff;
    border: 1px solid #d8e6f1;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.news-card-item:hover {
    transform: translateY(-2px);
    box-shadow: 0px 8px 20px 0px rgba(5, 59, 99, 0.08);
    border-color: #bad3e8;
}
.news-card-thumb {
    width: 260px;
    height: 170px;
    border-radius: 14px;
    background: #d8e6f1;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
}
.news-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}
.news-card-title {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}
.news-card-title a {
    color: #063a63;
    text-decoration: none;
    transition: color 0.2s ease;
}
.news-card-title a:hover {
    color: #0a66a9;
}
.news-card-desc {
    font-size: 14px;
    color: #5c7182;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card-link {
    font-size: 13px;
    font-weight: 600;
    color: #0a66a9;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: transform 0.2s ease, color 0.2s ease;
}
.news-card-link:hover {
    color: #063a63;
    transform: translateX(4px);
}

/* Sidebar Styles (Frame 09 & 10) */
.sidebar-category-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0px 6px 18px 0px rgba(5, 59, 99, 0.07);
    overflow: hidden;
    border: 1px solid rgba(5, 59, 99, 0.04);
}
.sidebar-category-header {
    background: #063a63;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 16px 20px;
}
.sidebar-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-category-item a {
    display: block;
    padding: 14px 20px;
    font-size: 14px;
    color: #5c7182;
    text-decoration: none;
    border-top: 1px solid #f2f8fc;
    transition: all 0.2s ease;
}
.sidebar-category-item.active a,
.sidebar-category-item a:hover {
    background: #f2f8fc;
    color: #0a66a9;
    font-weight: 600;
}

.sidebar-popular-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0px 6px 18px 0px rgba(5, 59, 99, 0.07);
    padding: 22px;
    border: 1px solid rgba(5, 59, 99, 0.04);
}
.sidebar-popular-title {
    font-size: 16px;
    font-weight: 600;
    color: #063a63;
    margin-bottom: 16px;
}
.sidebar-popular-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sidebar-popular-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    text-decoration: none;
    transition: transform 0.2s ease;
}
.sidebar-popular-item:hover .sidebar-popular-item-title {
    color: #0a66a9;
}
.sidebar-popular-thumb {
    width: 80px;
    height: 62px;
    border-radius: 14px;
    background: #d8e6f1;
    overflow: hidden;
    flex-shrink: 0;
}
.sidebar-popular-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sidebar-popular-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.sidebar-popular-item-title {
    font-size: 13px;
    font-weight: 500;
    color: #063a63;
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}
.sidebar-popular-item-date {
    font-size: 11px;
    color: #5c7182;
    margin: 0;
}

.sidebar-promo-card {
    background: linear-gradient(118.48deg, #063a63 0%, #0a66a9 76.92%);
    border-radius: 16px;
    padding: 28px 24px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sidebar-promo-title {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}
.sidebar-promo-desc {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.8;
    margin: 0;
    color: #ffffff;
}
.sidebar-promo-btn {
    align-self: flex-start;
    background: #f88532;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 4px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.sidebar-promo-btn:hover {
    background: #e67625;
    transform: translateY(-2px);
    color: #ffffff;
}

/* Article Detail Page (Frame 10) */
.article-detail-wrap {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.article-detail-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #5c7182;
}
.article-detail-title {
    font-size: 34px;
    font-weight: 700;
    color: #063a63;
    line-height: 1.3;
    margin: 0;
}
.article-detail-sapo {
    background: #f2f8fc;
    border-radius: 12px;
    padding: 20px 22px;
    display: flex;
    gap: 16px;
    align-items: stretch;
}
.article-sapo-bar {
    width: 4px;
    background: #f88532;
    border-radius: 2px;
    flex-shrink: 0;
}
.article-sapo-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
    color: #063a63;
    margin: 0;
}
.article-detail-cover {
    width: 100%;
    height: 440px;
    border-radius: 18px;
    background: #d8e6f1;
    overflow: hidden;
}
.article-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.article-detail-caption {
    font-size: 12px;
    color: #5c7182;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 8px;
}
.article-detail-body {
    font-size: 15px;
    line-height: 1.8;
    color: #334155;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.article-detail-body p {
    margin: 0;
}
.article-detail-inline-img {
    width: 100%;
    height: 320px;
    border-radius: 18px;
    background: #d8e6f1;
    overflow: hidden;
    margin: 10px 0;
}
.article-detail-inline-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.article-share-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    flex-wrap: wrap;
}
.article-share-label {
    font-size: 14px;
    font-weight: 500;
    color: #063a63;
    margin-right: 4px;
}
.article-share-btn {
    background: #f2f8fc;
    color: #063a63;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    font-family: var(--font-main);
}
.article-share-btn:hover {
    background: #e1edf7;
    color: #0a66a9;
}

/* Related Articles (Frame 10) */
.related-articles-section {
    margin-top: 16px;
}
.related-articles-title {
    font-size: 20px;
    font-weight: 600;
    color: #063a63;
    margin-bottom: 20px;
}
.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.related-article-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0px 6px 18px 0px rgba(5, 59, 99, 0.07);
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(5, 59, 99, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.related-article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 10px 24px 0px rgba(5, 59, 99, 0.1);
}
.related-article-thumb {
    width: 100%;
    height: 150px;
    background: #d8e6f1;
    overflow: hidden;
}
.related-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.related-article-info {
    padding: 14px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.related-article-date {
    font-size: 11px;
    color: #5c7182;
    margin: 0;
}
.related-article-heading {
    font-size: 14px;
    font-weight: 600;
    color: #063a63;
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}
.related-article-card:hover .related-article-heading {
    color: #0a66a9;
}

@media (max-width: 991px) {
    .news-layout {
        flex-direction: column;
        gap: 40px;
    }
    .news-sidebar {
        width: 100%;
    }
    .related-articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .news-card-item {
        flex-direction: column;
        gap: 16px;
        padding: 18px;
    }
    .news-card-thumb {
        width: 100%;
        height: 200px;
    }
    .news-featured-img-wrap {
        height: 240px;
    }
    .news-featured-title {
        font-size: 22px;
    }
    .article-detail-cover {
        height: 260px;
    }
    .article-detail-inline-img {
        height: 220px;
    }
    .article-detail-title {
        font-size: 26px;
    }
    .related-articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .news-featured-img-wrap {
        height: 190px;
    }
    .news-featured-content {
        padding: 16px 18px 20px;
    }
    .news-featured-title {
        font-size: 19px;
    }
    .news-card-thumb {
        height: 170px;
    }
    .article-detail-title {
        font-size: 21px;
    }
    .article-detail-cover {
        height: 190px;
    }
    .article-detail-inline-img {
        height: 170px;
    }
    .article-detail-sapo {
        padding: 16px;
    }
    .article-sapo-text {
        font-size: 15px;
    }
    .article-share-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .article-share-btn {
        justify-content: center;
        width: 100%;
    }
}
/* -------------------------------------
   MEDIA PAGE
------------------------------------- */

.media-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.media-tabs {
    display: inline-flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 8px;
}
.media-tab {
    padding: 10px 24px;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-muted);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}
.media-tab.active {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.album-card {
    text-decoration: none;
    display: block;
}
.album-cover {
    width: 100%;
    height: 210px;
    background: #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}
.album-card:hover .album-cover {
    transform: translateY(-4px);
}
.album-info .album-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-main);
    margin: 0 0 4px 0;
    line-height: 1.4;
}
.album-info .album-count {
    font-size: 14px;
    color: var(--color-text-muted);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.video-card {
    text-decoration: none;
    display: block;
}
.video-cover {
    width: 100%;
    height: 230px;
    background: #e2e8f0;
    border-radius: 12px;
    margin-bottom: 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.video-card:hover .video-cover {
    transform: translateY(-4px);
}
.play-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}
.play-btn svg {
    width: 24px;
    height: 24px;
    margin-left: 4px; /* visually center play triangle */
}
.video-info .video-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-main);
    margin: 0 0 8px 0;
    line-height: 1.4;
}
.video-info .video-date {
    font-size: 14px;
    color: var(--color-text-muted);
}

@media (max-width: 991px) {
    .album-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .album-grid, .video-grid {
        grid-template-columns: 1fr;
    }
}
/* -------------------------------------
   CONTACT PAGE
------------------------------------- */

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.contact-info-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: left;
    transition: transform 0.3s ease;
}
.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
}
.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--color-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 20px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
.contact-icon svg {
    width: 28px;
    height: 28px;
}
.contact-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--color-text-main);
}
.contact-info-card p {
    font-size: 15px;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

.contact-layout {
    display: flex;
    gap: 40px;
}
.contact-form-section {
    flex: 1;
    min-width: 0; /* prevent flex blowout */
}
.contact-map-section {
    width: 500px;
    flex-shrink: 0;
}
.form-row {
    display: flex;
    gap: 24px;
}
.form-row .form-group {
    flex: 1;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-main);
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s;
}
.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
}
.map-container {
    width: 100%;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    background: #e2e8f0;
    margin-bottom: 24px;
}
.map-info {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
}
.map-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
}
.map-info p {
    font-size: 15px;
    color: var(--color-text-muted);
    margin: 0 0 20px 0;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-layout {
        flex-direction: column;
    }
    .contact-map-section {
        width: 100%;
    }
}
@media (max-width: 576px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}
/* =========================================
   RESPONSIVE LAYOUTS FOR ALL SUBPAGES
========================================= */

@media (max-width: 991px) {
    /* Giới thiệu */
    .history-grid,
    .vision-grid,
    .org-grid,
    .facility-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .history-image, .history-content,
    .vision-image, .vision-content {
        width: 100%;
        flex: none;
    }
    
    /* Dịch vụ & Hỗ trợ khách hàng */
    .layout-2-cols {
        flex-direction: column;
        gap: 30px;
    }
    
    .sidebar {
        width: 100%;
        max-width: none;
    }

    .main-content {
        width: 100%;
    }
    
    .service-grid-cards,
    .service-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Tra cứu hoá đơn & Quan hệ cổ đông */
    .invoice-layout,
    .shareholder-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .invoice-sidebar,
    .shareholder-sidebar {
        width: 100%;
    }
    
    .invoice-main,
    .shareholder-main {
        width: 100%;
    }
    
    /* Thanh toán Tablet */
    .payment-channels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .payment-methods-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    /* Page Header Mobile */
    .page-header {
        padding: 36px 0 28px;
    }
    .page-header .page-title {
        font-size: 26px;
        line-height: 1.25;
        margin-bottom: 8px;
    }
    .page-header .breadcrumb {
        font-size: 12px;
        margin-bottom: 12px;
        white-space: nowrap;
        overflow-x: auto;
    }
    .page-header .page-desc {
        font-size: 14px;
    }
    
    /* Page Content Spacing */
    .page-content {
        padding: 30px 0 50px;
    }
    
    /* Article Content Mobile */
    .article-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    .article-desc {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .article-featured-img {
        height: 200px !important;
        border-radius: 14px;
        margin-bottom: 24px;
    }
    .article-content h3 {
        font-size: 18px;
        margin-top: 30px;
        margin-bottom: 12px;
    }
    
    /* Hỗ trợ khách hàng - Method Cards Mobile */
    .method-card {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 16px;
        border-radius: 14px;
    }
    .method-img {
        width: 100%;
        height: 180px;
        border-radius: 10px;
    }
    .method-info h3 {
        font-size: 17px;
        margin-bottom: 8px;
        line-height: 1.4;
    }
    .method-info p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Support CTA Box Mobile */
    .support-cta-box {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 24px 20px;
        margin: 32px 0;
        gap: 16px;
        border-radius: 16px;
    }
    .support-cta-box h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }
    .support-cta-box p {
        font-size: 14px;
    }
    .support-cta-box .cta-action {
        width: 100%;
    }
    .support-cta-box .btn {
        width: 100%;
    }
    
    /* Reading Guide Mobile */
    .reading-guide {
        flex-direction: column;
        gap: 20px;
    }
    .reading-img {
        width: 100%;
        height: 200px;
        border-radius: 12px;
    }
    
    /* Process Steps Mobile */
    .process-step {
        padding: 12px 16px;
        gap: 12px;
    }
    .step-text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 16px;
        font-size: 15px;
        line-height: 1.4;
    }
    .faq-answer {
        padding: 0 16px 16px 16px;
        font-size: 13px;
        line-height: 1.6;
    }

    /* Sidebar Menu Mobile */
    .sidebar-menu .sidebar-title {
        padding: 14px 18px;
        font-size: 14px;
    }
    .sidebar-list a {
        padding: 12px 18px;
        font-size: 14px;
    }
    
    /* Toolbar Mobile */
    .list-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* Tra cứu hóa đơn Mobile */
    .search-bill-box {
        padding: 24px 16px;
        border-radius: 16px;
    }
    .search-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Thanh toán & Biểu giá nước Mobile */
    .pill-tabs {
        gap: 6px;
        overflow-x: auto;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
    }
    .pill-tab {
        flex: 1 0 auto;
        padding: 12px 16px;
        font-size: 13px;
        border-radius: 8px;
    }
    .payment-table-card {
        border-radius: 12px;
        margin-top: 16px;
        margin-bottom: 20px;
    }
    .payment-table {
        min-width: 580px;
    }
    .payment-table thead th,
    .payment-table td {
        padding: 12px 16px;
        font-size: 13px;
    }
    .payment-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 20px;
    }
    .payment-note-card,
    .payment-attachment-card {
        padding: 18px 16px;
        border-radius: 12px;
    }
    .payment-main-title {
        font-size: 26px;
    }
    .payment-methods-section {
        padding: 48px 0;
    }
    
    /* Lịch sử stats */
    .history-stats { flex-direction: row; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
    
    /* Các lưới 3-4 cột thành 1 cột */
    .service-grid-cards,
    .service-list-grid,
    .facility-grid {
        grid-template-columns: 1fr;
    }
    
    /* Bảng dữ liệu tràn ngang */
    .data-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    /* Hỗ trợ khách hàng - Lưới tra cứu */
    .search-invoice-grid {
        flex-direction: column;
        gap: 16px;
    }
    .search-invoice-grid .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .payment-channels-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .payment-channel-card {
        padding: 20px 18px;
        border-radius: 14px;
    }
    .payment-main-title {
        font-size: 22px;
    }
}

/* =========================================
   08 - QUAN HỆ CỔ ĐÔNG (FIGMA MATCH)
========================================= */
.shareholder-header {
    background: linear-gradient(150.95deg, #063a63 0%, #0a66a9 80%);
    position: relative;
    overflow: hidden;
    padding: 58px 0;
    min-height: 200px;
    display: flex;
    align-items: center;
}
.shareholder-header .container {
    position: relative;
    z-index: 2;
}
.shareholder-header .breadcrumb {
    font-size: 13px;
    opacity: 0.75;
    color: #ffffff;
    margin-bottom: 10px;
}
.shareholder-header .breadcrumb a {
    color: #ffffff;
    transition: opacity 0.2s;
}
.shareholder-header .breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}
.shareholder-header .page-title {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.57px;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
}
.shareholder-header .page-desc {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.7;
    color: #ffffff;
    max-width: 700px;
    margin: 0;
}
.shareholder-header-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}
.shareholder-decor-1 {
    position: absolute;
    right: 60px;
    top: -60px;
    width: 480px;
    height: 480px;
    pointer-events: none;
}
.shareholder-decor-2 {
    position: absolute;
    right: -120px;
    top: -120px;
    width: 720px;
    height: 720px;
    pointer-events: none;
}

/* Shareholder Content Section */
.shareholder-section {
    background-color: #ffffff;
    padding: 72px 0 80px;
}

/* Tabs */
.shareholder-tabs {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-bottom: 24px;
}
.shareholder-tab {
    flex: 1;
    text-align: center;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    background: #f2f8fc;
    color: #5c7182;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
}
.shareholder-tab:hover {
    background: #e4eff8;
    color: #063a63;
}
.shareholder-tab.active {
    background: #0a66a9;
    color: #ffffff;
}

/* Filters bar */
.shareholder-filter-bar {
    display: flex;
    gap: 14px;
    align-items: center;
    width: 100%;
    margin-bottom: 24px;
}
.shareholder-select-wrap {
    position: relative;
    flex-shrink: 0;
}
.shareholder-select {
    appearance: none;
    -webkit-appearance: none;
    background: #f2f8fc;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 13px 38px 13px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #063a63;
    cursor: pointer;
    font-family: var(--font-main);
    outline: none;
    transition: all 0.2s ease;
}
.shareholder-select:hover,
.shareholder-select:focus {
    background: #eaf3fa;
    border-color: #d1e5f5;
}
.shareholder-select-wrap::after {
    content: "▾";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #063a63;
    font-size: 11px;
}
.shareholder-search-box {
    flex: 1;
    background: #f2f8fc;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}
.shareholder-search-box:focus-within {
    background: #ffffff;
    border-color: #0a66a9;
    box-shadow: 0 0 0 3px rgba(10, 102, 169, 0.1);
}
.shareholder-search-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #5c7182;
}
.shareholder-search-icon svg,
.shareholder-search-icon img {
    width: 15px;
    height: 15px;
    display: block;
}
.shareholder-search-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    font-family: var(--font-main);
    color: #063a63;
}
.shareholder-search-input::placeholder {
    color: #5c7182;
}

/* Data Table Card */
.shareholder-table-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0px 6px 18px 0px rgba(5, 59, 99, 0.07);
    overflow: hidden;
    width: 100%;
    margin-bottom: 24px;
    border: 1px solid rgba(5, 59, 99, 0.05);
}
.shareholder-table-responsive {
    width: 100%;
    overflow-x: auto;
}
.shareholder-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.shareholder-table thead th {
    background-color: #063a63;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 16px 24px;
    border: none;
    white-space: nowrap;
}
.shareholder-table thead th:nth-child(1) { width: 16%; }
.shareholder-table thead th:nth-child(2) { width: 44%; }
.shareholder-table thead th:nth-child(3) { width: 18%; }
.shareholder-table thead th:nth-child(4) { width: 11%; }
.shareholder-table thead th:nth-child(5) { width: 11%; }

.shareholder-table tbody tr {
    transition: background-color 0.2s ease;
}
.shareholder-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}
.shareholder-table tbody tr:nth-child(even) {
    background-color: #f2f8fc;
}
.shareholder-table tbody tr:hover {
    background-color: #e5f0f8;
}
.shareholder-table tbody td {
    padding: 16px 24px;
    font-size: 14px;
    color: #063a63;
    border: none;
    vertical-align: middle;
}
.shareholder-table .doc-title-cell {
    font-weight: 500;
    color: #063a63;
}
.shareholder-download-link {
    color: #063a63;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}
.shareholder-download-link:hover {
    color: #0a66a9;
    text-decoration: underline;
}

/* Pagination */
.shareholder-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
}
.shareholder-page-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background-color: #f2f8fc;
    color: #063a63;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
}
.shareholder-page-btn:hover {
    background-color: #e2eef7;
}
.shareholder-page-btn.active {
    background-color: #0a66a9;
    color: #ffffff;
}

/* Contact Section */
.shareholder-contact-section {
    background-color: #f2f8fc;
    padding: 72px 0 88px;
}
.shareholder-contact-title {
    font-size: 30px;
    font-weight: 700;
    color: #063a63;
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.3;
}
.shareholder-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.shareholder-contact-card {
    background-color: #ffffff;
    border-radius: 18px;
    box-shadow: 0px 6px 18px 0px rgba(5, 59, 99, 0.07);
    padding: 28px 26px;
    min-height: 188px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(5, 59, 99, 0.04);
}
.shareholder-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 12px 24px 0px rgba(5, 59, 99, 0.11);
}
.shareholder-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 174, 237, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a66a9;
    margin-bottom: 12px;
    flex-shrink: 0;
}
.shareholder-card-icon svg {
    width: 22px;
    height: 22px;
}
.shareholder-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #063a63;
    margin-bottom: 8px;
    line-height: 1.4;
}
.shareholder-card-desc {
    font-size: 13px;
    color: #5c7182;
    line-height: 1.7;
    margin: 0;
}

.shareholder-table-hint {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #5c7182;
    margin-bottom: 10px;
    padding: 0 4px;
}
.shareholder-table-hint svg {
    flex-shrink: 0;
    color: #0a66a9;
}

.shareholder-table-responsive::-webkit-scrollbar {
    height: 4px;
}
.shareholder-table-responsive::-webkit-scrollbar-thumb {
    background: #c5dcee;
    border-radius: 4px;
}
.shareholder-table-responsive::-webkit-scrollbar-track {
    background: #f2f8fc;
}

.contact-link {
    color: #0a66a9;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact-link:hover {
    color: #063a63;
    text-decoration: underline;
}

/* Tablet Optimizations (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    .shareholder-header {
        padding: 48px 0;
        min-height: 180px;
    }
    .shareholder-header .page-title {
        font-size: 32px;
    }
    .shareholder-decor-1 {
        right: 0;
        opacity: 0.35;
    }
    .shareholder-decor-2 {
        right: -100px;
        opacity: 0.35;
    }
    .shareholder-section {
        padding: 56px 0 64px;
    }
    .shareholder-contact-section {
        padding: 56px 0 72px;
    }
    .shareholder-contact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .shareholder-contact-card {
        padding: 22px 18px;
    }
    .shareholder-table-card {
        box-shadow: 0px 4px 14px 0px rgba(5, 59, 99, 0.06);
    }
}

/* Mobile & Small Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    .shareholder-header {
        padding: 36px 0 28px;
        min-height: auto;
    }
    .shareholder-header .breadcrumb {
        font-size: 12px;
        margin-bottom: 8px;
    }
    .shareholder-header .page-title {
        font-size: 26px;
        margin-bottom: 8px;
    }
    .shareholder-header .page-desc {
        font-size: 14px;
        line-height: 1.6;
    }
    .shareholder-header-decor {
        display: none;
    }
    .shareholder-section {
        padding: 36px 0 50px;
    }

    /* Horizontal scrollable tab pills on mobile */
    .shareholder-tabs {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 2px;
        margin-bottom: 16px;
    }
    .shareholder-tabs::-webkit-scrollbar {
        display: none;
    }
    .shareholder-tab {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 10px 18px;
        font-size: 13px;
    }

    /* Balanced 2-row filter bar */
    .shareholder-filter-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 16px;
    }
    .shareholder-select-wrap {
        width: 100%;
    }
    .shareholder-select {
        width: 100%;
        padding: 11px 28px 11px 14px;
        font-size: 13px;
    }
    .shareholder-search-box {
        grid-column: span 2;
        width: 100%;
        padding: 11px 14px;
    }
    .shareholder-search-input {
        font-size: 13px;
    }

    /* Table on mobile: hint + compact padding */
    .shareholder-table-hint {
        display: flex;
    }
    .shareholder-table {
        min-width: 600px;
    }
    .shareholder-table thead th {
        padding: 12px 14px;
        font-size: 13px;
    }
    .shareholder-table tbody td {
        padding: 12px 14px;
        font-size: 13px;
    }
    .shareholder-table .badge-format {
        font-size: 11px;
        background: rgba(10, 102, 169, 0.08);
        color: #0a66a9;
        padding: 2px 7px;
        border-radius: 4px;
        font-weight: 600;
    }
    .shareholder-download-link {
        font-size: 13px;
        color: #0a66a9;
        font-weight: 500;
        background: #f2f8fc;
        padding: 4px 10px;
        border-radius: 6px;
        white-space: nowrap;
    }

    /* Pagination on mobile */
    .shareholder-pagination {
        gap: 6px;
        margin-top: 24px;
    }
    .shareholder-page-btn {
        width: 38px;
        height: 38px;
        font-size: 13px;
        border-radius: 8px;
    }

    /* Contact on mobile & tablet */
    .shareholder-contact-section {
        padding: 44px 0 56px;
    }
    .shareholder-contact-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .shareholder-contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
        gap: 16px;
    }
    .shareholder-contact-card {
        padding: 20px 18px;
        border-radius: 14px;
    }
    .shareholder-card-title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    .shareholder-card-desc {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .shareholder-contact-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* -------------------------------------
   CONTACT PAGE (FRAME 12)
------------------------------------- */

.contact-cards-section {
    padding: 72px 0 56px;
    background: #ffffff;
}
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.contact-stat-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: 0px 6px 18px 0px rgba(5, 59, 99, 0.07);
    border: 1px solid rgba(5, 59, 99, 0.04);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 10px 24px 0px rgba(5, 59, 99, 0.11);
}
.contact-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 174, 237, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a66a9;
    flex-shrink: 0;
}
.contact-stat-title {
    font-size: 16px;
    font-weight: 600;
    color: #063a63;
    margin: 0;
}
.contact-stat-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #5c7182;
    margin: 0;
    word-break: break-word;
}
.contact-stat-desc a {
    color: #5c7182;
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact-stat-desc a:hover {
    color: #0a66a9;
    text-decoration: underline;
}

/* Form & Map Section (Frame 12) */
.contact-form-map-section {
    background: #f2f8fc;
    padding: 56px 0 88px;
}
.contact-form-map-wrap {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.contact-form-card {
    flex: 1;
    min-width: 0;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0px 8px 22px 0px rgba(5, 59, 99, 0.09);
    padding: 32px;
    border: 1px solid rgba(5, 59, 99, 0.04);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-form-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.54px;
    color: #f88532;
    text-transform: uppercase;
    margin: 0;
}
.contact-form-title {
    font-size: 26px;
    font-weight: 700;
    color: #063a63;
    margin: 0;
    letter-spacing: -0.13px;
}
.contact-form-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.contact-field-label {
    font-size: 13px;
    font-weight: 500;
    color: #063a63;
    margin: 0;
}
.contact-field-input {
    background: #f2f8fc;
    border: 1px solid #d8e6f1;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    color: #063a63;
    font-family: var(--font-main);
    outline: none;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}
.contact-field-input::placeholder {
    color: #9ab0c2;
    font-family: var(--font-main);
}
.contact-field-input:focus {
    background: #ffffff;
    border-color: #0a66a9;
    box-shadow: 0 0 0 3px rgba(10, 102, 169, 0.12);
}
.contact-field-textarea {
    background: #f2f8fc;
    border: 1px solid #d8e6f1;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    color: #063a63;
    font-family: var(--font-main);
    outline: none;
    transition: all 0.2s ease;
    width: 100%;
    height: 130px;
    resize: vertical;
    box-sizing: border-box;
}
.contact-field-textarea::placeholder {
    color: #9ab0c2;
    font-family: var(--font-main);
}
.contact-field-textarea:focus {
    background: #ffffff;
    border-color: #0a66a9;
    box-shadow: 0 0 0 3px rgba(10, 102, 169, 0.12);
}
.contact-btn-submit {
    background: #f88532;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    padding: 15px 28px;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
    font-family: var(--font-main);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}
.contact-btn-submit:hover {
    background: #e67625;
    transform: translateY(-2px);
    box-shadow: 0px 6px 16px 0px rgba(248, 133, 50, 0.3);
}

/* Map Column */
.contact-map-col {
    width: 560px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-map-frame {
    height: 420px;
    border-radius: 18px;
    overflow: hidden;
    background: #d8e6f1;
    box-shadow: 0px 6px 18px 0px rgba(5, 59, 99, 0.07);
    border: 1px solid rgba(5, 59, 99, 0.04);
}
.contact-map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.contact-guide-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0px 6px 18px 0px rgba(5, 59, 99, 0.07);
    border: 1px solid rgba(5, 59, 99, 0.04);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}
.contact-guide-title {
    font-size: 16px;
    font-weight: 600;
    color: #063a63;
    margin: 0;
}
.contact-guide-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #5c7182;
    margin: 0;
}
.contact-guide-btn {
    border: 1.5px solid #0a66a9;
    border-radius: 10px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #0a66a9;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    font-family: var(--font-main);
}
.contact-guide-btn:hover {
    background: #0a66a9;
    color: #ffffff;
}

/* Contact Responsive */
@media (max-width: 1100px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .contact-form-map-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }
    .contact-form-card {
        width: 100%;
        box-sizing: border-box;
    }
    .contact-map-col {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .contact-cards-section {
        padding: 40px 0 32px;
    }
    .contact-stat-card {
        padding: 20px 18px;
    }
    .contact-form-map-section {
        padding: 32px 0 56px;
    }
    .contact-form-card {
        width: 100%;
        padding: 24px 18px;
        box-sizing: border-box;
    }
    .contact-input-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .contact-map-frame {
        height: 280px;
    }
    .contact-guide-btn {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}

/* =========================================
   07 - TRA CỨU HOÁ ĐƠN ĐIỆN TỬ (FIGMA MATCH - NODE 86:399)
========================================= */

.bill-page-wrapper {
    background-color: #ffffff;
    min-height: 80vh;
}

/* Bill Search Section */
.bill-search-section {
    padding: 60px 0 40px;
    background-color: #ffffff;
}

.bill-search-box {
    background: #f2f8fc;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(6, 58, 99, 0.04);
    border: 1px solid #e1effa;
}

.bill-search-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr auto;
    gap: 20px;
    align-items: flex-end;
}

.bill-field-group {
    display: flex;
    flex-direction: column;
}

.bill-field-label {
    font-size: 13px;
    font-weight: 600;
    color: #063a63;
    margin-bottom: 8px;
    letter-spacing: -0.1px;
}

.bill-field-input {
    height: 48px;
    background: #ffffff;
    border: 1.5px solid #d8e6f1;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 14px;
    color: #063a63;
    font-family: var(--font-main);
    transition: all 0.2s ease;
    box-sizing: border-box;
    width: 100%;
}

.bill-field-input::placeholder {
    color: #94a3b8;
}

.bill-field-input:focus {
    outline: none;
    border-color: #0a66a9;
    box-shadow: 0 0 0 3px rgba(10, 102, 169, 0.12);
}

.bill-action-group {
    display: flex;
    align-items: flex-end;
}

.bill-search-btn {
    height: 48px;
    background: #f88532;
    border-radius: 10px;
    border: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    padding: 0 32px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-main);
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(248, 133, 50, 0.2);
    white-space: nowrap;
}

.bill-search-btn:hover {
    background: #e26f1c;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(248, 133, 50, 0.3);
}

/* Bill Results Section */
.bill-result-section {
    padding: 0 0 88px;
    background-color: #ffffff;
}

.bill-result-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Customer Info Card */
.bill-customer-card {
    background: linear-gradient(166.95deg, #063a63 0%, #0a66a9 76.92%);
    border-radius: 16px;
    padding: 24px 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    box-shadow: 0 8px 24px rgba(6, 58, 99, 0.12);
    color: #ffffff;
}

.bill-customer-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bill-customer-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
}

.bill-customer-val {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.bill-customer-val.bill-debt-val {
    color: #ffffff;
}

/* Scroll Hint for Mobile/Tablet */
.bill-scroll-hint {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Invoice Table Card */
.bill-table-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(6, 58, 99, 0.04);
}

.bill-table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.bill-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
    text-align: left;
}

.bill-table thead {
    background: #063a63;
    color: #ffffff;
}

.bill-table th {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.2px;
    white-space: nowrap;
    border: none;
}

.bill-table tbody tr {
    border-bottom: 1px solid #edf2f7;
    transition: background-color 0.15s ease;
}

.bill-table tbody tr:nth-child(even) {
    background-color: #f8fafc;
}

.bill-table tbody tr:hover {
    background-color: #f1f7fc;
}

.bill-table td {
    padding: 18px 20px;
    font-size: 14px;
    color: #334155;
    vertical-align: middle;
    border: none;
}

.bill-cell-period {
    font-weight: 700;
    color: #063a63;
}

.bill-amount {
    font-weight: 700;
    color: #063a63;
    font-size: 15px;
}

/* Status Badges */
.bill-status-paid {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e6f7ec;
    color: #16a34a;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.bill-status-paid::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #16a34a;
}

.bill-status-unpaid {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fee2e2;
    color: #dc2626;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.bill-status-unpaid::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #dc2626;
}

/* Action items */
.bill-action-link {
    color: #0a66a9;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.bill-action-link:hover {
    color: #063a63;
    text-decoration: underline;
}

.bill-pay-btn {
    background: #f88532;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(248, 133, 50, 0.2);
}

.bill-pay-btn:hover {
    background: #e26f1c;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(248, 133, 50, 0.3);
}

/* Bill Pagination */
.bill-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
}

.bill-page-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    border: 1.5px solid #d8e6f1;
    background: #ffffff;
    color: #5c7182;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.bill-page-btn:hover {
    border-color: #0a66a9;
    color: #0a66a9;
}

.bill-page-btn.active {
    background: #0a66a9;
    border-color: #0a66a9;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(10, 102, 169, 0.25);
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .bill-search-section {
        padding: 48px 0 32px;
    }
    .bill-search-box {
        padding: 28px 24px;
    }
    .bill-search-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .bill-action-group {
        grid-column: span 2;
    }
    .bill-search-btn {
        width: 100%;
    }
    .bill-customer-card {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
        gap: 20px;
    }
    .bill-scroll-hint {
        display: flex;
    }
}

@media (max-width: 640px) {
    .bill-search-section {
        padding: 36px 0 24px;
    }
    .bill-search-box {
        padding: 20px 16px;
        border-radius: 14px;
    }
    .bill-search-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .bill-action-group {
        grid-column: span 1;
    }
    .bill-customer-card {
        grid-template-columns: 1fr;
        padding: 20px 18px;
        gap: 16px;
        border-radius: 14px;
    }
    .bill-customer-val {
        font-size: 16px;
    }
    .bill-table th,
    .bill-table td {
        padding: 14px 16px;
    }
    .bill-page-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* =========================================
   02 - GIỚI THIỆU (FIGMA MATCH - NODE 84:53)
========================================= */

/* Lịch sử hình thành */
.about-history-section {
    background-color: #ffffff;
    padding: 88px 0;
}

.about-history-grid {
    display: flex;
    align-items: center;
    gap: 56px;
}

.about-history-img {
    width: 560px;
    height: 400px;
    border-radius: 20px;
    background-color: #d8e6f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ab0c2;
    font-size: 13px;
    font-weight: 500;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(6, 58, 99, 0.06);
}

.about-history-content {
    flex: 1;
    min-width: 0;
}

.about-tag {
    font-size: 11px;
    font-weight: 600;
    color: #f88532;
    letter-spacing: 1.54px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.about-title-lg {
    font-size: 34px;
    font-weight: 700;
    color: #063a63;
    letter-spacing: -0.34px;
    line-height: 1.25;
    margin: 0 0 20px 0;
}

.about-desc {
    font-size: 16px;
    color: #5c7182;
    line-height: 1.65;
    margin: 0 0 28px 0;
}

.about-history-stats {
    display: flex;
    gap: 20px;
}

.about-stat-item {
    flex: 1;
    background-color: #f2f8fc;
    border-radius: 12px;
    padding: 16px 18px;
}

.about-stat-num {
    font-size: 24px;
    font-weight: 800;
    color: #0a66a9;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.about-stat-lbl {
    font-size: 12px;
    color: #5c7182;
    margin: 0;
    font-weight: 500;
}

/* Tầm nhìn & Sứ mệnh & Giá trị cốt lõi */
.about-vision-section {
    background-color: #f2f8fc;
    padding: 88px 0;
}

.about-section-header {
    text-align: center;
    margin-bottom: 36px;
}

.about-title-center {
    font-size: 34px;
    font-weight: 700;
    color: #063a63;
    letter-spacing: -0.34px;
    margin: 0;
}

.about-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-vision-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 28px;
    box-shadow: 0px 6px 18px rgba(5, 59, 99, 0.07);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-vision-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 10px 24px rgba(5, 59, 99, 0.1);
}

.about-vision-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 174, 237, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00aeed;
}

.about-vision-title {
    font-size: 20px;
    font-weight: 600;
    color: #063a63;
    margin: 0;
}

.about-vision-desc {
    font-size: 14px;
    color: #5c7182;
    line-height: 1.65;
    margin: 0;
}

/* Sơ đồ tổ chức */
.about-org-section {
    background-color: #ffffff;
    padding: 88px 0;
}

.about-org-box {
    background-color: #d8e6f1;
    border-radius: 20px;
    height: 360px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ab0c2;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(6, 58, 99, 0.04);
}

/* Nhà máy và trang thiết bị */
.about-facility-section {
    background-color: #f2f8fc;
    padding: 88px 0 96px;
}

.about-facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-facility-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0px 6px 18px rgba(5, 59, 99, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-facility-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 10px 24px rgba(5, 59, 99, 0.1);
}

.about-facility-img {
    height: 240px;
    background-color: #d8e6f1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ab0c2;
    font-size: 13px;
    font-weight: 500;
}

.about-facility-info {
    padding: 20px 24px 24px;
}

.about-facility-title {
    font-size: 17px;
    font-weight: 600;
    color: #063a63;
    margin: 0 0 8px 0;
}

.about-facility-desc {
    font-size: 13px;
    color: #5c7182;
    line-height: 1.65;
    margin: 0;
}


/* =========================================
   01 - TRANG CHỦ (FIGMA MATCH - NODE 82:2)
========================================= */

/* Hero Section */
.home-hero {
    background: linear-gradient(126.68deg, #063a63 0%, #0a66a9 76.92%);
    height: 580px;
    position: relative;
    overflow: hidden;
}

.home-hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.home-hero-shape-1 {
    width: 920px;
    height: 920px;
    top: 60px;
    left: 690px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-hero-shape-2 {
    width: 1280px;
    height: 1280px;
    top: -40px;
    left: 660px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.home-hero-shape-3 {
    width: 600px;
    height: 600px;
    top: 170px;
    left: 720px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-hero-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 50px;
    position: relative;
    z-index: 2;
}

.home-hero-content {
    max-width: 600px;
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 8px 16px 8px 14px;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.32px;
}

.home-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00aeed;
    box-shadow: 0 0 8px #00aeed;
}

.home-hero-title {
    font-size: 58px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1.16px;
    line-height: 1.12;
    margin: 0 0 20px 0;
}

.home-hero-desc {
    font-size: 17px;
    color: #ffffff;
    opacity: 0.85;
    line-height: 1.65;
    margin: 0 0 28px 0;
}

.home-hero-btns {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
}

.home-btn-orange {
    background: #f88532;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    padding: 15px 26px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(248, 133, 50, 0.25);
}

.home-btn-orange:hover {
    background: #e26f1c;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(248, 133, 50, 0.35);
}

.home-btn-hero-outline {
    border: 1.5px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    padding: 15px 26px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.home-btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
}

.home-hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.35);
}

.home-hero-dot.active {
    width: 26px;
    height: 8px;
    border-radius: 4px;
    background: #ffffff;
}

.home-hero-visual {
    width: 560px;
    height: 400px;
    position: relative;
    flex-shrink: 0;
}

.home-hero-img-box {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 1.5px dashed rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 500;
    overflow: hidden;
}

.home-hero-stat-card {
    position: absolute;
    left: -60px;
    bottom: 0px;
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0px 16px 36px rgba(5, 59, 99, 0.22);
    z-index: 5;
    white-space: nowrap;
}

.home-hero-stat-num {
    font-size: 26px;
    font-weight: 800;
    color: #0a66a9;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.home-hero-stat-desc {
    font-size: 13px;
    color: #5c7182;
    margin: 0;
    font-weight: 500;
}

/* Quick Access Bar */
.home-quick-section {
    position: relative;
    z-index: 10;
    margin-top: -78px;
}

.home-quick-bar {
    background: #ffffff;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0px 18px 40px rgba(5, 59, 99, 0.14);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
}

.home-quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 22px 20px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.home-quick-item:hover {
    transform: translateY(-2px);
    background: #f8fafc;
}

.home-quick-item.active {
    background-color: #f2f8fc;
}

.home-quick-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 174, 237, 0.14);
    color: #0a66a9;
}

.home-quick-icon.active {
    background: #f88532;
    color: #ffffff;
}

.home-quick-title {
    font-size: 15px;
    font-weight: 600;
    color: #063a63;
    text-align: center;
    margin: 0;
}

.home-quick-desc {
    font-size: 12px;
    color: #5c7182;
    text-align: center;
    margin: 0;
}

/* Services Section */
.home-services-section {
    background-color: #f2f8fc;
    padding: 140px 0 88px;
}

.home-section-header {
    text-align: center;
    margin-bottom: 36px;
}

.home-title-center {
    font-size: 36px;
    font-weight: 700;
    color: #063a63;
    letter-spacing: -0.36px;
    margin: 10px 0 8px 0;
}

.home-desc-center {
    font-size: 16px;
    color: #5c7182;
    line-height: 1.65;
    max-width: 640px;
    margin: 0 auto;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.home-service-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0px 6px 18px rgba(5, 59, 99, 0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 10px 24px rgba(5, 59, 99, 0.1);
}

.home-service-img {
    height: 170px;
    background-color: #d8e6f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ab0c2;
    font-size: 13px;
    font-weight: 500;
    width: 100%;
}

.home-service-info {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.home-service-title {
    font-size: 17px;
    font-weight: 600;
    color: #063a63;
    margin: 0;
}

.home-service-desc {
    font-size: 13px;
    color: #5c7182;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.home-card-link {
    font-size: 13px;
    font-weight: 600;
    color: #0a66a9;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.home-card-link:hover {
    text-decoration: underline;
}

.home-btn-center-wrap {
    display: flex;
    justify-content: center;
}

.home-btn-blue {
    background: #0a66a9;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 26px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(10, 102, 169, 0.2);
}

.home-btn-blue:hover {
    background: #063a63;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(10, 102, 169, 0.3);
}

/* News & Notices Section */
.home-news-section {
    background-color: #ffffff;
    padding: 88px 0;
}

.home-notice-bar {
    background: #fff3e8;
    border: 1px solid #f88532;
    border-radius: 12px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.home-notice-badge {
    background: #f88532;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-notice-text {
    font-size: 15px;
    font-weight: 500;
    color: #063a63;
    flex: 1;
    margin: 0;
}

.home-notice-link {
    font-size: 14px;
    font-weight: 600;
    color: #0a66a9;
    text-decoration: none;
    white-space: nowrap;
}

.home-notice-link:hover {
    text-decoration: underline;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.home-news-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0px 6px 18px rgba(5, 59, 99, 0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 10px 24px rgba(5, 59, 99, 0.1);
}

.home-news-img {
    height: 210px;
    background-color: #d8e6f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ab0c2;
    font-size: 13px;
    font-weight: 500;
    width: 100%;
}

.home-news-info {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.home-news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-news-cat {
    background: #f2f8fc;
    color: #0a66a9;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

.home-news-date {
    font-size: 12px;
    color: #5c7182;
}

.home-news-title {
    font-size: 17px;
    font-weight: 600;
    color: #063a63;
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

.home-btn-outline-blue {
    border: 1.5px solid #0a66a9;
    color: #0a66a9;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 26px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.home-btn-outline-blue:hover {
    background: #0a66a9;
    color: #ffffff;
}

/* Video Section */
.home-video-section {
    background: linear-gradient(112.25deg, #063a63 0%, #0a66a9 83.33%);
    padding: 88px 0;
}

.home-video-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.home-video-main {
    flex: 1;
    min-width: 0;
    height: 420px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
}

.home-video-list {
    width: 432px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-video-item {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.home-video-item:hover,
.home-video-item.active {
    background: rgba(255, 255, 255, 0.14);
}

.home-video-thumb {
    width: 132px;
    height: 84px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    flex-shrink: 0;
}

.home-video-info {
    flex: 1;
    color: #ffffff;
}

.home-video-name {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    margin: 0 0 6px 0;
}

.home-video-date {
    font-size: 12px;
    opacity: 0.6;
    margin: 0;
}

/* Gallery Section */
.home-gallery-section {
    background-color: #f2f8fc;
    padding: 88px 0 96px;
}

.home-gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.home-gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.home-gallery-item {
    height: 190px;
    background-color: #d8e6f1;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ab0c2;
    font-size: 13px;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.home-gallery-item:hover {
    transform: scale(1.02);
}

/* =========================================
   RESPONSIVE CHO FRAME 01 & FRAME 02
========================================= */

@media (max-width: 1100px) {
    .home-hero {
        height: auto;
        min-height: 540px;
        padding-bottom: 90px;
    }
    .home-hero-container {
        flex-direction: column;
        gap: 40px;
        align-items: stretch;
    }
    .home-hero-content {
        max-width: 100%;
    }
    .home-hero-visual {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    .about-history-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 36px;
    }
    .about-history-img {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    .home-video-layout {
        flex-direction: column;
    }
    .home-video-main {
        width: 100%;
    }
    .home-video-list {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .home-hero-stat-card {
        left: 20px;
        bottom: 20px;
    }
    .home-quick-bar {
        grid-template-columns: repeat(3, 1fr);
        padding: 12px;
        gap: 8px;
    }
    .home-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .home-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .about-vision-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .about-facility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .home-gallery-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Utility text switches between desktop and mobile */
.mobile-text {
    display: none !important;
}
.desktop-text {
    display: inline;
}
.mobile-bottom-nav {
    display: none;
}
.mobile-notice-strip {
    display: none;
}

@media (max-width: 640px) {
    .mobile-text {
        display: inline !important;
    }
    .desktop-text {
        display: none !important;
    }

    /* Mobile Header */
    .header {
        height: 68px;
    }
    .mobile-search-btn {
        width: 38px;
        height: 38px;
        border: none;
        background: transparent;
    }
    .mobile-menu-btn {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    /* 13 · Di động — Trang chủ (Khối Hero - 420px) */
    .home-hero {
        height: 420px;
        padding-bottom: 0;
        background: linear-gradient(105.57deg, #063a63 0%, #0a66a9 76.92%);
    }
    .home-hero-container {
        padding-top: 48px;
        flex-direction: column;
        align-items: flex-start;
    }
    .home-hero-content {
        max-width: 100%;
    }
    .home-hero-badge {
        background: rgba(255, 255, 255, 0.14);
        padding: 7px 14px 7px 12px;
        border-radius: 999px;
        margin-bottom: 16px;
        font-size: 10px;
        letter-spacing: 1px;
    }
    .home-hero-badge-dot {
        width: 7px;
        height: 7px;
    }
    .home-hero-title {
        font-size: 32px;
        font-weight: 800;
        line-height: 1.16;
        letter-spacing: -0.48px;
        margin-bottom: 16px;
    }
    .home-hero-desc {
        font-size: 14px;
        line-height: 1.6;
        opacity: 0.85;
        max-width: 330px;
        margin-bottom: 24px;
    }
    .home-hero-btns {
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        margin-bottom: 0;
    }
    .home-btn-orange {
        width: auto;
        padding: 13px 20px;
        font-size: 14px;
        border-radius: 10px;
    }
    .home-btn-hero-outline {
        width: auto;
        padding: 13px 20px;
        font-size: 14px;
        border-radius: 10px;
    }
    .home-hero-dots {
        display: none !important;
    }
    .home-hero-visual {
        display: none !important;
    }

    /* 13 · Di động — Tra cứu nhanh (Quick Access - 2x2 Grid) */
    .home-quick-section {
        margin-top: 0;
        background: #ffffff;
        padding: 20px 0 28px;
    }
    .home-quick-bar {
        background: #ffffff;
        padding: 14px;
        border-radius: 18px;
        box-shadow: 0px -6px 24px 0px rgba(5, 59, 99, 0.12);
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .home-quick-item {
        background: #f2f8fc;
        border-radius: 14px;
        padding: 16px 14px;
        align-items: flex-start;
        text-align: left;
        gap: 8px;
    }
    .home-quick-item:nth-child(5) {
        display: none !important;
    }
    .home-quick-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        background: rgba(0, 174, 237, 0.2);
        color: #0a66a9;
    }
    .home-quick-item:first-child .home-quick-icon {
        background: #f88532;
        color: #ffffff;
    }
    .home-quick-title {
        font-size: 13px;
        font-weight: 600;
        color: #063a63;
        text-align: left;
    }
    .home-quick-desc {
        font-size: 11px;
        color: #5c7182;
        text-align: left;
    }

    /* 13 · Di động — Thông báo (Notice Strip) */
    .mobile-notice-strip {
        display: flex;
        align-items: center;
        gap: 12px;
        background: #fff3e8;
        padding: 14px 16px;
        width: 100%;
    }
    .mobile-notice-dot {
        width: 10px;
        height: 10px;
        min-width: 10px;
        border-radius: 50%;
        background: #f88532;
        flex-shrink: 0;
    }
    .mobile-notice-text {
        font-size: 12px;
        font-weight: 500;
        color: #063a63;
        line-height: 1.6;
        margin: 0;
    }

    .home-news-section .home-notice-bar {
        display: none !important;
    }
    .home-notice-link {
        display: none !important;
    }

    /* 13 · Di động — Chúng tôi phục vụ những gì (2 cards) */
    .home-services-section {
        background-color: #f2f8fc;
        padding: 28px 0;
    }
    .home-section-header {
        text-align: left;
        margin-bottom: 16px;
    }
    .home-section-header .about-tag {
        font-size: 10px;
        letter-spacing: 1.2px;
        color: #f88532;
        font-weight: 600;
    }
    .home-title-center {
        font-size: 24px;
        font-weight: 700;
        color: #063a63;
        letter-spacing: -0.12px;
        text-align: left;
        margin: 6px 0 0 0;
    }
    .home-desc-center {
        display: none !important;
    }
    .home-services-grid {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 0;
    }
    .home-service-card {
        background: #ffffff;
        border-radius: 14px;
        padding: 12px;
        box-shadow: 0px 4px 12px 0px rgba(5, 59, 99, 0.07);
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
    }
    .home-service-card:nth-child(n+3) {
        display: none !important;
    }
    .home-service-img {
        width: 96px;
        height: 78px;
        border-radius: 12px;
        background-color: #d8e6f1;
        flex-shrink: 0;
        font-size: 11px;
        font-weight: 500;
        color: #9ab0c2;
    }
    .home-service-info {
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 6px;
        flex: 1;
    }
    .home-service-title {
        font-size: 14px;
        font-weight: 600;
        color: #063a63;
        line-height: 1.4;
        margin: 0;
    }
    .home-service-desc {
        font-size: 11px;
        color: #5c7182;
        line-height: 1.6;
        margin: 0;
    }
    .home-service-card .home-card-link {
        display: none !important;
    }
    .home-services-section .home-btn-center-wrap {
        display: none !important;
    }

    /* 13 · Di động — Hoạt động mới nhất (2 cards) */
    .home-news-section {
        background-color: #ffffff;
        padding: 28px 0;
    }
    .home-news-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 0;
    }
    .home-news-card {
        border-radius: 16px;
        box-shadow: 0px 5px 16px 0px rgba(5, 59, 99, 0.08);
        overflow: hidden;
        padding-bottom: 16px;
    }
    .home-news-card:nth-child(n+3) {
        display: none !important;
    }
    .home-news-img {
        height: 180px;
        border-radius: 0;
    }
    .home-news-info {
        padding: 14px 16px 0;
        gap: 8px;
    }
    .home-news-meta {
        gap: 8px;
    }
    .home-news-cat {
        font-size: 10px;
        padding: 3px 8px;
        border-radius: 5px;
    }
    .home-news-date {
        font-size: 11px;
    }
    .home-news-title {
        font-size: 15px;
        line-height: 1.4;
    }
    .home-news-card .home-card-link {
        display: none !important;
    }
    .home-news-section .home-btn-center-wrap {
        display: none !important;
    }

    /* 13 · Di động — Video section hidden */
    .home-video-section {
        display: none !important;
    }

    /* 13 · Di động — Thư viện hình ảnh (2x2 grid) */
    .home-gallery-section {
        background-color: #f2f8fc;
        padding: 28px 0;
    }
    .home-gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 0;
    }
    .home-gallery-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .home-gallery-item {
        height: 130px;
        border-radius: 12px;
    }
    .home-gallery-row .home-gallery-item:nth-child(n+3) {
        display: none !important;
    }
    .home-gallery-section .home-btn-center-wrap {
        display: none !important;
    }

    /* Footer on mobile */
    .footer {
        padding-bottom: 72px;
    }

    /* 13 · Di động — Thanh cố định dưới màn hình */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0px -4px 16px 0px rgba(5, 59, 99, 0.12);
        padding: 10px 0 12px;
        z-index: 1000;
        align-items: center;
        justify-content: space-around;
    }
    .mobile-bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        text-decoration: none;
        flex: 1;
    }
    .mobile-bottom-icon {
        width: 26px;
        height: 26px;
        border-radius: 8px;
        background: rgba(0, 174, 237, 0.25);
        color: #0a66a9;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mobile-bottom-icon svg {
        width: 14px;
        height: 14px;
    }
    .mobile-bottom-icon.active {
        background: #f88532;
        color: #ffffff;
    }
    .mobile-bottom-nav-item span {
        font-size: 10px;
        font-weight: 500;
        color: #5c7182;
    }
    .mobile-bottom-nav-item.active span {
        color: #063a63;
        font-weight: 600;
    }

    /* Giới thiệu mobile */
    .about-history-section {
        padding: 36px 0;
    }
    .about-title-lg,
    .about-title-center {
        font-size: 24px;
    }
    .about-history-stats {
        flex-direction: column;
        gap: 12px;
    }
    .about-vision-section {
        padding: 36px 0;
    }
    .about-vision-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .about-org-section {
        padding: 36px 0;
    }
    .about-org-box {
        height: 240px;
    }
    .about-facility-section {
        padding: 36px 0 48px;
    }
    .about-facility-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* =========================================
   COMMON PAGE CONTENT & SECTION SPACING FIX
========================================= */
.page-content,
.news-section {
    padding: 60px 0 100px;
    min-height: 55vh;
}

@media (max-width: 768px) {
    .page-content,
    .news-section {
        padding: 40px 0 60px;
    }
}

.news-layout {
    min-height: 400px;
}

.news-empty-notice {
    padding: 60px 30px;
    text-align: center;
    background: #f8fafc;
    border-radius: 16px;
    color: var(--color-text-muted);
    font-size: 16px;
    border: 1px dashed #cbd5e1;
    margin: 20px 0;
    line-height: 1.6;
}

/* =========================================
   COMMON BREADCRUMB STYLING
========================================= */
.breadcrumb {
    font-size: 13px;
    opacity: 0.85;
    color: #ffffff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s, text-decoration 0.2s;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumb .breadcrumb-sep {
    opacity: 0.65;
    margin: 0 4px;
    user-select: none;
}

.breadcrumb .breadcrumb-current {
    opacity: 1;
    font-weight: 500;
}







