/*
Theme Name: Dinh Ngoc Theme
Theme URI: https://inandinhngoc.com
Author: Dinh Ngoc
Description: Theme demo In Ấn Đình Ngọc
Version: 1.0
*/

/* =========================
   RESET
========================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222222;
    background: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================
   TOP BAR
========================= */

.topbar {
    width: 100%;
    background: #000000;
    color: #ffffff;
    font-size: 13px;
}

.topbar-inner {
    min-height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar a {
    color: #ffffff;
    text-decoration: none;
}

.topbar a:hover {
    opacity: 0.8;
}


/* =========================
   HEADER
========================= */

.site-header {
    width: 100%;
    background: #ffffff;
}

.header-main {
    min-height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    color: #111111;
    text-decoration: none;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: 0.5px;
}


/* =========================
   SEARCH + CART
========================= */

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-search {
    display: flex;
    width: 280px;
    border: 1px solid #dddddd;
    border-radius: 3px;
    overflow: hidden;
}

.header-search input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 11px 13px;
    font-size: 14px;
}

.header-search button {
    width: 48px;
    border: 0;
    background: #ffffff;
    cursor: pointer;
}

.cart-button {
    position: relative;
    color: #111111;
    text-decoration: none;
    font-size: 22px;
}

.cart-button span {
    position: absolute;
    top: -10px;
    right: -12px;

    width: 19px;
    height: 19px;

    border-radius: 50%;

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

    background: #005be0;
    color: #ffffff;

    font-size: 11px;
}


/* =========================
   MAIN MENU
========================= */

.main-navigation {
    width: 100%;

    background:
        linear-gradient(
            120deg,
            #dff6ff 0%,
            #bfe8ff 25%,
            #eaf9ff 50%,
            #a9ddff 75%,
            #dff6ff 100%
        );

    border-top: 1px solid #c7eaff;
    border-bottom: 1px solid #9fd8ff;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.9),
        inset 0 -1px 0 rgba(255,255,255,0.5),
        0 2px 8px rgba(75,170,230,0.12);
}
.main-menu li {
    position: relative;
    list-style: none;
}

.main-menu a {
    display: block;
    padding: 18px 0;

    color: #111111;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;
}

.main-menu a:hover {
    color: #005be0;
}


/* =========================
   DROPDOWN
========================= */

.main-menu .sub-menu {
    display: none;

    position: absolute;
    top: 100%;
    left: 0;

    min-width: 240px;

    margin: 0;
    padding: 10px 0;

    background: #ffffff;

    box-shadow: 0 6px 20px rgba(0,0,0,0.15);

    z-index: 9999;
}

.main-menu li:hover > .sub-menu {
    display: block;
}

.main-menu .sub-menu a {
    padding: 12px 18px;
    font-size: 13px;
    text-transform: none;
}

.main-menu .sub-menu a:hover {
    background: #f5f5f5;
}


/* =========================
   HOME SLIDER
========================= */

.home-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide {
    display: none;
    width: 100%;
}

.slide.active {
    display: block;
}

.slide img {
    display: block;
    width: 100%;
    height: auto;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 44px;
    height: 44px;

    border: none;
    border-radius: 50%;

    background: rgba(0,0,0,0.45);
    color: #ffffff;

    font-size: 22px;
    cursor: pointer;

    z-index: 10;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;

    transform: translateX(-50%);

    display: flex;
    gap: 8px;
}

.dot {
    display: block;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: rgba(255,255,255,0.6);

    cursor: pointer;
}

.dot.active {
    background: #ffffff;
}

/* DESKTOP: cùng 1 hàng */
.footer-company,
.footer-copyright-text {
    display: inline;
}


/* MOBILE: bản quyền xuống dòng */
@media screen and (max-width: 768px) {

    .site-footer .container {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 auto !important;

        padding-left: 55px !important;
        padding-right: 55px !important;

        text-align: center !important;
    }

    .footer-copyright {
        width: 100% !important;
        text-align: center !important;
        margin: 0 auto !important;
    }

}
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .topbar-right {
        display: none;
    }

    .header-main {
        min-height: 80px;
    }

    .header-search {
        display: none;
    }

    .main-menu > ul {
        gap: 15px;
        flex-wrap: wrap;
    }

    .main-menu a {
        font-size: 12px;
        padding: 14px 0;
    }

}

@media (max-width: 600px) {

    .topbar-left {
        gap: 8px;
        flex-wrap: wrap;
        padding: 8px 0;
    }

    .site-logo a {
        font-size: 20px;
    }

    .slider-prev,
    .slider-next {
        width: 34px;
        height: 34px;
    }

}
/* =========================
   GIỚI HẠN CHIỀU RỘNG TOÀN WEB
========================= */

body {
    background: #ffffff;
}

.site-wrapper {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    background: #ffffff;
    overflow: hidden;
}

