@font-face {
    font-family: 'SVN-Gilroy';
    src: url('../fonts/SVN-Gilroy.eot');
    src: url('../fonts/SVN-Gilroy.eot?#iefix') format('embedded-opentype'),
         url('../fonts/SVN-Gilroy.woff2') format('woff2'),
         url('../fonts/SVN-Gilroy.woff') format('woff'),
         url('../fonts/SVN-Gilroy.ttf') format('truetype'),
         url('../fonts/SVN-Gilroy.svg#SVN-Gilroy') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
:root {
    --container-width: 1200px;
    --container-padding: 40px;
    --primary-color: #0089D0;
    --primary-dark: #1B3A70;
    --gradient-primary: linear-gradient(135deg, #1ab0fb 0%, #1B3A70 100%);
    --bs-primary: #1B3A70;
    --bs-success: #009245;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SVN-Gilroy', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: #333;
    line-height: 1.6;
    padding-top: 0;
    margin: 0;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    color: white;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease;
}

header.scrolled {
    display: none;
    background: var(--gradient-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 5px 0;
}
header.scrolled .logo img {
    height: 60px;
}
header.scrolled .main-nav a, header.scrolled .btn-default, header.scrolled .btn-default i {
    color: #fff;
    font-weight: 400;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    gap: 40px;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity 0.3s;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo:hover {
    opacity: 0.9;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

header.scrolled .mobile-menu-toggle {
    color: white;
}

.main-nav {
    flex: 1;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.main-nav li {
    display: inline-block;
}

.main-nav a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    font-weight: 600;
    border-radius: 99px;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255,255,255,0.2);
}

/* Dropdown Menu */
.main-nav .dropdown {
    position: relative;
}

.main-nav .dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav .dropdown-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.main-nav .dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.main-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    margin-top: 8px;
    list-style: none;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: block;
}

.main-nav .dropdown-menu li {
    display: block;
    width: 100%;
}

.main-nav .dropdown:hover .dropdown-menu,
.main-nav .dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.main-nav .dropdown-item:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    padding-left: 24px;
}
.main-nav .dropdown-toggle::after {display: none;}

header.scrolled .main-nav .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

header.scrolled .main-nav .dropdown-item {
    color: #333;
}

header.scrolled .main-nav .dropdown-item:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.support-24x7 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-default,
.btn-login {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-default {
    background: rgba(255,255,255,0.3);
    color: #333;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-default i {
    font-size: 14px;
    color: #333;
}

.btn-default:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: rgba(255,255,255,0.3);
    color: #333;
}

.btn-login {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 137, 208, 0.2);
}

.btn-login i {
    font-size: 14px;
    color: white;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 137, 208, 0.3);
    color: white;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: visible;
    background: transparent;
    z-index: 2;
    margin-top: 0;
    padding-bottom: 0;
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 60px 0;
    width: 100%;
}

.hero-greeting {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
}

.greeting-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.greeting-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.greeting-welcome {
    font-size: 1.3rem;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.greeting-text {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.hero-search-form {
    max-width: 600px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.search-input-wrapper:focus-within {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.search-icon {
    position: absolute;
    left: 24px;
    pointer-events: none;
    z-index: 1;
}

.hero-search-input {
    flex: 1;
    padding: 20px 24px 20px 56px;
    border: none;
    outline: none;
    font-size: 1.1rem;
    color: #333;
    background: transparent;
}

.hero-search-input::placeholder {
    color: #999;
}

.search-submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
}

.search-submit-btn:hover {
    background: linear-gradient(135deg, #0052a3 0%, #003580 100%);
    transform: translateX(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}



/* ===== BOOTSTRAP OVERRIDES ===== */
.text-primary {
    color: var(--primary-color) !important;
}

.text-success {
    color: #009245 !important;
}

.bg-primary {
    background: var(--gradient-primary) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.hub-card {
    border-radius: 32px !important;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,102,204,0.15) !important;
}

/* ===== QUICK ACCESS BAR ===== */
.quick-access-bar {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    max-width: var(--container-width);
    width: calc(100% - 80px);
}

.quick-access-bar .container {
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.quick-access-bar .row {
    margin: 0;
    gap: 8px;
}
.quick-access-bar .row>* {
    margin-top: 0;
}
.quick-access-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 12px;
}


.quick-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f8fc;
    border-radius: 12px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.quick-icon-img {
    width: 55%;
    height: 55%;
    object-fit: contain;
    transition: all 0.3s ease;
    /* Chuyển icon thành màu xanh nhận diện #0089D0 */
    filter: brightness(0) saturate(100%) invert(51%) sepia(87%) saturate(3520%) hue-rotate(167deg) brightness(102%) contrast(101%);
}

.quick-icon svg {
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quick-access-item:hover .quick-icon {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 137, 208, 0.3);
}

.quick-access-item:hover .quick-icon-img {
    filter: brightness(0) invert(1);
}

.quick-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.quick-access-item:hover .quick-label {
    color: #0066cc;
}

/* ===== SECTION TITLE (UNIFIED STYLE) ===== */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 48px;
    text-align: center;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ===== NEWS & EVENTS SECTION ===== */
.news-events-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    z-index: 10;
}

.news-events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 137, 208, 0.2), transparent);
}

.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 137, 208, 0.15);
    border-color: var(--primary-color);
}

