/* ==========================================================================
   HERO LEFT: SUPREME GROWTH STYLE
   ========================================================================== */

/* Badge định danh - Nhỏ nhưng tinh tế */
.vlink-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f4f7fa;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #004a99;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #ff6600;
    border-radius: 50%;
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 102, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}

/* Headline: Linh hồn của trang web */
.vlink-main-heading {
    line-height: 0.85 !important; /* Ép dòng sát nhau cho đậm đà */
    margin-bottom: 40px !important;
}

.heading-thin {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 200;
    color: #86868b;
    letter-spacing: -1px;
}

.heading-bold {
    font-size: clamp(55px, 7vw, 95px);
    font-weight: 900;
    color: #004a99;
    letter-spacing: -4px;
    display: block;
    margin-top: 5px;
}

.heading-bold .tm {
    font-size: 0.3em;
    vertical-align: top;
    color: #ff6600;
    margin-left: 5px;
}

/* Description & Highlight */
.vlink-description p {
    font-size: 22px;
    line-height: 1.55;
    color: #424245;
    margin-bottom: 20px;
}

.description-highlight span {
    color: #1d1d1f;
    font-weight: 700;
    /* Hiệu ứng gạch chân marker sang trọng */
    background-image: linear-gradient(120deg, rgba(255,102,0,0.15) 0%, rgba(255,102,0,0.15) 100%);
    background-repeat: no-repeat;
    background-size: 100% 30%;
    background-position: 0 80%;
}

/* Manifesto: Khối tuyên ngôn bứt phá */
.vlink-manifesto {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 50px;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.vlink-manifesto::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: #ff6600;
}

.manifesto-icon {
    font-size: 35px;
}

.manifesto-text {
    font-size: 18px;
    color: #1d1d1f;
    line-height: 1.4;
}

.manifesto-text strong {
    font-size: 24px;
    color: #004a99;
    display: block;
    margin-top: 5px;
    letter-spacing: -0.5px;
}

/* Mobile Tối ưu */
@media (max-width: 767px) {
    .vlink-hero-left { text-align: left; }
    .heading-bold { letter-spacing: -2px; }
    .vlink-manifesto { padding: 20px; gap: 15px; }
    .manifesto-text strong { font-size: 20px; }
}

/* ==========================================================================
   HERO RIGHT: GROWTH DASHBOARD ANIMATION
   ========================================================================== */

.vlink-hero-right {
    perspective: 1000px; /* Tạo độ nổi 3D */
    padding: 20px;
}

.growth-dashboard {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 40px 100px rgba(0, 74, 153, 0.12);
    border: 1px solid #f0f4f8;
    transform: rotateY(-5deg) rotateX(5deg); /* Xoay nhẹ chuẩn UI quốc tế */
    transition: all 0.5s ease;
}

.growth-dashboard:hover {
    transform: rotateY(0) rotateX(0);
}