/* Giữ banner nằm trong khung */
.home-slider {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

/* Header cũng chỉ nằm trong khung */
.topbar,
.site-header,
.main-navigation,
.site-footer {
    width: 100%;
}

/* màn hình nhỏ vẫn full width */
@media (max-width: 1320px) {
    .site-wrapper {
        max-width: 100%;
    }
}
/* HEADER 3 CỘT */

.header-main {
    min-height: 110px;
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    align-items: center;
    gap: 30px;
}

/* LOGO BÊN TRÁI */

.company-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.company-logo img {
    display: block;
    max-width: 230px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* TÊN CÔNG TY Ở GIỮA */


/* SEARCH BÊN PHẢI */

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

@media (max-width: 900px) {

    .header-main {
        grid-template-columns: 1fr 1fr;
    }

    .company-name {
        display: none;
    }

    .company-logo img {
        max-width: 180px;
    }

}
/* FIX TÊN CÔNG TY GIỮA HEADER */

.header-main .company-name a,
.header-main .company-name a:link,
.header-main .company-name a:visited,
.header-main .company-name a:hover,
.header-main .company-name a:active {
    font-family: "Times New Roman", Times, serif !important;

    font-size: 30px !important;
    font-weight: 800 !important;

    letter-spacing: 1px !important;
    line-height: 1.1 !important;

    color: #0e173f !important;
    text-decoration: none !important;
    text-transform: uppercase !important;

    white-space: nowrap !important;
}
.company-name {
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&display=swap');

.company-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.company-logo a {
    display: flex;
    align-items: center;
    text-decoration: none !important;
}

.company-logo img {
    display: block;
    width: auto;
    height: 150px;
    max-width: 350px;
    object-fit: contain;
}
.company-logo {
    width: 300px;
    height: 130px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.company-logo img {
    width: 280px !important;
    height: 120px !important;
    max-width: none !important;
    object-fit: contain !important;

    transform: scale(1.6);
    transform-origin: left center;
}
/* CANH LẠI LOGO BÊN TRÁI */

.header-main {
    position: relative;
}

.company-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    height: 110px;
    padding-left: 10px;
}

.company-logo a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    width: 100%;
    height: 100%;

    text-decoration: none !important;
}

.company-logo img {
    display: block !important;

    width: 350px !important;
    height: auto !important;

    max-width: none !important;
    max-height: 200px !important;

    object-fit: contain !important;

    transform: none !important;
    transform: translateY(8px) !important;
}

/* TĂNG KÍCH THƯỚC MENU */

.main-menu a {
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px;
}
.main-menu a {
    color: #0b2f4a !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.main-menu a:hover {
    color: #0077cc !important;
}
.main-menu li {
    width: 100%;
}
/* FIX MENU NGANG + NỀN XANH ÓNG ÁNH */

.main-navigation {
    width: 100% !important;

    background: linear-gradient(
        110deg,
        #d8f3ff 0%,
        #eefbff 22%,
        #b9e5ff 45%,
        #f7fdff 58%,
        #a9dcfa 78%,
        #dff6ff 100%
    ) !important;

    border-top: 1px solid #c6eaff !important;
    border-bottom: 1px solid #9ed4ef !important;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.9),
        inset 0 -1px 0 rgba(255,255,255,0.45) !important;
}

/* QUAN TRỌNG: ÉP MENU NẰM NGANG */

.main-navigation .main-menu > ul {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;

    flex-wrap: nowrap !important;

    gap: 38px !important;

    list-style: none !important;

    margin: 0 !important;
    padding: 0 !important;
}

/* KHÔNG CHO LI BỊ FULL WIDTH */

.main-navigation .main-menu > ul > li {
    display: block !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* CHỮ MENU */

.main-navigation .main-menu > ul > li > a {
    display: block !important;

    padding: 20px 0 !important;

    font-size: 16px !important;
    font-weight: 700 !important;

    color: #0b2f4a !important;

    text-decoration: none !important;
    white-space: nowrap !important;
}

.main-navigation .main-menu > ul > li > a:hover {
    color: #0077cc !important;
}
.intro-big-video {
    width: 100%;
    overflow: hidden;
    background: #000;
}

.intro-big-video video {
    display: block;
    width: 100%;
    height: 480px;
    object-fit: cover;
}
/* CĂN GIỮA PHẦN GIỚI THIỆU GIỐNG MẪU QUANG TƯỜNG */

.intro-company-inner {
    max-width: 1140px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.intro-company h2 {
    text-align: center !important;
    margin: 0 0 18px !important;
    margin-top: 38px !important;
}

.intro-description {
    max-width: 900px !important;
    margin: 0 auto !important;

    text-align: center !important;

    font-size: 16px !important;
    line-height: 1.55 !important;
}

/* 3 GIÁ TRỊ NẰM NGANG Ở GIỮA */

.intro-values {
    max-width: 800px !important;
    margin: 35px auto 50px !important;

    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;

    gap: 60px !important;
}

.value-item {
    text-align: center !important;
}

/* VIDEO Ở GIỮA */

.intro-big-video {
    width: 100% !important;

    display: flex !important;
    justify-content: center !important;

    margin: 30px auto 0 !important;
}

.intro-big-video video {
    width: 100% !important;
    max-width: 1140px !important;
    height: auto !important;

    margin: 0 auto !important;
}
.intro-company h2 {
    color: #08a4e6 !important;
    font-size: 30px !important;
    font-weight: 700 !important;
}

.intro-description {
    max-width: 820px !important;
    color: #111111 !important;
}

.intro-values {
    max-width: 800px !important;
    margin: 35px auto 50px !important;

    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;

    gap: 70px !important;
}

.value-item {
    text-align: center !important;
}

.value-icon {
    width: 52px !important;
    height: 52px !important;

    margin: 0 auto 12px !important;

    border-radius: 50% !important;

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

    color: #ffffff !important;

    font-size: 25px !important;

    box-shadow: 0 2px 5px rgba(0,0,0,0.12);
}

.value-blue {
    background: #0aa5df !important;
}

.value-red {
    background: #e96570 !important;
}

.value-yellow {
    background: #e4b847 !important;
}

.value-icon i {
    color: #ffffff !important;
}

.value-item h3 {
    margin: 0 !important;

    color: #00a4e7 !important;

    font-size: 15px !important;
    font-weight: 700 !important;
}
.intro-values {
    max-width: 800px !important;
    margin: 35px auto 50px !important;

    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;

    gap: 70px !important;
}

.value-item {
    text-align: center !important;
}

.value-icon-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}

.value-icon-img img {
    width: 65px;
    height: 65px;
    display: block;
}

.value-item h3 {
    margin: 0 !important;
    color: #00a4e7 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
}
.intro-big-video {
    width: 100% !important;
    max-width: 1140px !important;
    margin: 35px auto 0 !important;

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

    overflow: hidden;
    background: #000;
}

.intro-big-video video {
    display: block !important;
    width: 100% !important;
    height: 520px !important;

    object-fit: cover !important;
    object-position: center !important;

    margin: 0 auto !important;
}

.intro-big-video {
    width: 100% !important;
    max-width: 1140px !important;
    margin: 35px auto 0 !important;
}

.intro-big-video iframe {
    display: block;
    width: 100% !important;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
}
/* =========================================
   FIX RESPONSIVE MOBILE TOÀN WEBSITE
========================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
iframe {
    max-width: 100%;
}

/* KHUNG WEB */
.site-wrapper {
    width: 100% !important;
    max-width: 1320px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
}

.container {
    width: 92% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


/* =====================
   MOBILE
===================== */

@media (max-width: 768px) {

    /* TOP BAR */

    .topbar-inner {
        width: 94% !important;
        min-height: auto !important;
        padding: 8px 0 !important;

        display: block !important;
    }

    .topbar-left {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 6px 12px !important;

        font-size: 11px !important;
        text-align: center !important;
    }

    .topbar-right {
        display: none !important;
    }


    /* HEADER */

    .header-main {
        width: 94% !important;
        min-height: auto !important;

        display: flex !important;
        flex-direction: column !important;

        gap: 12px !important;

        padding: 15px 0 !important;
    }

    .company-logo {
        width: 100% !important;
        height: auto !important;

        justify-content: center !important;

        padding: 0 !important;
    }

    .company-logo img {
        width: auto !important;
        height: 75px !important;

        max-width: 220px !important;
        max-height: 80px !important;

        transform: none !important;
    }


    /* TÊN CÔNG TY */

    .company-name {
        display: flex !important;
        width: 100% !important;
        text-align: center !important;
    }

    .header-main .company-name a {
        font-size: 27px !important;
        line-height: 1.15 !important;

        white-space: normal !important;

        text-align: center !important;
    }


    /* SEARCH */

    .header-right {
        width: 100% !important;

        display: flex !important;
        justify-content: center !important;
    }

    .header-search {
        display: flex !important;

        width: 92% !important;
        max-width: 380px !important;
    }


    /* MENU */

    .main-navigation {
        width: 100% !important;
    }

    .main-navigation .main-menu > ul {
        width: 100% !important;

        display: flex !important;
        flex-wrap: wrap !important;

        justify-content: center !important;

        gap: 0 !important;

        padding: 5px 10px !important;
    }

    .main-navigation .main-menu > ul > li {
        width: auto !important;
    }

    .main-navigation .main-menu > ul > li > a {
        padding: 10px 9px !important;

        font-size: 12px !important;

        white-space: nowrap !important;
    }


    /* SLIDER */

    .home-slider,
    .slide {
        width: 100% !important;

        height: auto !important;
        min-height: 0 !important;
    }

    .slide img {
        width: 100% !important;
        height: auto !important;

        object-fit: contain !important;
    }

    .slider-prev,
    .slider-next {
        width: 34px !important;
        height: 34px !important;

        font-size: 17px !important;
    }


    /* PHẦN GIỚI THIỆU */

    .intro-company {
        padding: 30px 15px 45px !important;
    }

    .intro-company-inner {
        width: 100% !important;
        max-width: 100% !important;
    }

    .intro-company h2 {
        font-size: 24px !important;
        line-height: 1.2 !important;

        margin-top: 25px !important;
    }

    .intro-description {
        width: 100% !important;
        max-width: 100% !important;

        padding: 0 8px !important;

        font-size: 14px !important;
        line-height: 1.6 !important;

        text-align: center !important;
    }


    /* 3 ICON */

    .intro-values {
        width: 100% !important;

        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;

        gap: 10px !important;

        margin: 28px auto 35px !important;
    }

    .value-icon-img img {
        width: 45px !important;
        height: 45px !important;
    }

    .value-item h3 {
        font-size: 12px !important;
    }


    /* YOUTUBE / VIDEO */

    .intro-big-video {
        width: 100% !important;
        max-width: 100% !important;

        margin: 25px auto 0 !important;

        padding: 0 !important;
    }

    .intro-big-video iframe {
        display: block !important;

        width: 100% !important;
        height: auto !important;

        aspect-ratio: 16 / 9 !important;

        border: 0 !important;
    }


    /* FOOTER */

    .site-footer {
        width: 100% !important;
        padding: 25px 15px !important;
    }

}
@media (max-width: 768px) {

    .header-main {
        display: grid !important;
        grid-template-columns: 95px 1fr !important;

        align-items: center !important;

        width: 100% !important;

        padding: 12px 15px !important;
        gap: 8px !important;
    }

    /* LOGO BÊN TRÁI */
    .company-logo {
        grid-column: 1 !important;

        width: 95px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    .company-logo img {
        width: 85px !important;
        max-width: 85px !important;
        height: auto !important;

        margin: 0 !important;
        transform: none !important;
    }

    /* TÊN CÔNG TY CÙNG 1 HÀNG */
    .company-name {
        grid-column: 2 !important;

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

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    .header-main .company-name a {
        font-family: "Times New Roman", Times, serif !important;

        font-size: 15px !important;
        font-weight: 700 !important;

        line-height: 1.05 !important;

        text-align: center !important;
        white-space: nowrap !important;

        color: #0e173f !important;
        text-decoration: none !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    /* SEARCH XUỐNG HÀNG 2 */
    .header-right {
        grid-column: 1 / -1 !important;

        width: 100% !important;

        display: flex !important;
        justify-content: center !important;

        margin-top: 8px !important;
    }

    .header-search {
        width: 92% !important;
        max-width: 380px !important;
    }
}
@media screen and (max-width: 768px) {

    .header-main .company-name a,
    .header-main .company-name a:link,
    .header-main .company-name a:visited,
    .header-main .company-name a:hover,
    .header-main .company-name a:active {
        font-size: 25px !important;
        line-height: 1 !important;
        letter-spacing: 0 !important;
        white-space: nowrap !important;
        text-align: center !important;
        max-width: 100% !important;
    }

}
@media screen and (max-width: 768px) {

    .intro-company h2 {
        font-size: 20px !important;
        line-height: 1.2 !important;
        letter-spacing: 0 !important;
        text-align: center !important;
        white-space: normal !important;
        padding: 0 10px !important;
    }

}
/* =====================================
   RESPONSIVE MENU
===================================== */

/* desktop: ẩn nút mobile */
.mobile-menu-toggle {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: block !important;
        font-size: 34px !important;
        line-height: 1 !important;
    }
}

/* =========================
   MOBILE
========================= */

@media screen and (max-width: 768px) {

    /* HEADER */
    .header-main {
        display: grid !important;
        grid-template-columns: 85px 1fr !important;
        align-items: center !important;
  
        width: 100% !important;

        padding: 10px 12px !important;
        gap: 8px !important;
    }


    /* LOGO TRÁI */
    .company-logo {
        width: 85px !important;
        margin: 0 !important;
        padding: 0 !important;

        display: flex !important;
        justify-content: flex-start !important;
    }

    .company-logo img {
        width: 75px !important;
        max-width: 75px !important;
        height: auto !important;

        margin: 0 !important;
        transform: none !important;
    }


    /* TÊN CÔNG TY */
    .company-name {
        width: 100% !important;

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

        text-align: center !important;
    }

    .header-main .company-name a {
        font-size: 18px !important;
        line-height: 1.1 !important;

        white-space: normal !important;

        text-align: center !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* SEARCH ẨN TRÊN MOBILE */
    .header-right {
        display: none !important;
    }


    /* THANH MENU */
    .main-navigation {
        padding: 0 !important;
    }


    /* NÚT ☰ MENU */
    .mobile-menu-toggle {
        display: block !important;

        width: 100% !important;

        border: 0 !important;

        padding: 13px 15px !important;

        background: transparent !important;

        color: #0b2f4a !important;

        font-size: 15px !important;
        font-weight: 700 !important;

        text-align: left !important;

        cursor: pointer !important;
    }


    /* ẨN MENU */
    .main-menu {
        display: none !important;
        width: 100% !important;
    }


    /* HIỆN MENU KHI CLICK */
    .main-menu.mobile-open {
        display: block !important;
    }


    /* MENU CHUYỂN THÀNH DỌC */
    .main-navigation .main-menu > ul {
        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    .main-navigation .main-menu > ul > li {
        display: block !important;

        width: 100% !important;

        border-top: 1px solid rgba(0,0,0,0.08) !important;
    }

    .main-navigation .main-menu > ul > li > a {
        display: block !important;

        width: 100% !important;

        padding: 13px 15px !important;

        font-size: 14px !important;

        text-align: left !important;

        white-space: normal !important;
    }


    /* MENU CON */
    .main-menu .sub-menu {
        position: static !important;

        display: block !important;

        width: 100% !important;
        min-width: 0 !important;

        box-shadow: none !important;

        background: rgba(255,255,255,0.45) !important;

        padding: 0 !important;
    }

    .main-menu .sub-menu a {
        padding: 11px 30px !important;

        font-size: 13px !important;
    }


    /* BANNER */
    .home-slider,
    .slide {
        height: auto !important;
    }

    .slide img {
        width: 100% !important;
        height: auto !important;

        object-fit: contain !important;
    }


    /* GIỚI THIỆU */
    .intro-company {
        padding: 25px 15px 40px !important;
    }

    .intro-company h2 {
        font-size: 19px !important;
        line-height: 1.2 !important;
    }

    .intro-description {
        width: 100% !important;

        padding: 0 !important;

        font-size: 14px !important;
        line-height: 1.55 !important;

        text-align: center !important;
    }


    /* 3 ICON */
    .intro-values {
        width: 100% !important;

        grid-template-columns: repeat(3, 1fr) !important;

        gap: 8px !important;
    }

    .value-icon-img img {
        width: 45px !important;
        height: 45px !important;
    }

    .value-item h3 {
        font-size: 11px !important;
    }


    /* YOUTUBE */
    .intro-big-video,
    .intro-big-video iframe {
        width: 100% !important;
        max-width: 100% !important;
    }

    .intro-big-video iframe {
        aspect-ratio: 16 / 9 !important;
        height: auto !important;
    }

}
@media screen and (max-width: 768px) {

    .mobile-menu-toggle {
        display: block !important;

        width: 60px !important;
        height: 50px !important;

        font-size: 0 !important;

        padding: 0 !important;
        margin: 0 0 0 auto !important;

        background: transparent !important;
        border: none !important;

        position: relative !important;
    }

    .mobile-menu-toggle::before {
        content: "☰";

        font-size: 42px !important;
        font-weight: 700 !important;
        line-height: 50px !important;

        color: #0b2f4a !important;

        display: block !important;
        text-align: center !important;
    }

}
/* MOBILE BAR */
.mobile-nav-bar {
    display: none;
}

@media screen and (max-width: 768px) {

    .mobile-nav-bar {
        width: 100% !important;
        height: 52px !important;

        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 58px !important;

        align-items: center !important;

        overflow: hidden !important;
    }


    /* =========================
       VÙNG CHỮ CHẠY
    ========================= */

    .mobile-marquee {
        width: 100% !important;
        min-width: 0 !important;
        height: 52px !important;

        display: flex !important;
        align-items: center !important;

        overflow: hidden !important;

        white-space: nowrap !important;

        position: relative !important;
    }

    .mobile-marquee-track {
        display: inline-block !important;

        width: max-content !important;

        padding-left: 100% !important;

        white-space: nowrap !important;

        font-size: 13px !important;
        font-weight: 700 !important;

        color: #0b2f4a !important;

        animation: dinhngoc-marquee 12s linear infinite !important;
    }

    @keyframes dinhngoc-marquee {

        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-100%);
        }
    }


    /* =========================
       NÚT 3 GẠCH CỐ ĐỊNH
    ========================= */

    .mobile-menu-toggle {
        width: 58px !important;
        height: 52px !important;

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

        margin: 0 !important;
        padding: 0 !important;

        border: 0 !important;
        border-left: 1px solid rgba(11, 47, 74, 0.15) !important;

        background: transparent !important;

        color: #0b2f4a !important;

        font-size: 0 !important;

        cursor: pointer !important;

        position: relative !important;
        z-index: 20 !important;
    }

    .mobile-menu-toggle::before {
        content: "☰";

        display: block !important;

        font-size: 36px !important;
        font-weight: 700 !important;

        line-height: 1 !important;

        color: #0b2f4a !important;
    }


    /* MENU XỔ XUỐNG */
    .main-menu {
        display: none !important;
    }

    .main-menu.mobile-open {
        display: block !important;
    }

}
@media screen and (max-width: 768px) {

    .mobile-menu-toggle.is-open::before {
        content: "✕";
        font-size: 30px !important;
    }

}
@media screen and (max-width: 768px) {

    .main-navigation .container {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .mobile-nav-bar {
        margin: 0 !important;
        padding: 0 !important;
        height: 52px !important;
    }

}
/* =========================
   SỐ LIỆU THỐNG KÊ
========================= */

.stats-section {
    background: #0d183f;
    color: #ffffff;

    padding: 38px 40px 55px;

    text-align: center;
}

.stats-title {
    font-size: 24px;
    font-weight: 400;

    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    align-items: center;

    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;

    margin-bottom: 12px;
}

.stat-label {
    font-size: 17px;
}


/* MOBILE */

@media screen and (max-width: 768px) {

    .stats-section {
        padding: 30px 15px 40px;
    }

    .stats-title {
        font-size: 19px;
        margin-bottom: 25px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

}
/* SỐ LIỆU - NỀN XANH LÁ */

.stats-section {
    width: 100% !important;

    background: linear-gradient(
        120deg,
        #006b3c 0%,
        #008f4c 35%,
        #00a85a 55%,
        #007a43 100%
    ) !important;

    color: #ffffff !important;

    padding: 22px 40px 28px !important;
    text-align: center !important;
}

.stats-title {
    color: #ffffff !important;

    font-size: 24px !important;
    font-weight: 500 !important;
    margin-bottom: 20px !important;
    margin: 0 0 32px !important;
}

.stats-grid {
    width: 100% !important;
    max-width: 1100px !important;

    margin: 0 auto !important;

    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;

    gap: 30px !important;
}

.stat-number {
    color: #ffffff !important;

    font-size: 42px !important;
    font-weight: 800 !important;
    line-height: 1 !important;

    margin-bottom: 12px !important;
}

.stat-label {
    color: #ffffff !important;

    font-size: 17px !important;
    font-weight: 400 !important;
}
@media screen and (max-width: 768px) {

    .stats-section {
        padding: 16px 8px 22px !important;
    }

    .stats-title {
        margin-bottom: 16px !important;
    }

    .stat-number {
        font-size: 27px !important;
    }

    .stat-label {
        font-size: 11px !important;
    }
}

/* =====================================
   FIX DỊCH VỤ IN ẤN - 3 CỘT DESKTOP
===================================== */

.services-section {
    width: 100% !important;
    background: #ffffff !important;
    padding: 50px 30px 65px !important;
}

.services-heading {
    width: 100% !important;
    max-width: 900px !important;
    margin: 0 auto 35px !important;
    text-align: center !important;
}

.services-heading h2 {
    margin: 0 0 10px !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    color: #009b55 !important;
}

.services-heading p {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #555555 !important;
}


/* ÉP 6 Ô THÀNH GRID */

.services-grid {
    width: 100% !important;
    max-width: 1140px !important;

    margin: 0 auto !important;

    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;

    gap: 24px !important;

    align-items: stretch !important;
}


/* CARD */

.service-card {
    width: 100% !important;

    display: flex !important;
    flex-direction: column !important;

    background: #ffffff !important;

    border: 1px solid #e7e7e7 !important;
    border-radius: 6px !important;

    overflow: hidden !important;

    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;

    transition: all 0.25s ease !important;
}

.service-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 9px 24px rgba(0,0,0,0.15) !important;
}


/* ẢNH */

.service-image {
    width: 100% !important;
    height: 220px !important;

    display: block !important;

    overflow: hidden !important;

    background: #f3f3f3 !important;
}

.service-image img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;

    margin: 0 !important;
}


/* NỘI DUNG */

.service-content {
    flex: 1 !important;

    display: flex !important;
    flex-direction: column !important;

    padding: 18px !important;
}

.service-content h3 {
    margin: 0 0 10px !important;

    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;

    color: #0e173f !important;
}

.service-content p {
    margin: 0 0 15px !important;

    font-size: 14px !important;
    line-height: 1.6 !important;

    color: #555555 !important;
}

.service-content a {
    display: inline-block !important;

    align-self: flex-start !important;

    margin-top: auto !important;

    padding: 9px 16px !important;

    background: #009b55 !important;
    color: #ffffff !important;

    font-size: 12px !important;
    font-weight: 700 !important;

    text-decoration: none !important;

    border-radius: 3px !important;
}

.service-content a:hover {
    background: #007c44 !important;
}


/* TABLET */

@media screen and (max-width: 900px) {

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

}


/* MOBILE */

@media screen and (max-width: 768px) {

    .services-section {
        padding: 32px 10px 42px !important;
    }

    .services-heading {
        margin-bottom: 22px !important;
    }

    .services-heading h2 {
        font-size: 22px !important;
    }

    .services-heading p {
        font-size: 13px !important;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .service-image {
        height: 130px !important;
    }

    .service-content {
        padding: 11px !important;
    }

    .service-content h3 {
        font-size: 13px !important;
    }

    .service-content p {
        font-size: 11px !important;
    }

    .service-content a {
        font-size: 10px !important;
        padding: 7px 10px !important;
    }

}

.site-footer a,
.site-footer a:link,
.site-footer a:visited,
.site-footer a:hover,
.site-footer a:active {
    color: #ffffff !important;
    text-decoration: none !important;
}


/* =========================
   NÚT TRỞ VỀ ĐẦU TRANG
========================= */

#backToTop {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 48px;
    height: 48px;

    border: none;
    border-radius: 50%;

    background: #0e173f;
    color: #ffffff;

    font-size: 30px;
    font-weight: 700;
    line-height: 1;

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

    cursor: pointer;

    z-index: 99999;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    background: #009b55;
}


/* MOBILE */

@media screen and (max-width: 768px) {

    #backToTop {
        width: 44px;
        height: 44px;

        right: 15px;
        bottom: 20px;

        font-size: 27px;
    }

}

@media screen and (max-width: 768px) {

    .footer-company {
        display: block !important;

        width: 100% !important;

        text-align: center !important;

        margin: 0 auto 5px !important;

        font-size: 13px !important;
        font-weight: 700 !important;
    }

}
@media screen and (max-width: 768px) {

    .site-footer .container {
        width: 100% !important;
        margin: 0 auto !important;
        padding-left: 55px !important;
        padding-right: 55px !important;
    }

}

/* GIỮ NGUYÊN KHUNG XANH FOOTER */
body .site-footer,
.site-wrapper .site-footer,
footer.site-footer {
    background: linear-gradient(
        90deg,
        #58f3a1 0%,
        #00a85a 10%,
        #008f4c 25%,
        #008f4c 75%,
        #00a85a 90%,
        #58f3a1 100%
    ) !important;

    color: #ffffff !important;
}

/* MOBILE */
@media screen and (max-width: 768px) {

    .site-footer {
        width: 100% !important;
        padding: 22px 10px !important;
    }

    .site-footer .container {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 auto !important;
        padding: 0 55px !important;

        text-align: center !important;
    }

    .footer-company {
        display: block !important;

        width: 100% !important;

        margin: 0 auto 5px !important;

        color: #ffffff !important;

        font-size: 13px !important;
        font-weight: 700 !important;

        text-align: center !important;
    }

    .footer-copyright-text {
        display: block !important;

        color: #ffffff !important;

        font-size: 11px !important;
        text-align: center !important;
    }

    .footer-copyright-text a {
        color: #ffffff !important;
    }

}
/* =========================================
   FIX FOOTER + BACK TO TOP
========================================= */

/* FOOTER DESKTOP */
body .site-footer,
.site-wrapper .site-footer,
footer.site-footer {
    width: 100% !important;

    min-height: 120px !important;

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

    background: linear-gradient(
        90deg,
        #55f0a1 0%,
        #00a85a 10%,
        #008f4c 25%,
        #008f4c 75%,
        #00a85a 90%,
        #55f0a1 100%
    ) !important;

    color: #ffffff !important;

    padding: 30px 20px !important;

    margin: 0 !important;

    box-sizing: border-box !important;
}


/* KHUNG BÊN TRONG FOOTER */
.site-footer .container {
    width: 100% !important;
    max-width: 1200px !important;

    margin: 0 auto !important;
    padding: 0 20px !important;

    text-align: center !important;
}


/* CHỮ */
.footer-copyright {
    margin: 0 !important;

    color: #ffffff !important;

    text-align: center !important;

    font-size: 14px !important;
    font-weight: 600 !important;

    line-height: 1.5 !important;
}


.footer-company,
.footer-copyright-text {
    color: #ffffff !important;
}


.site-footer a,
.site-footer a:link,
.site-footer a:visited,
.site-footer a:hover,
.site-footer a:active {
    color: #ffffff !important;
    text-decoration: none !important;
}


/* =========================================
   NÚT LÊN ĐẦU TRANG
========================================= */

#backToTop {
    position: fixed !important;

    right: 25px !important;
    bottom: 25px !important;

    width: 52px !important;
    height: 52px !important;

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

    border: 0 !important;
    border-radius: 50% !important;

    background: #0d183f !important;
    color: #ffffff !important;

    font-size: 30px !important;
    font-weight: 700 !important;

    cursor: pointer !important;

    z-index: 999999 !important;

    opacity: 0;
    visibility: hidden;

    transform: translateY(12px);

    transition: 0.25s ease !important;
}


#backToTop.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}


#backToTop:hover {
    background: #007d45 !important;
}


/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 768px) {

    body .site-footer,
    .site-wrapper .site-footer,
    footer.site-footer {

        min-height: 110px !important;

        padding: 22px 12px !important;

        display: flex !important;
        align-items: center !important;
    }


    .site-footer .container {
        width: 100% !important;

        margin: 0 auto !important;
        padding: 0 55px 0 10px !important;

        text-align: center !important;
    }


    .footer-company {
        display: block !important;

        width: 100% !important;

        margin: 0 auto 5px !important;

        font-size: 13px !important;
        font-weight: 700 !important;

        text-align: center !important;
    }


    .footer-copyright-text {
        display: block !important;

        font-size: 11px !important;
        line-height: 1.4 !important;

        text-align: center !important;
    }


    #backToTop {
        width: 46px !important;
        height: 46px !important;

        right: 12px !important;
        bottom: 18px !important;

        font-size: 27px !important;
    }

}
@media screen and (max-width: 768px) {

    .stat-number {
        display: block !important;
        color: #ffffff !important;
        font-size: 27px !important;
    }

}
/* THANH TRÊN CÙNG - XANH LÁ ÓNG ÁNH NHƯ FOOTER */
.topbar,
.site-topbar,
.header-top,
.top-header {
    background: linear-gradient(
        90deg,
        #55f0a1 0%,
        #00a85a 10%,
        #008f4c 25%,
        #008f4c 75%,
        #00a85a 90%,
        #55f0a1 100%
    ) !important;

    color: #ffffff !important;
}

/* CHỮ VÀ LINK TRONG THANH */
.topbar,
.topbar a,
.site-topbar,
.site-topbar a,
.header-top,
.header-top a,
.top-header,
.top-header a {
    color: #ffffff !important;
    text-decoration: none !important;
}

.topbar-language {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    white-space: nowrap;
}

.topbar-language .lang-link {
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    opacity: 0.75;
}

.topbar-language .lang-link:hover,
.topbar-language .lang-link.active {
    opacity: 1;
}

.topbar-language .lang-link.active {
    text-decoration: underline !important;
}

.lang-divider {
    color: rgba(255,255,255,0.75);
}

@media screen and (max-width: 768px) {

    .topbar-language {
        gap: 5px;
    }

    .topbar-language .lang-link {
        font-size: 11px;
    }

}
@media screen and (max-width: 768px) {

    .main-menu.mobile-open {
        display: block !important;
        width: 100% !important;
        background: #ffffff !important;
        position: relative !important;
        z-index: 9999 !important;
        padding: 8px 0 !important;
    }

    .main-menu.mobile-open ul {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .main-menu.mobile-open ul li {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border-bottom: 1px solid #e5e5e5 !important;
    }

    .main-menu.mobile-open ul li a {
        display: block !important;
        width: 100% !important;
        padding: 13px 18px !important;

        color: #0b2f4a !important;
        background: #ffffff !important;

        font-size: 14px !important;
        font-weight: 600 !important;
        line-height: 1.4 !important;

        text-decoration: none !important;
        text-align: left !important;

        opacity: 1 !important;
        visibility: visible !important;
    }

    .main-menu.mobile-open ul li a:hover {
        background: #f1fff7 !important;
        color: #008f4c !important;
    }

}
/* =========================================
   KHÔI PHỤC MENU DESKTOP
========================================= */

@media screen and (min-width: 769px) {

    .main-navigation {
        display: block !important;
        width: 100% !important;

        background: linear-gradient(
            90deg,
            #d9f7ff 0%,
            #9fe8ff 20%,
            #75d8ff 50%,
            #9fe8ff 80%,
            #d9f7ff 100%
        ) !important;

        border-top: 1px solid #72d5ff !important;
        border-bottom: 1px solid #72d5ff !important;
    }

    .main-navigation .container {
        width: 100% !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    .mobile-nav-bar {
        display: none !important;
    }

    .main-menu {
        display: block !important;
        width: 100% !important;
    }

    .main-menu ul {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        list-style: none !important;
    }

    .main-menu ul li {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .main-menu ul li a {
        display: block !important;

        padding: 14px 18px !important;

        color: #0b2f4a !important;

        font-size: 13px !important;
        font-weight: 700 !important;

        text-decoration: none !important;

        white-space: nowrap !important;
    }

    .main-menu ul li a:hover {
        color: #008f4c !important;
        background: rgba(255,255,255,0.35) !important;
    }

}
@media screen and (min-width: 769px) {

    .main-menu ul li {
        position: relative !important;
    }

    .main-menu ul li .sub-menu {
        display: none !important;

        position: absolute !important;
        top: 100% !important;
        left: 0 !important;

        min-width: 280px !important;
        width: 280px !important;

        margin: 0 !important;
        padding: 0 !important;

        list-style: none !important;

        background: #ffffff !important;
        border: 1px solid #dddddd !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;

        z-index: 9999 !important;
    }

    .main-menu ul li:hover > .sub-menu {
        display: block !important;
    }

    .main-menu ul li .sub-menu li a {
        display: block !important;
        padding: 12px 16px !important;
        color: #0b2f4a !important;
        background: #ffffff !important;
        text-decoration: none !important;
    }
}
@media screen and (max-width: 768px) {

    /* MỤC CHA CÓ MENU CON */
    .main-menu.mobile-open .menu-item-has-children {
        position: relative !important;
    }

    .main-menu.mobile-open .menu-item-has-children > a {
        padding-right: 55px !important;
        position: relative !important;
    }

    /* MŨI TÊN BÊN PHẢI */
    .main-menu.mobile-open .menu-item-has-children > a::after {
        content: "›";
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 34px;
        font-weight: 300;
        color: #8a8a8a;
        line-height: 1;
        transition: transform 0.25s ease;
    }

    /* MENU CON MẶC ĐỊNH ẨN */
    .main-menu.mobile-open .menu-item-has-children > .sub-menu {
        display: none !important;
        position: static !important;

        width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #f7f7f7 !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    /* KHI MỞ */
    .main-menu.mobile-open .menu-item-has-children.submenu-open > .sub-menu {
        display: block !important;
    }

    /* XOAY MŨI TÊN */
    .main-menu.mobile-open .menu-item-has-children.submenu-open > a::after {
        transform: translateY(-50%) rotate(90deg);
    }

    /* CHỮ MENU CON */
    .main-menu.mobile-open .sub-menu li a {
        padding: 12px 25px 12px 32px !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        background: #f7f7f7 !important;
        color: #333333 !important;
    }

}
/* FIX NÚT SLIDER BẤM ĐƯỢC */

.slider,
.hero-slider,
.slider-wrapper {
    position: relative !important;
}

.slider-prev,
.slider-next,
.prev,
.next {
    position: absolute !important;
    z-index: 9999 !important;

    pointer-events: auto !important;
    cursor: pointer !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.slider-next,
.next {
    right: 18px !important;
}

.slider-prev,
.prev {
    left: 18px !important;
}
/* ==================================================
   3 KHUNG NHIỆT TÌNH - TẬN TÂM - UY TÍN
================================================== */

.dinhngoc-values {
    width: 100% !important;
    max-width: 1000px !important;

    margin: 35px auto !important;

    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;

    padding: 0 15px !important;

    box-sizing: border-box !important;
}


/* TỪNG KHUNG */

.dinhngoc-value-card {
    position: relative !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 180px !important;

    padding: 30px 15px 22px !important;

    background: #ffffff !important;

    border: 1px solid #d9d9d9 !important;
    border-top: 5px solid #ef3b3b !important;

    border-radius: 12px !important;

    text-align: center !important;

    box-sizing: border-box !important;

    box-shadow: 0 4px 12px rgba(0,0,0,0.06) !important;

    overflow: hidden !important;

    transition: 0.25s ease !important;
}


/* ICON */

.dinhngoc-value-card img {
    display: block !important;

    width: 85px !important;
    height: 85px !important;

    max-width: 85px !important;

    object-fit: contain !important;

    margin: 0 auto 18px !important;
}


/* CHỮ */

.dinhngoc-value-card h3 {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #0d1840 !important;

    font-size: 18px !important;
    font-weight: 700 !important;

    line-height: 1.3 !important;

    text-align: center !important;
}


/* RÊ CHUỘT */

.dinhngoc-value-card:hover {
    transform: translateY(-5px) !important;

    box-shadow: 0 8px 20px rgba(0,0,0,0.13) !important;
}


/* ==================================================
   MOBILE
================================================== */

@media screen and (max-width: 768px) {

    .dinhngoc-values {
        grid-template-columns: repeat(3, 1fr) !important;

        gap: 8px !important;

        margin: 25px auto !important;

        padding: 0 8px !important;
    }


    .dinhngoc-value-card {
        min-height: 125px !important;

        padding: 18px 5px 14px !important;

        border: 1px solid #d9d9d9 !important;

        /* VIỀN ĐỎ TRÊN MOBILE */
        border-top: 4px solid #ef3b3b !important;

        border-radius: 9px !important;
    }


    .dinhngoc-value-card img {
        width: 45px !important;
        height: 45px !important;

        max-width: 45px !important;

        margin-bottom: 10px !important;
    }


    .dinhngoc-value-card h3 {
        font-size: 11px !important;
        line-height: 1.25 !important;
    }

}
/* ==================================================
   FOOTER ĐÌNH NGỌC - RESET HOÀN TOÀN
================================================== */

.dn-footer,
.dn-footer * {
    box-sizing: border-box !important;
}

.dn-footer {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 45px 45px 0 !important;

    background: linear-gradient(
        90deg,
        #4be59a 0%,
        #00b568 5%,
        #009c55 15%,
        #009c55 85%,
        #00b568 95%,
        #4be59a 100%
    ) !important;

    color: #ffffff !important;

    display: block !important;
    position: relative !important;
}


/* =========================
   3 CỘT
========================= */

.dn-footer-main {
    width: 100% !important;
    max-width: 1100px !important;

    margin: 0 auto !important;

    display: grid !important;

    grid-template-columns:
        220px
        minmax(320px, 1.3fr)
        minmax(280px, 1fr) !important;

    gap: 60px !important;

    align-items: start !important;
}


/* KHÔNG CHO CỘT BỊ BÓP */

.dn-footer-brand,
.dn-footer-contact,
.dn-footer-factory {
    width: auto !important;
    min-width: 0 !important;

    float: none !important;

    margin: 0 !important;
    padding: 0 !important;

    display: block !important;
}


/* =========================
   LOGO
========================= */

.dn-footer-brand {
    text-align: center !important;
}

.dn-footer-logo {
    display: block !important;

    width: 150px !important;
    height: auto !important;

    max-width: 150px !important;

    margin: 0 auto 15px !important;
}

.dn-footer-brand-name {
    width: 100% !important;

    color: #ffffff !important;

    font-size: 18px !important;
    font-weight: 700 !important;

    line-height: 1.4 !important;

    text-align: center !important;

    white-space: nowrap !important;
}


/* =========================
   NỘI DUNG
========================= */

.dn-footer-block {
    width: 100% !important;

    margin: 0 0 28px !important;
    padding: 0 !important;
}

.dn-footer-block h3 {
    width: 100% !important;

    margin: 0 0 10px !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-size: 16px !important;
    font-weight: 700 !important;

    line-height: 1.4 !important;

    word-break: normal !important;
    overflow-wrap: normal !important;
    white-space: normal !important;
}

.dn-footer-block p {
    width: 100% !important;

    margin: 0 0 7px !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-size: 14px !important;
    font-weight: 400 !important;

    line-height: 1.65 !important;

    word-break: normal !important;
    overflow-wrap: break-word !important;
}


/* =========================
   LINK
========================= */

.dn-footer a,
.dn-footer a:link,
.dn-footer a:visited {
    color: #ffffff !important;
    text-decoration: none !important;
}

.dn-footer a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}


/* =========================
   DỊCH VỤ
========================= */

.dn-.dn-footer-services {
    display: none !important;
}

.dn-footer-services a {
    display: inline-block !important;

    width: auto !important;

    color: #ffffff !important;

    font-size: 13px !important;
    font-weight: 500 !important;

    line-height: 1.4 !important;

    white-space: nowrap !important;
}


/* =========================
   COPYRIGHT DƯỚI CÙNG
========================= */

.dn-footer-bottom {
    width: calc(100% + 90px) !important;

    margin: 0 0 0 -45px !important;

    padding: 20px 15px !important;

    display: block !important;
    clear: both !important;

    background: #064f80 !important;

    text-align: center !important;
}

.dn-footer-bottom p {
    width: 100% !important;

    margin: 3px 0 !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-size: 12px !important;
    line-height: 1.5 !important;

    text-align: center !important;

    white-space: normal !important;
}

.dn-footer-bottom strong {
    color: #ffffff !important;
}


/* ==================================================
   TABLET
================================================== */

@media screen and (max-width: 1000px) {

    .dn-footer-main {
        grid-template-columns:
            180px
            minmax(250px, 1fr)
            minmax(220px, 1fr) !important;

        gap: 30px !important;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media screen and (max-width: 768px) {

    .dn-footer {
        padding: 28px 18px 0 !important;
    }


    .dn-footer-main {
        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 20px !important;

        width: 100% !important;

        text-align: center !important;
    }


    .dn-footer-brand,
    .dn-footer-contact,
    .dn-footer-factory {
        width: 100% !important;

        text-align: center !important;
    }


    .dn-footer-logo {
        width: 120px !important;
        max-width: 120px !important;

        margin: 0 auto 10px !important;
    }


    .dn-footer-brand-name {
        font-size: 16px !important;

        white-space: normal !important;
    }


    .dn-footer-block {
        margin-bottom: 18px !important;
    }


    .dn-footer-block h3 {
        font-size: 14px !important;

        text-align: center !important;
    }


    .dn-footer-block p {
        font-size: 12px !important;
        line-height: 1.55 !important;

        text-align: center !important;
    }


    .dn-footer-services {
        width: 100% !important;

        margin: 5px auto 20px !important;

        padding-top: 15px !important;

        gap: 8px 14px !important;
    }


    .dn-footer-services a {
        font-size: 11px !important;

        white-space: normal !important;
    }


    .dn-footer-bottom {
        width: calc(100% + 36px) !important;

        margin-left: -18px !important;

        padding: 16px 10px !important;

        background: #064f80 !important;
    }


    .dn-footer-bottom p {
        font-size: 10px !important;
    }

}


/* ==================================================
   BACK TO TOP
================================================== */

#backToTop {
    position: fixed !important;

    right: 22px !important;
    bottom: 22px !important;

    width: 50px !important;
    height: 50px !important;

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

    border: none !important;
    border-radius: 50% !important;

    background: #0b1845 !important;
    color: #ffffff !important;

    font-size: 28px !important;
    font-weight: 700 !important;

    line-height: 1 !important;

    cursor: pointer !important;

    z-index: 999999 !important;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    box-shadow: 0 5px 15px rgba(0,0,0,0.22);

    transition: 0.25s ease !important;
}

#backToTop.show {
    opacity: 1 !important;
    visibility: visible !important;

    transform: translateY(0) !important;
}

#backToTop:hover {
    background: #007c45 !important;
}


@media screen and (max-width: 768px) {

    #backToTop {
        width: 44px !important;
        height: 44px !important;

        right: 12px !important;
        bottom: 15px !important;

        font-size: 25px !important;
    }

}
/* ==================================================
   FOOTER MOBILE - BẢN GỌN HƠN
================================================== */

@media screen and (max-width: 768px) {

    .dn-footer {
        padding: 20px 14px 0 !important;
    }

    .dn-footer-main {
        display: grid !important;
        grid-template-columns: 1fr !important;

        gap: 10px !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 auto !important;

        text-align: center !important;
    }


    /* LOGO NHỎ LẠI */

    .dn-footer-logo {
        width: 95px !important;
        max-width: 95px !important;

        margin: 0 auto 8px !important;
    }


    /* BỎ KHOẢNG TRỐNG LỚN */

    .dn-footer-block {
        margin: 0 0 12px !important;
        padding: 0 !important;
    }


    .dn-footer-block h3 {
        margin: 0 0 5px !important;

        font-size: 14px !important;
        line-height: 1.25 !important;

        text-align: center !important;
    }


    .dn-footer-block p {
        margin: 0 0 3px !important;

        font-size: 11px !important;
        line-height: 1.4 !important;

        text-align: center !important;
    }


    /* CÔNG TY */

    .dn-footer-contact {
        margin: 0 !important;
        padding: 0 !important;
    }


    /* XƯỞNG + GIỜ LÀM */

    .dn-footer-factory {
        margin: 0 !important;
        padding: 0 !important;
    }


    /* NẾU ĐÃ BỎ DÒNG DỊCH VỤ */

    .dn-footer-services {
        display: none !important;
    }


    /* COPYRIGHT GỌN HƠN */

    .dn-footer-bottom {
        width: calc(100% + 28px) !important;

        margin-left: -14px !important;
        margin-top: 8px !important;

        padding: 12px 52px 12px 10px !important;

        background: #064f80 !important;
    }


    .dn-footer-bottom p {
        margin: 2px 0 !important;

        font-size: 9px !important;
        line-height: 1.35 !important;

        text-align: center !important;
    }


    /* NÚT TOP NHỎ HƠN */

    #backToTop {
        width: 42px !important;
        height: 42px !important;

        right: 10px !important;
        bottom: 12px !important;

        font-size: 24px !important;
    }

}
/* =========================================
   BÁO GIÁ IN ẤN
========================================= */

.pricing-section {
    width: 100%;
    padding: 50px 20px;
    background: #f7f9fb;
    box-sizing: border-box;
}

.pricing-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.pricing-heading {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-heading span {
    display: inline-block;
    margin-bottom: 5px;

    color: #009b55;
    font-size: 13px;
    font-weight: 700;
}

.pricing-heading h2 {
    margin: 0 0 10px;

    font-family: "Times New Roman", Times, serif;
    color: #009b55;

    font-size: 28px;
    font-weight: 700;
}
.pricing-heading p {
    max-width: 650px;
    margin: 0 auto;

    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}


/* DESKTOP: 3 CỘT */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* CARD */

.pricing-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 310px;

    padding: 27px 22px;

    background: #ffffff;

    border: 1px solid #dddddd;
    border-top: 5px solid #009b55;

    border-radius: 10px;

    box-shadow: 0 4px 14px rgba(0,0,0,0.06);

    box-sizing: border-box;

    transition: 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.11);
}

.pricing-card h3 {
    min-height: 44px;

    margin: 0 0 13px;
    font-family: "Times New Roman", Times, serif;
    color: #0d1840;

    font-size: 17px;
    font-weight: 800;

    line-height: 1.3;

    text-align: center;
}

.pricing-price {
    margin-bottom: 15px;
    font-family: "Times New Roman", Times, serif;
    color: #009b55;

    font-size: 18px;
    font-weight: 800;

    text-align: center;
}

.pricing-card ul {
    flex: 1;

    margin: 0 0 20px;
    padding: 0;

    list-style: none;
}

.pricing-card ul li {
    position: relative;

    padding: 7px 0 7px 20px;

    border-bottom: 1px solid #eeeeee;

    color: #555555;

    font-size: 13px;
    line-height: 1.4;
}

.pricing-card ul li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #009b55;
    font-weight: 700;
}