.news-image-wrapper {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    position: relative;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image {
    transform: scale(1.1);
}

.news-content {
    padding: 24px;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.2em;
}

.news-card:hover .news-title {
    color: var(--primary-color);
}

.news-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #666;
}

.news-date i {
    font-size: 0.875rem;
    color: var(--primary-color);
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: var(--primary-color);
    gap: 12px;
}

.view-all-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.view-all-link:hover i {
    transform: translateX(4px);
}

/* ===== COMPANY INTRODUCTION & STATS SECTION ===== */
.company-intro-section {
    padding: 0;
    background: #ffffff;
    position: relative;
    z-index: 10;
}

/* Video/Image Intro Part */
.intro-video-section {
    padding-top: 60px;
    background: #ffffff;
}

.intro-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 18 / 9;
    border: 12px solid #fff;
    background-image: url('../images/slide1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.intro-video-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.play-button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid white;
    color: var(--primary-color);
    font-size: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
    background: white;
}

.play-button i {
    margin-left: 4px;
    color: var(--primary-color);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    z-index: 10000;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.3s ease;
}

.video-modal-content video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.video-modal-close:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Statistics Part */
.stats-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    margin-top: -80px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    margin: 20px 0;
}

@media (min-width: 992px) {
    .stats-section .col-lg-3:not(:last-child) .stat-item {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 991px) {
    .stats-section .col-6:nth-child(odd) .stat-item {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .stats-section .col-6:not(:nth-last-child(-n+2)) .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}

.stat-icon-outline {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.stat-icon-outline i {
    font-size: 36px;
    color: white;
}

.stat-item:hover .stat-icon-outline {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.stat-number-white {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label-white {
    font-size: 1rem;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== SHAREHOLDER RELATIONS SECTION ===== */
.shareholder-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    z-index: 10;
}

.shareholder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 137, 208, 0.2), transparent);
}

.shareholder-content {
    max-width: 1000px;
    margin: 0 auto;
}

.shareholder-item {
    display: block;
    padding: 40px 32px;
    text-decoration: none;
    border-right: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    background: #ffffff;
    position: relative;
}

.shareholder-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.shareholder-item:hover {
    background: #f8f9fa;
    color: inherit;
}

.shareholder-item:hover::after {
    width: 100%;
}

.shareholder-item:nth-child(3n) {
    border-right: none;
}

@media (max-width: 991px) {
    .shareholder-item {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }
    
    .shareholder-item:last-child {
        border-bottom: none;
    }
}

.shareholder-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.shareholder-item:hover .shareholder-item-title {
    color: var(--primary-color);
}

.shareholder-item-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ===== CONTACT & MAP SECTION ===== */
.contact-map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    z-index: 10;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.25rem;
}

.map-wrapper {
    height: 100%;
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #f0f0f0;
}

.contact-info-card-unified {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-info-card-unified:hover {
    box-shadow: 0 8px 24px rgba(0, 137, 208, 0.15);
    border-color: var(--primary-color);
}

.contact-company-header {
    background: #f8f9fa;
    padding: 24px 32px;
    border-bottom: 1px solid #e8e8e8;
}

.contact-company-header h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
}

.contact-items-wrapper {
    padding: 32px;
}

.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    box-shadow: 0 8px 24px rgba(0, 137, 208, 0.15);
    border-color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
}

.contact-item-link:hover {
    background: #f8f9fa;
}

.contact-item-link:hover .contact-value {
    color: var(--primary-color);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 20px;
}

.contact-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-value:hover {
    color: var(--primary-color);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.channel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.channel-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 137, 208, 0.15);
    border-color: var(--primary-color);
}

.channel-icon-small {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e3f0ff 0%, #cce5ff 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.channel-icon-small i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.channel-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.channel-item:hover .channel-icon-small {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(5deg);
}

.channel-item:hover .channel-icon-small i {
    color: white;
}

.channel-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.channel-item:hover span {
    color: var(--primary-color);
}

.channel-item span {
    text-align: center;
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-contact i {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
    padding-left: 0;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 20px;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top-btn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 137, 208, 0.3);
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.back-to-top-btn.show {
    display: flex;
}

.back-to-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 137, 208, 0.4);
}