/* Header */
.db-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.db-title {
    font-size: 14px;
    font-weight: 700;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.db-status {
    font-size: 12px;
    font-weight: 600;
    color: #00b300;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pulse-green {
    width: 8px;
    height: 8px;
    background: #00b300;
    border-radius: 50%;
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Metrics */
.db-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.metric-card {
    background: #f8fafd;
    padding: 15px;
    border-radius: 12px;
}

.m-label { font-size: 11px; color: #6e6e73; display: block; }
.m-value { font-size: 24px; font-weight: 800; color: #004a99; margin: 5px 0; display: block; }
.m-bar { height: 4px; background: #e5e5e5; border-radius: 2px; overflow: hidden; }
.m-progress { height: 100%; background: #ff6600; animation: grow-bar 3s infinite alternate; }

/* Chart SVG Animation */
.db-chart-container {
    position: relative;
    margin: 20px 0;
}

.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw-line 5s linear infinite;
}

@keyframes draw-line {
    to { stroke-dashoffset: 0; }
}

.chart-point {
    position: absolute;
    top: 20px;
    right: 20%;
    text-align: center;
}

.point-ping {
    width: 12px;
    height: 12px;
    background: #ff6600;
    border-radius: 50%;
    margin: 0 auto;
    animation: pulse-orange 1.5s infinite;
}

.point-label {
    font-size: 10px;
    font-weight: 700;
    color: #ff6600;
    margin-top: 5px;
    background: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Notification Item */
.notify-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f1f3f8;
    padding: 12px;
    border-radius: 12px;
    font-size: 13px;
    color: #1d1d1f;
    border-left: 4px solid #004a99;
    animation: slide-in 4s infinite;
}

@keyframes slide-in {
    0%, 10% { opacity: 0; transform: translateX(20px); }
    20%, 90% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; }
}

@keyframes grow-bar { from { width: 0; } }

/* Responsive */
@media (max-width: 767px) {
    .growth-dashboard { transform: none; padding: 20px; }
    .db-metrics { grid-template-columns: 1fr; }
}


/* ==========================================================================
   SECTION: WHO WE ARE (IDENTITY)
   ========================================================================== */
.vlink-who-we-are {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.who-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.who-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

/* Cột trái: Text */
.vlink-sub-label {
    color: #ff6600;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 15px;
}

.who-title {
    font-size: 48px;
    font-weight: 900;
    color: #002d5e;
    margin-bottom: 40px;
    line-height: 1.1;
    text-transform: uppercase;
}

.who-text-wrapper p {
    font-size: 19px;
    line-height: 1.7;
    color: #424245;
    margin-bottom: 25px;
}

.who-text-wrapper strong {
    color: #004a99;
    font-weight: 700;
}

.who-manifesto-box {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 25px;
    background: #f8fafd;
    border-radius: 12px;
    border-left: 5px solid #ff6600;
}

.who-manifesto-box p {
    margin: 0;
    font-size: 17px;
    color: #1d1d1f;
}

.who-manifesto-box strong {
    color: #004a99;
    font-size: 19px;
}

/* Cột phải: Visual DNA */
.who-visual {
    position: relative;
}

.dna-card {
    background: #004a99;
    padding: 40px;
    border-radius: 30px;
    color: #fff;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 74, 153, 0.2);
}

.dna-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.dna-item:last-child { margin-bottom: 0; }

.dna-num {
    font-size: 24px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
}

.dna-info h5 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 700;
}

.dna-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.abstract-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 50px solid #f1f3f8;
    border-radius: 50%;
    top: -50px;
    right: -100px;
    z-index: 1;
}

/* Mobile */
@media (max-width: 991px) {
    .who-grid { grid-template-columns: 1fr; gap: 50px; }
    .who-title { font-size: 36px; }
    .who-visual { order: -1; } /* Ảnh/DNA lên trước trên mobile */
}


/* ==========================================================================
   CSS SCOPED: .vlinkabout (International & Gradient Design)
   ========================================================================== */

.vlinkabout .vlink-build-wrapper {
    width: 100%;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* Header Section: Fix khoảng cách xa */
.vlinkabout .build-header {
    margin-bottom: 40px !important;
}

.vlinkabout .header-pre-title {
    font-size: 13px;
    font-weight: 700;
    color: #ff6600 !important;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 0px !important; /* Ép sát dòng trên */
    line-height: 1 !important;
}

.vlinkabout .section-title {
    font-size: clamp(32px, 4.5vw, 52px) !important;
    font-weight: 900 !important;
    color: #002d5e !important;
    letter-spacing: -2px !important;
    margin-top: 8px !important; /* Khoảng cách nhỏ với Pre-title */
    margin-bottom: 0 !important;
    line-height: 1 !important; /* Ép sát dòng tiêu đề chính */
    text-transform: uppercase;
}

/* Chuyển màu Gradient cho chữ XÂY DỰNG */
.vlinkabout .section-title span {
    background: linear-gradient(90deg, #ff6600 0%, #ff9831 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    color: #ff6600 !important; /* Fallback cho trình duyệt cũ */
    -webkit-text-stroke: 0px !important; /* Bỏ viền stroke để hiện màu gradient */
}

.vlinkabout .header-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff6600, #ff9831) !important;
    margin: 12px 0 0 0 !important; /* Ép sát lên trên tiêu đề */
    border-radius: 2px;
}

/* Hệ thống lưới Border-Grid giữ nguyên */
.vlinkabout .build-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1px !important;
    background: #e5e5e5 !important;
    border: 1px solid #e5e5e5 !important;
}

.vlinkabout .build-card {
    background: #ffffff !important;
    padding: 45px 35px !important;
    position: relative;
    transition: all 0.4s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vlinkabout .card-number {
    font-size: 12px;
    font-weight: 700;
    color: #b0b0b5;
    font-family: 'Space Mono', monospace;
}

.vlinkabout .build-card h4 {
    font-size: 19px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    color: #1d1d1f !important;
    margin-top: 25px !important;
    margin-bottom: 0 !important;
}

.vlinkabout .card-arrow {
    font-size: 22px;
    color: #e5e5e5;
    transition: 0.3s;
}

/* Featured Card */
.vlinkabout .build-card.featured {
    grid-column: span 2 !important;
    background: #004a99 !important;
    color: #ffffff !important;
    overflow: hidden;
}

.vlinkabout .featured-bg-text {
    position: absolute;
    right: -10px;
    bottom: -20px;
    font-size: 130px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.vlinkabout .build-card.featured h4 {
    color: #ffffff !important;
    font-size: 26px !important;
}

.vlinkabout .target-label {
    font-size: 11px;
    font-weight: 700;
    background: #ff6600;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
    color: #fff;
}

/* Hover Effects */
.vlinkabout .build-card:not(.featured):hover {
    background: #fcfcfc !important;
}

.vlinkabout .build-card:hover .card-arrow {
    color: #ff6600;
    transform: translateX(8px);
}

/* Responsive */
@media (max-width: 991px) {
    .vlinkabout .build-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .vlinkabout .build-card.featured { grid-column: span 2 !important; }
}

@media (max-width: 600px) {
    .vlinkabout .build-grid { grid-template-columns: 1fr !important; }
    .vlinkabout .build-card.featured { grid-column: span 1 !important; }
    .vlinkabout .build-card { padding: 35px 25px !important; }
}

/* ==========================================================================
   PHILOSOPHY SECTION: DARK MODE BOLD (.vlinkabout)
   ========================================================================== */

/* Wrapper chính cho Section Triết lý */
.vlinkabout .vlink-philosophy-wrapper {
    background: #002d5e !important; /* Xanh Navy đậm */
    padding: 80px 60px !important;
    border-radius: 40px; /* Bo góc lớn tạo cảm giác hiện đại */
    color: #ffffff !important;
    position: relative;
    overflow: hidden;
}

/* Lưới bố cục */
.vlinkabout .philosophy-grid {
    display: grid !important;
    grid-template-columns: 1fr 1.2fr !important;
    gap: 60px !important;
    align-items: center;
}

/* Tiêu đề ép sát và Outline */
.vlinkabout .philo-title {
    font-size: clamp(40px, 5vw, 70px) !important;
    font-weight: 900 !important;
    line-height: 0.9 !important;
    color: #ffffff !important;
    margin: 0 !important;
    text-transform: uppercase;
    letter-spacing: -2px !important;
}

.vlinkabout .philo-title span {
    display: block;
    color: transparent !important;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.4); /* Chữ rỗng nghệ thuật */
}

.vlinkabout .philo-quote {
    font-size: 20px !important;
    font-weight: 300 !important;
    font-style: italic;
    color: #ff6600 !important; /* Màu cam thương hiệu nhấn mạnh quote */
    margin-top: 30px !important;
    max-width: 80%;
    line-height: 1.4 !important;
}

/* Cột phải: Các item triết lý */
.vlinkabout .philo-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vlinkabout .philo-item h5 {
    font-size: 22px !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

.vlinkabout .philo-dot {
    width: 8px;
    height: 8px;
    background: #ff6600;
    border-radius: 50%;
}

/* Logic Flow Box */
.vlinkabout .logic-flow-box {
    margin-top: 40px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 30px !important;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vlinkabout .logic-label {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px !important;
}

.vlinkabout .logic-steps {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.vlinkabout .step {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.vlinkabout .arrow {
    color: #ff6600;
    font-weight: 900;
}

.vlinkabout .final {
    color: #ff6600 !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    background: rgba(255, 102, 0, 0.1);
    padding: 5px 15px;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 991px) {
    .vlinkabout .philosophy-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
    .vlinkabout .vlink-philosophy-wrapper { padding: 40px 30px !important; }
    .vlinkabout .philo-title { font-size: 50px !important; }
}

/* --- SECTION 5: WEBSITE GROWTH SYSTEM --- */
.vlinkabout .vlink-system-wrapper {
    padding: 60px 0;
    font-family: 'Inter', sans-serif;
}

.vlinkabout .vlink-badge-small {
    color: #ff6600;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}

.vlinkabout .vlink-title-main {
    font-size: clamp(28px, 4vw, 42px) !important;
    font-weight: 900 !important;
    color: #002d5e !important;
    line-height: 1.1 !important;
    margin-bottom: 25px !important;
}

.vlinkabout .vlink-title-main span {
    display: block;
    background: linear-gradient(90deg, #ff6600 0%, #ff9831 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vlinkabout .vlink-intro-text {
    font-size: 18px;
    color: #424245;
    max-width: 800px;
    margin-bottom: 40px !important;
}

.vlinkabout .system-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.vlinkabout .feature-item {
    background: #f8fafd;
    padding: 30px;
    border-radius: 16px;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.vlinkabout .feature-item:hover {
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: #ff6600;
}

.vlinkabout .f-icon { font-size: 24px; margin-bottom: 15px; }

.vlinkabout .feature-item p {
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
    line-height: 1.4;
}

.vlinkabout .system-footer-note {
    background: #002d5e;
    color: #fff;
    padding: 25px 35px;
    border-radius: 12px;
    font-size: 17px;
}

/* --- SECTION 6: CORE VALUES --- */
.vlinkabout .vlink-values-wrapper {
    background: linear-gradient(135deg, #002d5e 0%, #001a36 100%) !important;
    padding: 80px 50px !important;
    border-radius: 30px;
    color: #fff;
}

.vlinkabout .vlink-title-main.white { color: #fff !important; }

.vlinkabout .value-row {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.vlinkabout .v-num {
    font-size: 20px;
    font-weight: 900;
    color: #ff6600;
    font-family: monospace;
}

.vlinkabout .v-text h5 {
    color: #fff !important;
    font-size: 20px !important;
    margin: 0 !important;
    font-weight: 600 !important;
}

.vlinkabout .values-commitment {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px dashed rgba(255,255,255,0.2);
}

.vlinkabout .values-commitment p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

.vlinkabout .values-commitment strong { color: #ff6600; }

@media (max-width: 767px) {
    .vlinkabout .vlink-values-wrapper { padding: 40px 25px !important; }
}

/* ==========================================================================
   CTA SECTION: HIGH-CONVERSION (.vlinkabout)
   ========================================================================== */

.vlinkabout .vlink-cta-wrapper {
    background: #002d5e !important;
    padding: 100px 40px !important;
    border-radius: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.vlinkabout .cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.vlinkabout .cta-pre-title {
    color: #ff6600 !important;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.vlinkabout .cta-main-title {
    color: #ffffff !important;
    font-size: clamp(30px, 5vw, 56px) !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    margin-bottom: 30px !important;
    text-transform: uppercase;
    letter-spacing: -2px !important;
}

.vlinkabout .cta-main-title span {
    background: linear-gradient(90deg, #ff6600 0%, #ff9831 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block; /* Ép xuống dòng để tạo khối */
}

.vlinkabout .cta-desc {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 45px !important;
}

/* Nút bấm Premium */
.vlinkabout .cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.vlinkabout .btn-vlink-primary {
    background: linear-gradient(90deg, #ff6600, #ff9831) !important;
    color: #ffffff !important;
    padding: 18px 35px !important;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

.vlinkabout .btn-vlink-secondary {
    background: transparent !important;
    color: #ffffff !important;
    padding: 18px 35px !important;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.vlinkabout .btn-vlink-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.5);
}

.vlinkabout .btn-vlink-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #ffffff;
}

/* Badges */
.vlinkabout .cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 600;
}

/* Hiệu ứng Glow mờ phía sau */
.vlinkabout .cta-bg-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.15) 0%, rgba(0, 45, 94, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Mobile */
@media (max-width: 767px) {
    .vlinkabout .vlink-cta-wrapper { padding: 60px 20px !important; }
    .vlinkabout .cta-trust-badges { flex-direction: column; gap: 10px; }
    .vlinkabout .btn-vlink-primary, .vlinkabout .btn-vlink-secondary { width: 100%; text-align: center; }
}


/* ==========================================================================
   VLINK ASIA - DARK EMPHASIS SERVICES (FULL COPY)
   Mục tiêu theo yêu cầu:
   1) Bỏ nền tổng của 4 card + bỏ padding tổng (full-bleed): card 1 sát trái, card 4 sát phải
   2) Card nổi bật: nền dark (đen/navy) + gradient navy → navy nhạt hơn, cam điểm xuyến
   3) Giữ layout hero gọn, không phá hệ thống hiện tại
   ========================================================================== */

:root{
  --v-navy: #004a99;
  --v-navy-dark: #002d5e;

  /* Accent (cam điểm xuyến) */
  --v-accent: #ff6600;

  --v-text-dark: #1d1d1f;
  --v-text-muted: #636366;

  --v-bg-light: #fbfbfd;
  --v-line: rgba(0,0,0,.08);
  --v-line-strong: rgba(0,0,0,.12);

  /* Dark system for cards */
  --v-card-bg-1: #061427;      /* gần đen/navy */
  --v-card-bg-2: #082346;      /* navy */
  --v-card-bg-3: #0a3a74;      /* navy nhạt hơn */
  --v-card-line: rgba(255,255,255,.12);
  --v-card-line-hover: rgba(255,255,255,.20);
  --v-card-text: rgba(255,255,255,.90);
  --v-card-muted: rgba(255,255,255,.76);
}

/* ==========================================================================
   0) Base
   ========================================================================== */
.vlink-page-wrapper{
  font-family: 'Inter', sans-serif;
  color: var(--v-text-dark);
}

/* ==========================================================================
   1) Container alignment (HERO giữ 1200px như cũ)
   - Services sẽ full-bleed theo yêu cầu, nên KHÔNG dùng rule này cho services.
   ========================================================================== */
.vlink-page-wrapper > .row{
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   2) Badge & Hero text
   ========================================================================== */
.vlink-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: rgba(0,0,0,.04);
  border: 1px solid var(--v-line);
  padding: 6px 14px;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 700;
  color: var(--v-navy);
  margin-bottom: 20px;
}

.badge-dot{
  width: 6px;
  height: 6px;
  background: var(--v-accent);
  border-radius: 50%;
}

/* Hero Heading */
.vlink-main-heading{
  margin-bottom: 22px !important;
  line-height: 1.12 !important;
}

.heading-thin{
  font-size: 32px;
  font-weight: 300;
  color: #86868b;
  display: block;
}

.heading-bold{
  font-size: 52px;
  font-weight: 800;
  color: var(--v-navy);
  letter-spacing: -1.2px;
}

.description-highlight{
  font-size: 18px;
  color: var(--v-text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.description-highlight span{
  color: var(--v-navy);
  font-weight: 600;
  border-bottom: 2px solid rgba(0,0,0,.10);
}

/* ==========================================================================
   3) Services section + Grid (FULL-BLEED)
   - Bỏ nền tổng + bỏ padding tổng
   - Grid full width: card 1 sát trái, card 4 sát phải
   ========================================================================== */
.vlink-ultra-services{
  padding: 0 !important;
  background: transparent !important;
}

/* Grid full-bleed */
.v-grid-system{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;

  max-width: none !important;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

/* ==========================================================================
   4) Card (DARK + GRADIENT EMPHASIS)
   ========================================================================== */
.v-glow-card{
  position: relative;
  overflow: hidden;

  /* Navy -> navy nhạt hơn, có chiều sâu */
  background: linear-gradient(135deg, var(--v-card-bg-1) 0%, var(--v-card-bg-2) 55%, var(--v-card-bg-3) 100%) !important;

  border: 1px solid var(--v-card-line) !important;
  border-radius: 18px;

  padding: 26px 20px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* Highlight lights (subtle) */
.v-glow-card::before{
  content:"";
  position:absolute;
  inset:0;

  background:
    radial-gradient(900px 260px at 15% 18%, rgba(255,102,0,.14) 0%, rgba(255,102,0,0) 55%),
    radial-gradient(900px 280px at 85% 18%, rgba(0,74,153,.28) 0%, rgba(0,74,153,0) 60%);
  pointer-events:none;
}

/* Accent line top */
.v-glow-card::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:2px;
  background: linear-gradient(90deg, rgba(255,102,0,.90), rgba(255,102,0,0));
  opacity:.85;
  pointer-events:none;
}

.v-glow-card:hover{
  transform: translateY(-5px);
  border-color: var(--v-card-line-hover) !important;
  box-shadow:
    0 18px 52px rgba(0,0,0,.38),
    0 0 0 1px rgba(0,74,153,.18) inset;
}

/* Icon box (dark glass) */
.v-icon-box{
  width: 44px;
  height: 44px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(215,232,255,.95);
  margin-bottom: 18px;
}

/* Typography on dark */
.v-glow-card h3{
  font-size: 17px !important;
  font-weight: 800 !important;
  color: var(--v-card-text) !important;
  margin-bottom: 10px !important;
}

.v-glow-card p{
  font-size: 14px !important;
  color: var(--v-card-muted) !important;
  line-height: 1.55 !important;
  margin-bottom: 18px !important;
}

/* Link action (cam điểm xuyến) */
.v-link-action{
  font-size: 13px;
  font-weight: 800;
  color: var(--v-accent);
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  transition: color .25s ease, gap .25s ease, opacity .25s ease;
}

.v-glow-card:hover .v-link-action{
  color: #ffd1b3; /* cam nhạt sang hơn trên nền tối */
  gap: 10px;
}

/* ==========================================================================
   5) Dual CTA (card cuối)
   ========================================================================== */
.vlink-cta-duo{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.vlink-cta-duo .v-link-action{
  padding: 10px 12px;
  border-radius: 12px;
  line-height: 1;
}

/* Secondary ghost (trên nền tối) */
.v-link-action--ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.88);
  opacity: .95;
}

.v-glow-card:hover .v-link-action--ghost{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
  opacity: 1;
}

/* ==========================================================================
   6) Title link inside H3
   ========================================================================== */
.v-card-title{
  margin: 0 0 10px !important;
}

.v-card-title-link{
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

.v-card-title-link:hover{
  color: #ffffff;
}

.v-card-title-link:focus-visible{
  outline: 2px solid rgba(255,102,0,.55);
  outline-offset: 3px;
  border-radius: 10px;
}

/* ==========================================================================
   7) Responsive
   - Mobile vẫn cho padding nhẹ để không cấn mép
   ========================================================================== */
@media (max-width: 992px){
  .v-grid-system{
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .heading-bold{ font-size: 42px; }
}

@media (max-width: 600px){
  .v-grid-system{
    grid-template-columns: 1fr;
    padding: 0 14px !important; /* mobile cần thở */
  }

  .heading-thin{ font-size: 26px; }
  .heading-bold{ font-size: 36px; }
}
/* =========================================================
   FIX: Card text too dark + Gradient ONLY navy (no orange)
   Copy block này đặt CUỐI CSS để override Flatsome
   ========================================================= */

/* 1) Nền card: chỉ navy -> navy nhạt (KHÔNG cam) */
.v-glow-card{
  background: linear-gradient(135deg,
    #061427 0%,
    #082a55 55%,
    #0b4a99 100%
  ) !important;

  border: 1px solid rgba(255,255,255,.14) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

/* 2) Glow nền: bỏ hoàn toàn glow cam, chỉ giữ navy highlight */
.v-glow-card::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;

  background:
    radial-gradient(900px 260px at 22% 12%, rgba(11,74,153,.35) 0%, rgba(11,74,153,0) 60%),
    radial-gradient(900px 260px at 85% 22%, rgba(0,74,153,.22) 0%, rgba(0,74,153,0) 62%),
    radial-gradient(700px 220px at 50% 110%, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 60%);
  pointer-events:none !important;
}

/* 3) Top accent line: nếu sếp muốn “sạch tuyệt đối” thì tắt luôn
   (Cam vẫn còn ở CTA + badge-dot, không dính nền nữa) */
.v-glow-card::after{
  display:none !important;
}

/* 4) Fix chữ: ép màu sáng để không bị theme đè */
.v-glow-card h3,
.v-glow-card .v-card-title,
.v-glow-card .v-card-title-link{
  color: rgba(255,255,255,.94) !important;
}

.v-glow-card p{
  color: rgba(255,255,255,.78) !important;
}

/* 5) Icon box: sáng hơn để nổi trên nền tối */
.v-glow-card .v-icon-box{
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  color: rgba(255,255,255,.92) !important;
}

/* 6) CTA: cam điểm xuyến (không liên quan nền) */
.v-glow-card .v-link-action{
  color: var(--v-accent) !important;
  opacity: .95;
}

.v-glow-card:hover .v-link-action{
  opacity: 1;
  gap: 10px;
}

/* Ghost button trên nền tối */
.v-glow-card .v-link-action--ghost{
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  color: rgba(255,255,255,.90) !important;
}

.v-glow-card:hover .v-link-action--ghost{
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(255,255,255,.24) !important;
}

/* 7) Hover: nổi hơn nhưng không “gắt” */
.v-glow-card:hover{
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.22) !important;
  box-shadow: 0 18px 48px rgba(0,0,0,.32);
}





/* ==========================================================================
   VLINK ASIA - LIEN HE
   ========================================================================== */


   :root {
    --v-navy: #002d5e;
    --v-orange: #ff6600;
    --v-text-main: #1d1d1f;
    --v-text-sub: #48484a;
    --v-line: #e5e5e7;
  }

  .vlink-contact-footer {
    width: 100%;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    padding: 80px 0 40px;
    border-top: 2px solid var(--v-navy); /* Đường gạch trên cùng đậm hơn để tạo sự vững chãi */
  }

  .vlink-container-fixed {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Tiêu đề cuối trang đậm đà */
  .vlink-contact-head {
    margin-bottom: 50px;
  }

  .vlink-contact-head h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--v-navy);
    letter-spacing: -1.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  .vlink-contact-head p {
    font-size: 15px;
    font-weight: 700;
    color: var(--v-orange);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* Grid 4 cột - Đồng bộ với phần Services bên trên */
  .vlink-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
  }

  .vlink-contact-item {
    border-left: 1px solid var(--v-line); /* Tạo các đường kẻ dọc mỏng sang trọng */
    padding-left: 25px;
  }

  .vlink-contact-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--v-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* Dot cam đồng bộ */
  .vlink-contact-label::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--v-orange);
    border-radius: 50%;
  }

  .vlink-contact-value {
    font-size: 16px;
    line-height: 1.6;
    color: var(--v-text-sub);
  }

  .vlink-contact-value strong {
    font-weight: 900;
    color: var(--v-navy);
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
  }

  .vlink-contact-value a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
  }

  .vlink-contact-value a:hover {
    color: var(--v-orange);
  }

  /* Link Bản đồ */
  .vlink-map-action {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 800;
    color: var(--v-navy);
    text-decoration: none;
    border-bottom: 2px solid var(--v-line);
    padding-bottom: 2px;
  }

  .vlink-map-action:hover {
    border-color: var(--v-orange);
    color: var(--v-orange);
  }

  /* Thanh dưới cùng */
  .vlink-copyright-bar {
    padding-top: 30px;
    border-top: 1px solid var(--v-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #86868b;
  }

  .vlink-social-links {
    display: flex;
    gap: 30px;
  }

  .vlink-social-links a {
    text-decoration: none;
    color: var(--v-navy);
    font-weight: 800;
  }

  .vlink-social-links a:hover {
    color: var(--v-orange);
  }

  /* Responsive cho thiết bị di động */
  @media (max-width: 992px) {
    .vlink-contact-grid { grid-template-columns: repeat(2, 1fr); }
    .vlink-contact-item { border-left: none; border-bottom: 1px solid var(--v-line); padding-left: 0; padding-bottom: 20px; }
  }

  @media (max-width: 600px) {
    .vlink-contact-grid { grid-template-columns: 1fr; }
    .vlink-copyright-bar { flex-direction: column; gap: 20px; text-align: center; }
  }