.pricing-btn {
    display: block;

    width: fit-content;

    margin: auto auto 0;

    padding: 10px 16px;

    background: #009b55;
    color: #ffffff !important;

    border-radius: 4px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none !important;
}

.pricing-btn:hover {
    background: #007f46;
}


/* =========================================
   MOBILE: 2 CỘT
========================================= */

@media screen and (max-width: 768px) {

    .pricing-section {
        padding: 32px 8px;
    }

    .pricing-heading {
        margin-bottom: 22px;
    }

    .pricing-heading h2 {
        font-size: 21px;
    }

    .pricing-heading p {
        padding: 0 8px;

        font-size: 11px;
    }


    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

        gap: 8px !important;
    }


    .pricing-card {
        min-height: 250px;

        padding: 18px 9px 14px;

        border-top-width: 4px;

        border-radius: 7px;
    }


    .pricing-card h3 {
        min-height: 34px;

        margin-bottom: 8px;

        font-size: 12px;
        line-height: 1.25;
    }


    .pricing-price {
        margin-bottom: 10px;

        font-size: 12px;
    }


    .pricing-card ul {
        margin-bottom: 12px;
    }


    .pricing-card ul li {
        padding: 5px 0 5px 14px;

        font-size: 9px;
        line-height: 1.35;
    }


    .pricing-btn {
        width: 100%;

        padding: 9px 4px;

        font-size: 9px;

        text-align: center;

        box-sizing: border-box;
    }

}
/* MENU CON CÙNG MÀU ÓNG ÁNH VỚI MENU NGANG */