.back-to-top-btn i {
    display: block;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
    font-size: 14px;
}

.breadcrumb a {
    color: #0066cc;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ===== PAGE TITLE ===== */
.page-header {
    background: var(--gradient-primary);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header p {
    font-size: 16px;
    opacity: 0.95;
}

/* ===== CONTENT PAGE ===== */
.content-page {
    padding: 50px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.content-page h2 {
    color: #004aa3;
    font-size: 28px;
    margin: 30px 0 20px;
    font-weight: 700;
}

.content-page h3 {
    color: #0066cc;
    font-size: 20px;
    margin: 20px 0 15px;
    font-weight: 600;
}

.content-page p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.content-page ul,
.content-page ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-page li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop (≥1400px) */
@media (min-width: 1400px) {
    :root {
        --container-width: 1320px;
    }
    
    body {
        font-size: 16px;
    }
}

@media (max-width: 1200px) {
    :root {
        --container-padding: 30px;
    }
    
    .header-container {
        gap: 25px;
    }
    
    .main-nav a {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .logo img {
        height: 80px;
    }
}

@media (max-width: 992px) {
    :root {
        --container-padding: 20px;
    }
    
    .header-container {
        flex-wrap: wrap;
        gap: 15px;
        padding: 0 15px;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 2;
        margin-left: auto;
    }
    
    .logo {
        order: 1;
    }
    
    .header-actions {
        order: 3;
    }
    
    .main-nav {
        order: 4;
        width: 100%;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        z-index: 1000;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
    }
    
    .main-nav li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-nav a {
        padding: 15px 20px;
        border-radius: 0;
        width: 100%;
        display: block;
    }
    
    .main-nav .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
        display: none;
    }
    
    .main-nav .dropdown.active .dropdown-menu {
        display: block;
        box-shadow: none;
        border: none;
    }
    
    .main-nav .dropdown-item {
        padding: 12px 40px;
        font-size: 14px;
    }
    
    header.scrolled .main-nav {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
    }
    
    .logo img {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .main-nav a {
        padding: 8px 12px;
        font-size: 13px;
    }

    .header-actions {
        gap: 8px;
    }
    
    .support-24x7 {
        gap: 6px;
    }
    
    .btn-default,
    .btn-login {
        padding: 10px 18px;
        font-size: 13px;
        gap: 6px;
    }
    
    .btn-default i,
    .btn-login i {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 36px;
        padding-bottom: 12px;
    }
    
    .section-title::after {
        width: 50px;
        height: 3px;
    }
    
    .news-events-section {
        padding: 50px 0;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-title {
        font-size: 1.1rem;
        min-height: 3.6em;
    }
    
    .contact-map-section {
        padding: 50px 0;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
    
    .map-container {
        height: 400px;
    }
    
    .contact-company-header {
        padding: 20px 24px;
    }
    
    .contact-company-header h4 {
        font-size: 1.1rem;
    }
    
    .contact-items-wrapper {
        padding: 24px 20px;
    }
    
    .contact-info-card {
        padding: 24px 20px;
    }
    
    .contact-item {
        padding: 14px 0;
    }
    
    .contact-icon {
        width: 44px;
        height: 44px;
    }
    
    .contact-icon i {
        font-size: 18px;
    }
    
    .channel-item {
        padding: 16px 12px;
    }
    
    .channel-icon-small {
        width: 48px;
        height: 48px;
    }
    
    .channel-icon-small i {
        font-size: 20px;
    }
    
    .channel-icon-img {
        width: 28px;
        height: 28px;
    }
    
    .channel-item span {
        font-size: 0.85rem;
    }
    
    .intro-video-section {
        padding: 50px 0;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }
    
    .video-modal-content {
        width: 95%;
        max-width: 100%;
    }
    
    .video-modal-close {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: 10px;
        right: 10px;
    }
    
    .stats-section {
        padding: 60px 0;
    }
    
    .stat-item {
        padding: 30px 15px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .stat-icon-outline {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .stat-icon-outline i {
        font-size: 28px;
    }
    
    .stat-number-white {
        font-size: 2.25rem;
    }
    
    .stat-label-white {
        font-size: 0.9rem;
    }
    
    .shareholder-section {
        padding: 50px 0;
    }
    
    .shareholder-item {
        padding: 32px 24px;
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }
    
    .shareholder-item:last-child {
        border-bottom: none;
    }
    
    .shareholder-item-title {
        font-size: 1.15rem;
    }
    
    .shareholder-item-desc {
        font-size: 0.9rem;
    }
    
    .intro-title {
        font-size: 1.75rem;
        padding-bottom: 16px;
    }
    
    .intro-title::after {
        width: 50px;
        height: 3px;
    }

    .logo img {
        height: 60px;
    }

    .page-header h1 {
        font-size: 28px;
    }
    
    .search-submit-btn {
        padding: 18px 30px;
        font-size: 1rem;
    }
    .intro-video-wrapper {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    footer {
        padding: 50px 0 25px;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .footer-section li {
        margin-bottom: 10px;
    }
    
    .footer-contact li {
        margin-bottom: 12px;
    }
}
@media (max-width: 992px) {
    .hero-content {
        padding: 15px 0;
    }
    
    .quick-access-bar {
        width: calc(100% - 40px);
        bottom: 30px;
    }
    
    .quick-access-bar .container {
        padding: 16px 20px;
    }
    
    .quick-access-bar .row {
        gap: 6px;
    }
        
    .quick-access-item {
        padding: 10px 4px;
        gap: 6px;
    }
    
    .quick-icon {
        width: 42px;
        height: 42px;
    }
    
    .quick-icon-img {
        width: 60%;
        height: 60%;
    }
    
    .quick-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .quick-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 100vh;
        height: 100vh;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-greeting {
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .greeting-icon {
        width: 64px;
        height: 64px;
    }
    
    .greeting-welcome {
        font-size: 0.9rem;
    }
    
    .greeting-text {
        font-size: 1.75rem;
    }
    
    .hero-search-input {
        font-size: 1rem;
        padding: 16px 20px 16px 48px;
    }
    
    .search-icon {
        left: 20px;
        width: 18px;
        height: 18px;
    }
    
    .quick-access-bar {
        width: 100%;
        bottom: 0;
        left: 0;
        transform: none;
        border-radius: 0;
    }
    
    .quick-access-bar .container {
        padding: 12px 8px;
        border-radius: 0;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
    
    .quick-access-bar .row {
        flex-wrap: nowrap;
        gap: 2px;
        margin: 0;
    }
    
    .quick-access-bar .row > * {
        flex: 1 1 0 !important;
        min-width: 0;
        max-width: none !important;
        width: auto !important;
    }
    
    .quick-access-item {
        padding: 8px 1px;
        gap: 5px;
    }
    
    .quick-icon {
        width: 40px;
        height: 40px;
        background: #f5f8fc;
        position: relative;
        overflow: hidden;
        margin: 0 auto;
        border-radius: 12px;
    }
    
    .quick-icon-img {
        width: 60%;
        height: 60%;
        object-fit: contain;
        filter: brightness(0) saturate(100%) invert(51%) sepia(87%) saturate(3520%) hue-rotate(167deg) brightness(102%) contrast(101%);
    }
    
    .quick-label {
        font-size: 0.65rem;
        line-height: 1.2;
        font-weight: 600;
    }
    
    .quick-access-item:hover .quick-icon {
        background: var(--gradient-primary);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 137, 208, 0.3);
    }
    
    .quick-access-item:hover .quick-icon-img {
        filter: brightness(0) invert(1);
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 100vh;
        height: 100vh;
    }
    
    .hero-greeting {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .greeting-icon {
        width: 56px;
        height: 56px;
    }
    
    .greeting-welcome {
        font-size: 0.8rem;
    }
    
    .greeting-text {
        font-size: 1.4rem;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .quick-access-bar {
        width: 100%;
        bottom: 0;
        left: 0;
        transform: none;
    }
    
    .quick-access-bar .container {
        padding: 10px 4px;
        border-radius: 0;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
    }
    
    .quick-access-bar .row {
        flex-wrap: nowrap !important;
        gap: 2px;
        margin: 0;
    }
    
    .quick-access-bar .row > * {
        flex: 1 1 0 !important;
        min-width: 0;
        max-width: none !important;
        width: auto !important;
    }
    
    .quick-access-item {
        padding: 6px 0px;
        gap: 4px;
    }
    
    .quick-icon {
        width: 36px;
        height: 36px;
        background: #f5f8fc;
        position: relative;
        overflow: hidden;
        margin: 0 auto;
        border-radius: 10px;
    }
    
    .quick-icon-img {
        width: 60%;
        height: 60%;
        object-fit: contain;
        filter: brightness(0) saturate(100%) invert(51%) sepia(87%) saturate(3520%) hue-rotate(167deg) brightness(102%) contrast(101%);
    }
    
    .quick-label {
        line-height: 1.1;
        font-weight: 600;
    }
    
    .quick-access-item:hover .quick-icon {
        background: var(--gradient-primary);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 137, 208, 0.3);
    }
    
    .quick-access-item:hover .quick-icon-img {
        filter: brightness(0) invert(1);
    }
    .page-header h1 {
        font-size: 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-contact li {
        justify-content: flex-start;
    }
}