@media screen and (min-width: 769px) {

    .main-menu ul li .sub-menu {
        background: linear-gradient(
            90deg,
            #d9f7ff 0%,
            #9fe8ff 20%,
            #75d8ff 50%,
            #9fe8ff 80%,
            #d9f7ff 100%
        ) !important;

        border: 1px solid #72d5ff !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.15) !important;

        padding: 0 !important;
        overflow: hidden !important;
    }


    .main-menu ul li .sub-menu li {
        width: 100% !important;

        border-bottom: 1px solid rgba(11,47,74,0.12) !important;
    }


    .main-menu ul li .sub-menu li:last-child {
        border-bottom: none !important;
    }


    .main-menu ul li .sub-menu li a {
        display: block !important;

        width: 100% !important;

        padding: 12px 16px !important;

        background: transparent !important;

        color: #0b2f4a !important;

        font-size: 13px !important;
        font-weight: 700 !important;

        text-decoration: none !important;
    }


    /* RÊ CHUỘT VÀO TỪNG DANH MỤC */

    .main-menu ul li .sub-menu li a:hover {
        background: rgba(255,255,255,0.45) !important;

        color: #007d45 !important;
    }

}
/* =========================================
   MENU CON MOBILE - XANH ÓNG ÁNH
========================================= */

@media screen and (max-width: 768px) {

    .main-menu.mobile-open .menu-item-has-children > .sub-menu {
        background: linear-gradient(
            90deg,
            #d9f7ff 0%,
            #9fe8ff 20%,
            #75d8ff 50%,
            #9fe8ff 80%,
            #d9f7ff 100%
        ) !important;

        border: 0 !important;
        box-shadow: none !important;
    }

    .main-menu.mobile-open .sub-menu li {
        border-bottom: 1px solid rgba(11,47,74,0.12) !important;
    }

    .main-menu.mobile-open .sub-menu li:last-child {
        border-bottom: none !important;
    }

    .main-menu.mobile-open .sub-menu li a {
        background: transparent !important;

        color: #0b2f4a !important;

        font-size: 12px !important;
        font-weight: 600 !important;

        padding: 12px 18px 12px 30px !important;

        text-align: left !important;
    }

    .main-menu.mobile-open .sub-menu li a:hover {
        background: rgba(255,255,255,0.4) !important;
        color: #007d45 !important;
    }

}
/* FULL WIDTH TOÀN BỘ WEBSITE TRÊN PC */
html,
body,
#page,
.site,
.site-wrapper,
.wrapper,
.main-wrapper,
.site-content,
#content,
.content-area,
.container,
.container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Ép các section chạy hết chiều ngang */
section,
.site-main,
main,
header,
.site-header,
footer,
.site-footer {
    width: 100% !important;
    max-width: 100% !important;
}

/* Bỏ giới hạn bootstrap container trên PC */
@media (min-width: 992px) {
    .container {
        width: 100% !important;
        max-width: none !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

/* Nếu theme có khung boxed */
.boxed-layout,
.site-boxed,
.box-layout,
#page.boxed {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

/* Hero/banner bung hết màn hình */
.banner,
.slider,
.main-slider,
.hero,
.hero-section,
.banner-section {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

/* ==================================================
   KHÁCH HÀNG & ĐỐI TÁC
================================================== */

.partner-section {
    width: 100%;
    padding: 32px 0 36px;
    background: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}


/* TIÊU ĐỀ */

.partner-section h2 {
    margin: 0 0 24px;

    text-align: center;

    font-family: "Times New Roman", Times, serif;

    color: #0b2f9f;

    font-size: 28px;
    font-weight: 700;
}


/* KHUNG NGOÀI */

.partner-wrap {
    position: relative;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 0 55px;

    box-sizing: border-box;
}


/* VÙNG NHÌN LOGO */

.partner-slider {
    width: 100%;

    overflow: hidden;

    position: relative;
}


/* DÒNG LOGO CHẠY */

.partner-track {
    display: flex;
    align-items: center;

    width: max-content;

    gap: 65px;

    animation: partner-scroll 28s linear infinite;
}


/* LOGO */

.partner-track img {
    display: block;

    width: 155px;
    height: 80px;

    flex-shrink: 0;

    object-fit: contain;
}


/* RÊ CHUỘT THÌ DỪNG */

.partner-slider:hover .partner-track {
    animation-play-state: paused;
}


/* CHẠY TỰ ĐỘNG */

@keyframes partner-scroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}


/* ==================================================
   NÚT TRÁI / PHẢI
================================================== */

.partner-btn {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    padding: 0;
    margin: 0;

    border: 1px solid #dddddd;
    border-radius: 50%;

    background: #ffffff;
    color: #444444;

    font-size: 31px;
    font-weight: 400;
    line-height: 1;

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

    cursor: pointer;

    z-index: 50;

    box-shadow: 0 3px 10px rgba(0,0,0,0.16);

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


/* NÚT TRÁI */

.partner-prev {
    left: 5px;
}


/* NÚT PHẢI */

.partner-next {
    right: 5px;
}


/* HOVER */

.partner-btn:hover {
    background: #009b55;
    color: #ffffff;

    transform: translateY(-50%) scale(1.06);
}


/* ==================================================
   TABLET
================================================== */

@media screen and (max-width: 900px) {

    .partner-wrap {
        padding: 0 48px;
    }

    .partner-track {
        gap: 45px;
    }

    .partner-track img {
        width: 125px;
        height: 68px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media screen and (max-width: 768px) {

    .partner-section {
        padding: 25px 0 28px;
    }


    .partner-section h2 {
        margin-bottom: 18px;

        font-size: 21px;
    }


    .partner-wrap {
        padding: 0 42px;
    }


    .partner-track {
        gap: 28px;

        animation-duration: 22s;
    }


    .partner-track img {
        width: 95px;
        height: 55px;
    }


    .partner-btn {
        width: 34px;
        height: 34px;

        font-size: 26px;
    }


    .partner-prev {
        left: 3px;
    }


    .partner-next {
        right: 3px;
    }

}
/* =========================================
   MŨI TÊN MENU CON - FIX KHÔNG ĐÈ CHỮ
========================================= */

/* PC */
@media screen and (min-width: 769px) {

    .main-menu .menu-item-has-children > a {
        display: inline-flex !important;
        align-items: center !important;
        gap: 7px !important;

        padding-right: 18px !important;
    }

    .main-menu .menu-item-has-children > a::after {
        content: "▼" !important;

        position: static !important;

        display: inline-block !important;

        width: auto !important;
        height: auto !important;

        margin: 0 !important;

        color: #0b2f4a !important;

        font-size: 9px !important;
        line-height: 1 !important;

        border: 0 !important;

        transform: none !important;
    }

}


/* MOBILE */
@media screen and (max-width: 768px) {

    .main-menu.mobile-open .menu-item-has-children > a {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        width: 100% !important;

        padding-right: 18px !important;
    }

    .main-menu.mobile-open .menu-item-has-children > a::after {
        content: "›" !important;

        position: static !important;

        display: inline-block !important;

        width: auto !important;
        height: auto !important;

        margin-left: 10px !important;

        color: #0b2f4a !important;

        font-size: 28px !important;
        line-height: 1 !important;

        border: 0 !important;

        transform: none !important;
    }

    .main-menu.mobile-open
    .menu-item-has-children.submenu-open > a::after {
        transform: rotate(90deg) !important;
    }

}
/* TRANG NỘI DUNG */

.dn-page {
    width: 100%;
    padding: 45px 20px;
    background: #ffffff;
    box-sizing: border-box;
}

.dn-page-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.dn-page-title {
    margin: 0 0 25px;

    font-family: "Times New Roman", Times, serif;
    font-size: 32px;
    font-weight: 700;

    color: #009b55;

    text-align: center;
}

.dn-page-body {
    color: #333333;

    font-size: 15px;
    line-height: 1.8;
}

.dn-page-body img {
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {

    .dn-page {
        padding: 30px 14px;
    }

    .dn-page-title {
        font-size: 24px;
    }

    .dn-page-body {
        font-size: 14px;
        line-height: 1.7;
    }
}
/* ==================================================
   TRANG CON - PAGE.PHP
   CĂN GIỮA PC + MOBILE
================================================== */

.dn-page {
    width: 100% !important;

    padding: 45px 20px !important;

    background: #ffffff !important;

    box-sizing: border-box !important;
}


/* KHUNG NỘI DUNG Ở GIỮA */

.dn-page-container {
    width: 100% !important;
    max-width: 900px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    padding-left: 20px !important;
    padding-right: 20px !important;

    box-sizing: border-box !important;
}


/* TIÊU ĐỀ */

.dn-page-title {
    width: 100% !important;

    margin: 0 0 25px !important;

    font-family: "Times New Roman", Times, serif !important;

    font-size: 32px !important;
    font-weight: 700 !important;

    color: #009b55 !important;

    line-height: 1.3 !important;

    text-align: center !important;
}


/* NỘI DUNG BÀI */

.dn-page-body {
    width: 100% !important;

    margin: 0 auto !important;

    color: #333333 !important;

    font-size: 15px !important;
    line-height: 1.8 !important;

    text-align: left !important;

    box-sizing: border-box !important;
}


/* TIÊU ĐỀ TRONG BÀI */

.dn-page-body h2,
.dn-page-body h3,
.dn-page-body h4 {
    font-family: "Times New Roman", Times, serif !important;

    color: #0d1840 !important;

    line-height: 1.35 !important;
}


/* HÌNH ẢNH */

.dn-page-body img {
    display: block !important;

    max-width: 100% !important;
    height: auto !important;

    margin-left: auto !important;
    margin-right: auto !important;
}


/* ĐOẠN VĂN */

.dn-page-body p {
    margin: 0 0 16px !important;
}


/* DANH SÁCH */

.dn-page-body ul,
.dn-page-body ol {
    margin: 0 0 18px 22px !important;

    padding: 0 !important;
}

.dn-page-body li {
    margin-bottom: 7px !important;
}


/* LINK */

.dn-page-body a {
    color: #009b55 !important;

    text-decoration: none !important;
}

.dn-page-body a:hover {
    text-decoration: underline !important;
}


/* ==================================================
   MOBILE
================================================== */

@media screen and (max-width: 768px) {

    .dn-page {
        padding: 28px 10px !important;
    }


    .dn-page-container {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 auto !important;

        padding-left: 12px !important;
        padding-right: 12px !important;
    }


    .dn-page-title {
        margin-bottom: 18px !important;

        font-size: 24px !important;
        line-height: 1.3 !important;

        text-align: center !important;
    }


    .dn-page-body {
        width: 100% !important;

        margin: 0 auto !important;

        font-size: 14px !important;
        line-height: 1.7 !important;

        text-align: left !important;
    }


    .dn-page-body h2 {
        font-size: 21px !important;
    }


    .dn-page-body h3 {
        font-size: 18px !important;
    }


    .dn-page-body p {
        margin-bottom: 13px !important;
    }


    .dn-page-body img {
        width: auto !important;
        max-width: 100% !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }

}
/* TAG SEO CUỐI TRANG */

.dn-page-tags {
    width: 100%;
    margin-top: 30px;
    padding-top: 18px;

    border-top: 1px solid #eeeeee;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 6px;
}

.dn-page-tags strong {
    margin-right: 5px;

    color: #333333;
    font-size: 13px;
}
/* TAG DẠNG Ô RIÊNG */

.dn-page-tags {
    margin-top: 28px;
    padding-top: 15px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 6px;

    border-top: 1px solid #eeeeee;
}

.dn-page-tags strong {
    margin-right: 4px;

    color: #222222;
    font-size: 13px;
    font-weight: 700;
}

.dn-page-tags a {
    display: inline-block !important;

    padding: 6px 10px !important;

    background: #f1f1f1 !important;

    color: #666666 !important;

    border: 1px solid #eeeeee !important;

    font-size: 12px !important;
    line-height: 1.2 !important;

    text-decoration: none !important;

    transition: all 0.2s ease !important;
}

/* RÊ CHUỘT VÀO TỪNG TAG */
.dn-page-tags a:hover {
    background: #0073aa !important;
    border-color: #0073aa !important;

    color: #ffffff !important;
}

.dn-page-tags a {
    display: inline-block;

    padding: 6px 10px;

    background: #f5f5f5;

    border: 1px solid #eeeeee;

    color: #666666 !important;

    font-size: 12px;

    text-decoration: none !important;
}

.dn-page-tags a:hover {
    background: #009b55;
    color: #ffffff !important;
}


/* MOBILE */

@media screen and (max-width: 768px) {

    .dn-page-tags {
        margin-top: 22px;
        gap: 5px;
    }

    .dn-page-tags a {
        padding: 5px 8px;
        font-size: 10px;
    }

}
/* BREADCRUMB ĐÌNH NGỌC */
.dn-breadcrumb {
    width: 100%;
    background: #ffffff;
    border-top: 3px solid #6cb3dc;
    border-bottom: 1px solid #eeeeee;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.dn-breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 44px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
}

.dn-breadcrumb a {
    color: #222222;
    text-decoration: none;
    transition: 0.2s;
}

.dn-breadcrumb a:hover {
    color: #009846;
}

.dn-breadcrumb-separator {
    margin: 0 8px;
    color: #aaaaaa;
}

.dn-breadcrumb-current {
    color: #999999;
}

/* MOBILE */
@media (max-width: 768px) {

    .dn-breadcrumb-inner {
        min-height: 40px;
        padding: 0 15px;
        font-size: 12px;
    }

    .dn-breadcrumb-separator {
        margin: 0 5px;
    }
}
.dn-category-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.dn-category-container > h1 {
    font-size: 36px;
    margin-bottom: 35px;
    color: #07133f;
}

.dn-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 38px;
}

.dn-service-card {
    background: #fff;
}

.dn-service-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.dn-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.dn-service-card:hover .dn-service-image img {
    transform: scale(1.04);
}

.dn-service-content {
    padding-top: 16px;
}

.dn-service-content h2 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.35;
}

.dn-service-content h2 a {
    color: #07133f;
    text-decoration: none;
}

.dn-service-content h2 a:hover {
    color: #009846;
}

.dn-service-content p {
    font-size: 15px;
    line-height: 1.65;
    color: #555;
}

.dn-detail-button {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 17px;
    background: #009846;
    color: #fff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .dn-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .dn-service-grid {
        grid-template-columns: 1fr;
    }
}


/* ==================================================
   MẪU IN ẤN
================================================== */

.dn-sample-section {
    background: #ffffff;
    padding: 35px 0 45px;
}

.dn-sample-wrap {
    width: 1200px;
    max-width: calc(100% - 30px);
    margin: 0 auto;
    box-sizing: border-box;
}


/* TIÊU ĐỀ CHÍNH */

.dn-sample-heading {
    text-align: center;
    margin-bottom: 30px;
}

.dn-sample-heading h2 {
    margin: 0 0 8px;
    color: #009846;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 700;
    text-transform: uppercase;
}

.dn-sample-heading p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}


/* MỖI DỊCH VỤ */

.dn-sample-group {
    margin-bottom: 32px;
}


/* TÊN DỊCH VỤ */

.dn-sample-title {
    margin-bottom: 10px;
}

.dn-sample-title a {
    display: inline-block;
    padding-left: 10px;

    border-left: 4px solid #009846;

    color: #07133f;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;

    text-decoration: none;
    text-transform: uppercase;

    transition: color 0.2s ease;
}

.dn-sample-title a:hover {
    color: #009846;
}


/* 3 ẢNH / 1 HÀNG */

.dn-sample-row {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;

    width: 100%;
}


/* CARD */

.dn-sample-item {
    display: block;

    min-width: 0;

    overflow: hidden;

    border: 1px solid #d7dfe5;

    background: #ffffff;

    text-decoration: none;

    box-sizing: border-box;

    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}


/* KHUNG ẢNH */

.dn-sample-image {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #eeeeee;
}


/* ẢNH */

.dn-sample-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}


/* DÒNG CHỮ DƯỚI ẢNH */

.dn-sample-name {
    min-height: 42px;

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

    padding: 8px 6px;

    box-sizing: border-box;

    text-align: center;

    color: #164782;

    background: #edf6ff;

    border-top: 1px solid #d7e4ee;

    font-size: 14px;
    line-height: 1.35;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}


/* VỆT SÁNG */

.dn-sample-image::after {
    content: "";

    position: absolute;

    top: -100%;
    left: -80%;

    width: 32%;
    height: 300%;

    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.2) 30%,
        rgba(255,255,255,0.9) 50%,
        rgba(255,255,255,0.2) 70%,
        rgba(255,255,255,0) 100%
    );

    transform: rotate(25deg);

    transition: left 0.75s ease;

    pointer-events: none;
}


/* HOVER CHỈ PC */

@media (hover: hover) and (pointer: fine) {

    .dn-sample-item:hover {
        transform: translateY(-3px);

        box-shadow:
            0 7px 18px rgba(0, 0, 0, 0.12);
    }

    .dn-sample-item:hover
    .dn-sample-image img {

        transform: scale(1.08);

        filter: brightness(1.04);
    }

    .dn-sample-item:hover
    .dn-sample-image::after {

        left: 140%;
    }

    .dn-sample-item:hover
    .dn-sample-name {

        color: #009846;

        background: #f1fff5;
    }
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .dn-sample-wrap {
        max-width: calc(100% - 20px);
    }

    .dn-sample-row {
        gap: 10px;
    }

    .dn-sample-title a {
        font-size: 16px;
    }
}


/* ==================================================
   MOBILE
   MỖI DỊCH VỤ LUÔN 3 ẢNH / 1 HÀNG
================================================== */

@media (max-width: 600px) {

    .dn-sample-section {
        padding: 24px 0 32px;
    }

    .dn-sample-wrap {
        width: 100%;
        max-width: 100%;

        padding: 0 6px;

        box-sizing: border-box;
    }


    /* TIÊU ĐỀ */

    .dn-sample-heading {
        margin-bottom: 20px;

        padding: 0 5px;
    }

    .dn-sample-heading h2 {
        margin-bottom: 6px;

        font-size: 21px;

        line-height: 1.2;
    }

    .dn-sample-heading p {
        font-size: 12px;

        line-height: 1.45;
    }


    /* NHÓM */

    .dn-sample-group {
        margin-bottom: 20px;
    }


    /* TÊN DỊCH VỤ */

    .dn-sample-title {
        margin-bottom: 7px;
    }

    .dn-sample-title a {
        padding-left: 7px;

        border-left-width: 3px;

        font-size: 13px;

        line-height: 1.25;
    }


    /* QUAN TRỌNG:
       3 ẢNH / 1 HÀNG */

    .dn-sample-row {
        display: grid;

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 5px;

        width: 100%;
    }


    /* CARD */

    .dn-sample-item {
        width: 100%;

        min-width: 0;

        margin: 0;

        border-radius: 2px;
    }


    /* ẢNH VUÔNG TRÊN MOBILE */

    .dn-sample-image {
        width: 100%;

        aspect-ratio: 1 / 1;
    }

    .dn-sample-image img {
        width: 100%;
        height: 100%;

        object-fit: cover;

        transform: none !important;
    }


    /* DÒNG CHỮ BÊN DƯỚI */

    .dn-sample-name {
        min-height: 35px;

        padding: 5px 2px;

        font-size: 9.5px;

        line-height: 1.2;

        text-align: center;

        word-break: normal;
    }


    /* TẮT VỆT SÁNG TRÊN ĐIỆN THOẠI */

    .dn-sample-image::after {
        display: none;
    }

}

/* MENU + SEARCH CÙNG HÀNG */
.menu-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;

    display: flex;
    align-items: center;
    position: relative;
}

/* MENU CHIẾM PHẦN GIỮA */
.main-menu {
    flex: 1;
}

/* SEARCH BÊN PHẢI */
.menu-search {
    width: 205px;
    margin-left: 20px;
    flex-shrink: 0;
}

.menu-search .header-search {
    position: relative;
    width: 100%;
    margin: 0;
}

.menu-search .header-search input[type="search"] {
    width: 100%;
    height: 34px;

    padding: 0 38px 0 12px;

    border: 1px solid #cfcfcf;
    border-radius: 3px;

    background: #fff;

    font-size: 13px;
    box-sizing: border-box;
}

.menu-search .header-search button {
    position: absolute;
    top: 0;
    right: 0;

    width: 36px;
    height: 34px;

    padding: 0;

    border: 0;
    background: transparent;

    cursor: pointer;
}

/* MOBILE: ẨN SEARCH TRÊN THANH MENU */
@media (max-width: 770px) {
    .menu-search {
        display: none;
    }
}
/* ẨN SEARCH TRÊN MOBILE */
@media (max-width: 768px) {

    .menu-search {
        display: none !important;
    }

    .header-right {
        display: none !important;
    }

    .header-search {
        display: none !important;
    }
}

/* ==================================================
   MỘT SỐ HOẠT ĐỘNG CỦA ĐÌNH NGỌC
================================================== */

.dn-activities-section {
    width: 100%;
    padding: 40px 0 50px;
    background: #ffffff;
}

.dn-activities-wrap {
    width: 1200px;
    max-width: calc(100% - 30px);
    margin: 0 auto;
    box-sizing: border-box;
}


/* TIÊU ĐỀ CHÍNH */

.dn-activities-heading {
    text-align: center;
    margin-bottom: 32px;
}

.dn-activities-heading h2 {
    margin: 0 0 8px;
    color: #009846;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
}

.dn-activities-heading p {
    margin: 0;
    color: #555555;
    font-size: 14px;
    line-height: 1.6;
}


/* MỖI NHÓM HOẠT ĐỘNG */

.dn-activity-group {
    width: 100%;
    margin-bottom: 36px;
}


/* TIÊU ĐỀ CON + VẠCH XANH */

.dn-activity-title {
    display: block !important;

    margin: 0 0 12px 0 !important;

    padding:
        3px
        0
        3px
        10px !important;

    border-left:
        4px
        solid
        #009846 !important;

    color: #07133f !important;

    font-size: 18px !important;

    line-height: 1.35 !important;

    font-weight: 700 !important;

    text-transform: uppercase;

    box-sizing: border-box;
}


/* 3 ẢNH / 1 HÀNG */

.dn-activities-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;

    width: 100%;
}


/* KHUNG ẢNH */

.dn-activity-item {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #eeeeee;

    border: 1px solid #dddddd;

    box-sizing: border-box;
}


/* ẢNH */

.dn-activity-item img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}


/* VỆT SÁNG */

.dn-activity-item::after {
    content: "";

    position: absolute;

    top: -100%;

    left: -80%;

    width: 32%;

    height: 300%;

    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,.20) 30%,
        rgba(255,255,255,.90) 50%,
        rgba(255,255,255,.20) 70%,
        rgba(255,255,255,0) 100%
    );

    transform: rotate(25deg);

    transition: left .75s ease;

    pointer-events: none;
}


/* HOVER TRÊN PC */

@media (hover: hover) and (pointer: fine) {

    .dn-activity-item:hover img {
        transform: scale(1.08);
        filter: brightness(1.04);
    }

    .dn-activity-item:hover::after {
        left: 140%;
    }

}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .dn-activities-wrap {
        max-width: calc(100% - 20px);
    }

    .dn-activities-grid {
        gap: 10px;
    }

    .dn-activity-title {
        font-size: 15px !important;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .dn-activities-section {
        padding: 26px 0 34px;
    }

    .dn-activities-wrap {
        width: 100%;
        max-width: 100%;
        padding: 0 6px;
        box-sizing: border-box;
    }


    /* TIÊU ĐỀ CHÍNH */

    .dn-activities-heading {
        margin-bottom: 22px;
        padding: 0 6px;
    }

    .dn-activities-heading h2 {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 6px;
    }

    .dn-activities-heading p {
        font-size: 12px;
        line-height: 1.45;
    }


    /* NHÓM */

    .dn-activity-group {
        margin-bottom: 22px;
    }


    /* TIÊU ĐỀ CON */

    .dn-activity-title {
        margin-bottom: 8px !important;

        padding:
            2px
            0
            2px
            7px !important;

        border-left:
            3px
            solid
            #009846 !important;

        font-size: 12px !important;

        line-height: 1.35 !important;
    }


    /* MOBILE VẪN 3 ẢNH / 1 HÀNG */

    .dn-activities-grid {
        display: grid;

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 5px;
    }


    /* ẢNH VUÔNG GỌN HƠN */

    .dn-activity-item {
        aspect-ratio: 1 / 1;
    }


    .dn-activity-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    /* TẮT VỆT SÁNG TRÊN MOBILE */

    .dn-activity-item::after {
        display: none;
    }

}

/* =========================================
   TRANG BÁO GIÁ - PC + MOBILE
========================================= */

.dn-quote-page {
    width: 100%;
    padding: 45px 0 60px;
    background: #f6f8fa;
}

.dn-quote-wrap {
    width: 1000px;
    max-width: calc(100% - 30px);
    margin: 0 auto;
    box-sizing: border-box;
}


/* TIÊU ĐỀ */

.dn-quote-heading {
    text-align: center;
    margin-bottom: 35px;
}

.dn-quote-heading h2 {
    margin: 0 0 12px;
    color: #009846;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
}

.dn-quote-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   3 Ô HƯỚNG DẪN
========================================= */

.dn-quote-guide {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
    width: 100%;
    margin-bottom: 30px;
}

.dn-quote-step {
    min-width: 0;
    height: 100%;

    padding: 24px 18px;

    background: #ffffff;
    border: 1px solid #e1e5e8;

    box-sizing: border-box;
    text-align: center;

    display: flex;
    align-items: stretch;
}

.dn-step-content {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    box-sizing: border-box;
}

.dn-step-content h3 {
    margin: 0 0 12px;

    color: #07133f;

    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;

    text-align: center;
}

.dn-step-content p {
    margin: 12px 0 0;

    color: #666;

    font-size: 14px;
    line-height: 1.6;

    text-align: center;
}


/* =========================================
   NÚT
========================================= */

.dn-small-action-btn,
.dn-small-action-btn:link,
.dn-small-action-btn:visited,
.dn-small-action-btn:hover,
.dn-small-action-btn:active,
.dn-small-action-btn:focus {
    display: inline-flex;

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

    min-height: 36px;

    margin: 0;
    padding: 8px 16px;

    background: #009846 !important;
    color: #ffffff !important;

    text-decoration: none !important;

    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;

    border-radius: 4px;

    box-sizing: border-box;
}

.dn-small-action-btn:hover {
    background: #007a38 !important;
}


/* =========================================
   PHẦN HỖ TRỢ
========================================= */

.dn-quote-contact {
    margin-top: 30px;
    padding: 28px;

    background: #ffffff;
    border: 1px solid #e1e5e8;

    text-align: center;

    box-sizing: border-box;
}

.dn-quote-contact h2 {
    margin: 0 0 10px;

    color: #07133f;

    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
}

.dn-quote-contact p {
    margin: 7px 0;

    color: #555;

    font-size: 14px;
    line-height: 1.6;
}

.dn-quote-contact a {
    color: #009846 !important;
    text-decoration: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .dn-quote-wrap {
        max-width: calc(100% - 20px);
    }

    .dn-quote-guide {
        gap: 10px;
    }

    .dn-quote-step {
        padding: 18px 10px;
    }

    .dn-step-content h3 {
        font-size: 14px;
    }

    .dn-step-content p {
        font-size: 12px;
    }
}


/* =========================================
   MOBILE
   3 Ô VẪN NẰM NGANG
========================================= */

@media (max-width: 600px) {

    .dn-quote-page {
        padding: 24px 0 34px;
    }

    .dn-quote-wrap {
        width: 100%;
        max-width: 100%;

        padding: 0 6px;

        box-sizing: border-box;
    }


    /* TIÊU ĐỀ */

    .dn-quote-heading {
        margin-bottom: 18px;
        padding: 0 5px;
    }

    .dn-quote-heading h2 {
        margin-bottom: 7px;

        font-size: 21px;
        line-height: 1.25;
    }

    .dn-quote-heading p {
        font-size: 10.5px;
        line-height: 1.45;
    }


    /* 3 CARD */

    .dn-quote-guide {
        display: grid !important;

        grid-template-columns:
            repeat(3, minmax(0, 1fr)) !important;

        align-items: stretch !important;

        gap: 5px !important;

        width: 100%;

        margin-bottom: 16px;
    }

    .dn-quote-step {
        width: 100%;
        min-width: 0;
        height: 100%;

        padding: 10px 4px;

        box-sizing: border-box;

        display: flex;
    }

    .dn-step-content {
        width: 100%;
        height: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;

        box-sizing: border-box;
    }


    /* TIÊU ĐỀ TRONG CARD */

    .dn-step-content h3 {
        min-height: 38px;

        margin: 0 0 6px;

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

        color: #07133f;

        font-size: 9px;
        line-height: 1.2;

        text-align: center;
    }


    /* NÚT MOBILE */

    .dn-small-action-btn,
    .dn-small-action-btn:link,
    .dn-small-action-btn:visited,
    .dn-small-action-btn:hover,
    .dn-small-action-btn:active,
    .dn-small-action-btn:focus {

        min-height: 28px;

        margin: 0 0 6px;

        padding: 5px 7px;

        font-size: 8px;
        line-height: 1;

        white-space: nowrap;

        background: #009846 !important;
        color: #ffffff !important;
    }


    /* MÔ TẢ */

    .dn-step-content p {
        margin: 0;

        font-size: 8px;
        line-height: 1.35;

        text-align: center;
    }


    /* PHẦN HỖ TRỢ */

    .dn-quote-contact {
        margin-top: 16px;
        padding: 16px 9px;
    }

    .dn-quote-contact h2 {
        margin-bottom: 8px;

        font-size: 15px;
        line-height: 1.3;
    }

    .dn-quote-contact p {
        font-size: 10px;
        line-height: 1.45;
    }

}
/* ==================================================
   ICON HOT TRONG MENU CON
================================================== */

/* mục nào có class menu-hot sẽ có icon HOT */
.main-menu .menu-hot > a {
    display: flex !important;
    align-items: center !important;
    gap: 7px !important;
}


/* ICON NGÔI SAO HOT */
.main-menu .menu-hot > a::after {
    content: "HOT" !important;

    position: static !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 44px !important;
    height: 28px !important;

    margin-left: 5px !important;
    padding: 0 !important;

    background: #ff1b14 !important;

    color: #fff200 !important;

    font-size: 10px !important;
    font-weight: 900 !important;
    line-height: 1 !important;

    border: 0 !important;

    clip-path: polygon(
        50% 0%,
        59% 24%,
        78% 8%,
        76% 32%,
        100% 31%,
        81% 48%,
        100% 60%,
        76% 65%,
        83% 89%,
        61% 76%,
        50% 100%,
        40% 77%,
        18% 91%,
        25% 66%,
        0% 61%,
        19% 48%,
        0% 32%,
        25% 33%,
        19% 8%,
        41% 24%
    ) !important;

    animation: dn-hot-star 0.7s infinite alternate !important;
}


/* HIỆU ỨNG NHẤP NHÁY */
@keyframes dn-hot-star {

    0% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1);
    }

    100% {
        opacity: 0.65;
        transform: scale(1.15);
        filter: brightness(1.35);
    }
}


/* MOBILE */
@media screen and (max-width: 768px) {

    .main-menu.mobile-open .menu-hot > a::after {
        width: 40px !important;
        height: 25px !important;

        margin-left: 6px !important;

        font-size: 8px !important;
    }

}
/* ÉP NHỎ DÒNG TÊN CÔNG TY */
.header .company-name,
.header .company-name a,
.company-name,
.company-name a {
    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
}

/* TÊN CÔNG TY - MOBILE 2 DÒNG */
@media (max-width: 768px) {

    .company-name {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 8px !important;
        box-sizing: border-box !important;
        text-align: center !important;
        overflow: hidden !important;
    }

    .company-name a {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;

        text-align: center !important;
        text-decoration: none !important;

        white-space: normal !important;
        overflow: hidden !important;
    }

    .company-line-1,
    .company-line-2 {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
    }

    .company-line-1 {
        font-size: 10px !important;
        line-height: 1.2 !important;
        font-weight: 700 !important;
    }

    .company-line-2 {
        margin-top: 4px !important;
        font-size: 5px !important;
        line-height: 1.25 !important;
        font-weight: 600 !important;
    }
}

/* =========================================
   NÚT LIÊN HỆ NGAY - THANH XANH ĐẦU WEB
========================================= */

.dn-top-call {
    display: flex;
    align-items: center;
    justify-content: flex-start !important;

    width: 100%;
    height: 100%;

    margin: 0 !important;
    padding: 3px 8px !important;

    box-sizing: border-box;
}


/* =========================================
   NÚT LIÊN HỆ
========================================= */

.dn-call-btn,
.dn-call-btn:link,
.dn-call-btn:visited,
.dn-call-btn:active,
.dn-call-btn:focus {

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin: 0 !important;

    padding: 4px 12px 4px 5px;

    background: #07133f;

    border: 2px solid #f36c21;
    border-radius: 40px;

    color: #ffffff !important;
    text-decoration: none !important;

    white-space: nowrap;

    box-sizing: border-box;

    animation: dn-contact-flash 1.2s ease-in-out infinite;
}


/* =========================================
   ICON ĐIỆN THOẠI
========================================= */

.dn-call-icon {

    width: 32px;
    height: 32px;

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

    flex-shrink: 0;

    background: #f36c21;

    border: 2px solid #ffffff;
    border-radius: 50%;

    color: #ffffff !important;

    font-size: 19px;
    line-height: 1;
}


/* =========================================
   PHẦN CHỮ
========================================= */

.dn-call-text {

    display: flex;
    flex-direction: column;

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

    color: #ffffff !important;

    line-height: 1.05;
}


/* LIÊN HỆ NGAY */

.dn-call-text strong {

    margin: 0;

    color: #ffffff !important;

    font-size: 13px;
    line-height: 1.05;

    font-weight: 700;
}


/* SỐ ĐIỆN THOẠI */

.dn-call-text span {

    margin-top: 2px;

    color: #ffffff !important;

    font-size: 14px;
    line-height: 1.05;

    font-weight: 700;
}


/* =========================================
   HIỆU ỨNG CHỚP
   Bình thường xanh đậm
   -> chớp nền cam
   -> trở lại xanh đậm
========================================= */

@keyframes dn-contact-flash {

    0%,
    65%,
    100% {

        background: #07133f;

        border-color: #f36c21;

        box-shadow: none;

        transform: scale(1);
    }

    75%,
    88% {

        background: #f36c21;

        border-color: #f36c21;

        box-shadow:
            0 0 6px rgba(243,108,33,0.8),
            0 0 13px rgba(243,108,33,0.6);

        transform: scale(1.03);
    }
}


/* KHI NÚT CHỚP CAM
   icon vẫn đẹp, không bị mất */

@keyframes dn-icon-flash {

    0%,
    65%,
    100% {

        background: #f36c21;
        border-color: #ffffff;
    }

    75%,
    88% {

        background: #f36c21;
        border-color: #ffffff;
    }
}

.dn-call-icon {
    animation: dn-icon-flash 1.2s ease-in-out infinite;
}


/* =========================================
   HOVER TRÊN PC
========================================= */

.dn-call-btn:hover {

    color: #ffffff !important;

    text-decoration: none !important;
}

.dn-call-btn:hover *,
.dn-call-btn:visited *,
.dn-call-btn:active *,
.dn-call-btn:focus * {

    color: #ffffff !important;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .dn-top-call {

        justify-content: flex-start !important;

        padding: 3px 4px !important;
    }

    .dn-call-btn,
    .dn-call-btn:link,
    .dn-call-btn:visited,
    .dn-call-btn:active,
    .dn-call-btn:focus {

        gap: 5px;

        padding: 3px 8px 3px 4px;

        border-width: 1.5px;

        border-radius: 30px;
    }

    .dn-call-icon {

        width: 27px;
        height: 27px;

        border-width: 1.5px;

        font-size: 15px;
    }

    .dn-call-text strong {

        font-size: 10px;
    }

    .dn-call-text span {

        margin-top: 1px;

        font-size: 11px;
    }
}

/* =========================================
   TÊN CÔNG TY - PC + MOBILE
========================================= */

.company-name {
    width: 100%;
    max-width: 100%;

    padding: 0 10px;

    text-align: center;

    box-sizing: border-box;

    overflow: hidden;
}

.company-name a {
    display: block;

    width: 100%;
    max-width: 100%;

    color: #07133f !important;

    text-align: center;
    text-decoration: none !important;

    box-sizing: border-box;
}


/* =========================================
   DÒNG 1 - TÊN CÔNG TY
========================================= */

.company-line-1 {
    display: block;

    width: 100%;

    font-family: "Times New Roman", serif;

    font-size: 40px !important;
    line-height: 1.05 !important;

    font-weight: 700 !important;

    color: #07133f !important;

    text-align: center;

    white-space: nowrap;
}


/* =========================================
   DÒNG 2 - GIẢI PHÁP
========================================= */

.company-line-2 {
    display: block;

    width: 100%;

    margin-top: 6px;

    font-family: "Times New Roman", serif;

    font-size: 26px !important;
    line-height: 1.1 !important;

    font-weight: 700 !important;

    color: #07133f !important;

    text-align: center;

    white-space: nowrap;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .company-name {
        padding: 0 6px !important;
    }

    .company-line-1 {
        font-size: 17px !important;
        line-height: 1.1 !important;

        white-space: normal !important;
    }

    .company-line-2 {
        margin-top: 3px;

        font-size: 12px !important;
        line-height: 1.15 !important;

        white-space: normal !important;
    }
}

.site-footer a,
.footer a {
    color: #ffffff !important;
    text-decoration: none !important;
}

.site-footer a:hover,
.footer a:hover {
    text-decoration: underline !important;
}
@media (min-width: 769px) {
    .service-card:nth-child(7) {
        grid-column: 2;
    }
}

@media (max-width: 768px) {
    .service-card:nth-child(7) {
        grid-column: auto;
    }
}