/* =========================================================
   DIETMOIDANANG.VN
   HOME.CSS - FINAL
   ---------------------------------------------------------
   Trang chủ:
   - Full width toàn màn hình
   - Hero video
   - Dịch vụ
   - Công nghệ diệt mối
   - Công trình thực tế
   - Đối tác
   - Khu vực phục vụ
   - Liên hệ
   - Responsive desktop / tablet / mobile

   Màu thương hiệu:
   Xanh: #0e5739
   Xanh đậm: #073f2a
   Đỏ: #c90000
   ========================================================= */


/* =========================================================
   1. BIẾN MÀU TRANG CHỦ
   ========================================================= */

.home-page-custom {
    --home-green: #0e5739;
    --home-green-dark: #073f2a;
    --home-green-link: #006308;

    --home-red: #c90000;
    --home-red-dark: #a70000;

    --home-text: #26312b;
    --home-muted: #647068;

    --home-light: #f3f8f5;
    --home-light-2: #f5f8f6;

    --home-border: #dce7df;

    --home-radius: 12px;

    position: relative;

    width: 100vw !important;
    max-width: 100vw !important;

    margin-top: 0 !important;
    margin-bottom: 0 !important;

    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;

    padding: 0 !important;

    color: var(--home-text);

    font-family: "Open Sans", Arial, sans-serif;

    box-sizing: border-box;
}


/* =========================================================
   2. FIX FULL WIDTH GUTENBERG / HOSTINGER
   ========================================================= */

/* Ẩn H1 do Hostinger tự tạo.
   H1 chính sẽ nằm trong Hero */

body.home .hostinger-ai-page-title.wp-block-post-title {
    display: none;
}


/* Bỏ giới hạn content mặc định 700px */

body.home .entry-content.wp-block-post-content {
    --wp--style--global--content-size: 100%;
    --wp--style--global--wide-size: 100%;

    width: 100%;
    max-width: 100%;

    margin-top: 0 !important;

    padding-left: 0 !important;
    padding-right: 0 !important;
}


/* Bỏ global padding Gutenberg riêng trang chủ */

body.home
.entry-content.wp-block-post-content.has-global-padding {
    padding-left: 0 !important;
    padding-right: 0 !important;
}


/* Gỡ giới hạn của is-layout-constrained */

body.home
.entry-content.wp-block-post-content.is-layout-constrained
> .home-page-custom {
    width: 100vw !important;
    max-width: 100vw !important;

    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}


/* Không cho xuất hiện thanh cuộn ngang */

body.home {
    overflow-x: clip;
}


/* Tất cả section phủ toàn chiều ngang */

.home-page-custom section {
    width: 100%;
    max-width: none;

    margin-left: 0;
    margin-right: 0;

    box-sizing: border-box;
}


/* =========================================================
   3. CONTAINER NỘI DUNG
   ---------------------------------------------------------
   Background full màn hình.
   Nội dung giữ tối đa 1180px.
   ========================================================= */

.home-container {
    width: min(1180px, calc(100% - 40px));
    max-width: 1180px;

    margin-left: auto;
    margin-right: auto;

    box-sizing: border-box;
}


/* =========================================================
   4. HERO VIDEO
   ========================================================= */

.home-hero {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    max-width: none;

    min-height: 680px;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #071d14;
}


/* Video nền */

.home-hero-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    object-fit: cover;
    object-position: center;

    border: 0;
    border-radius: 0;
}


/* Lớp phủ video */

.home-hero-overlay {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            rgba(3, 24, 15, 0.90) 0%,
            rgba(5, 38, 24, 0.72) 48%,
            rgba(0, 0, 0, 0.34) 100%
        );
}


/* Content hero */

.home-hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
}


/* Container riêng Hero */

.home-hero-inner {
    width: min(1180px, calc(100% - 40px));
    max-width: 1180px;

    margin-left: auto;
    margin-right: auto;

    padding: 95px 0;

    box-sizing: border-box;
}


/* Eyebrow */

.home-hero-eyebrow {
    margin: 0 0 15px;

    color: #d8efe1;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1.3px;
    line-height: 1.5;
}


/* H1 */

.home-hero h1 {
    max-width: 800px;

    margin: 0 0 22px;

    padding: 0;

    color: #ffffff;

    font-family: DMSans, sans-serif;

    font-size: clamp(40px, 5vw, 66px);
    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -1px;
}


/* Nội dung mô tả */

.home-hero-description {
    max-width: 720px;

    margin: 0 0 30px;

    color: rgba(255, 255, 255, 0.92);

    font-size: 19px;
    line-height: 1.7;
}


/* Button container */

.home-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   5. BUTTON CHUNG
   ========================================================= */

.home-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 12px 24px;

    box-sizing: border-box;

    border-radius: 7px;

    font-size: 16px;
    font-weight: 700;

    line-height: 1.4;

    text-decoration: none !important;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.home-btn:hover {
    transform: translateY(-2px);
}


/* Nút gọi */

.home-btn-call {
    color: #ffffff !important;

    background: var(--home-red);

    border: 1px solid var(--home-red);
}

.home-btn-call:hover {
    color: #ffffff !important;

    background: var(--home-red-dark);

    border-color: var(--home-red-dark);
}


/* Nút trong suốt Hero */

.home-btn-outline {
    color: #ffffff !important;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.70);
}

.home-btn-outline:hover {
    color: var(--home-green-dark) !important;

    background: #ffffff;

    border-color: #ffffff;
}


/* Nút trắng */

.home-btn-light {
    color: var(--home-green-dark) !important;

    background: #ffffff;

    border: 1px solid #ffffff;
}

.home-btn-light:hover {
    color: #ffffff !important;

    background: var(--home-red);

    border-color: var(--home-red);
}


/* =========================================================
   6. SECTION CHUNG
   ========================================================= */

.home-section {
    width: 100%;

    padding: 80px 0;

    box-sizing: border-box;
}


/* Heading container */

.home-section-heading {
    max-width: 780px;

    margin: 0 auto 45px;

    text-align: center;
}


/* Nhãn trên heading */

.home-section-label {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--home-red);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.4px;

    line-height: 1.4;
}


/* H2 */

.home-section-heading h2,
.home-area-box h2,
.home-contact-content h2 {
    margin: 0 0 15px;

    padding: 0;

    color: var(--home-green-dark);

    font-family: DMSans, sans-serif;

    font-size: 36px;
    font-weight: 700;

    line-height: 1.25;
}


/* Description */

.home-section-heading p {
    margin: 0;

    color: var(--home-muted);

    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   7. GIỚI THIỆU
   ========================================================= */

.home-intro {
    background: #ffffff;
}


.home-intro-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 22px;
}


.home-intro-item {
    padding: 25px;

    background: var(--home-light);

    border: 1px solid var(--home-border);

    border-radius: var(--home-radius);

    box-sizing: border-box;
}


.home-intro-item strong {
    display: block;

    margin-bottom: 8px;

    color: var(--home-green-dark);

    font-family: DMSans, sans-serif;

    font-size: 19px;
    font-weight: 700;
}


.home-intro-item p {
    margin: 0;

    color: var(--home-muted);

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   8. DỊCH VỤ
   ========================================================= */

.home-services {
    background: var(--home-light-2);
}


.home-service-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 26px;
}


/* Card */

.home-service-card {
    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e0e8e3;

    border-radius: var(--home-radius);

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.035);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.home-service-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 13px 30px rgba(0, 0, 0, 0.09);
}


/* Ảnh */

.home-service-image {
    display: block;

    width: 100%;
    height: 225px;

    overflow: hidden;
}


.home-service-image img {
    display: block;

    width: 100%;
    height: 100%;

    margin: 0;

    object-fit: cover;

    border: 0;
    border-radius: 0;

    transition: transform 0.35s ease;
}


.home-service-card:hover
.home-service-image img {
    transform: scale(1.045);
}


/* Nội dung card */

.home-service-content {
    padding: 23px;
}


/* H3 */

.home-service-content h3 {
    margin: 0 0 10px;

    padding: 0;

    color: var(--home-green-dark);

    font-family: DMSans, sans-serif;

    font-size: 22px;
    font-weight: 700;

    line-height: 1.35;
}


.home-service-content h3 a {
    color: var(--home-green-dark);

    text-decoration: none;
}


.home-service-content h3 a:hover {
    color: var(--home-red);
}


/* Text */

.home-service-content p {
    margin: 0 0 16px;

    color: var(--home-muted);

    font-size: 16px;

    line-height: 1.7;
}


/* Link */

.home-service-link {
    color: var(--home-green-link);

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;
}


.home-service-link:hover {
    color: var(--home-red);

    text-decoration: none;
}


/* =========================================================
   9. CÔNG NGHỆ DIỆT MỐI
   ========================================================= */

.home-technology {
    background: var(--home-green-dark);
}


.home-technology
.home-section-heading h2 {
    color: #ffffff;
}


.home-technology
.home-section-heading p {
    color: rgba(255, 255, 255, 0.78);
}


.home-technology
.home-section-label {
    color: #aad5ba;
}


.home-tech-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;
}


.home-tech-item {
    padding: 27px 23px;

    background: rgba(255, 255, 255, 0.075);

    border: 1px solid rgba(255, 255, 255, 0.13);

    border-radius: var(--home-radius);

    box-sizing: border-box;
}


.home-tech-number {
    display: block;

    margin-bottom: 14px;

    color: #9dd2b1;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1px;
}


.home-tech-item h3 {
    margin: 0 0 10px;

    padding: 0;

    color: #ffffff;

    font-family: DMSans, sans-serif;

    font-size: 21px;
    font-weight: 700;

    line-height: 1.4;
}


.home-tech-item p {
    margin: 0;

    color: rgba(255, 255, 255, 0.76);

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   10. CÔNG TRÌNH ĐÃ THỰC HIỆN
   ========================================================= */

.home-projects {
    background: #ffffff;
}


.home-project-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 18px;
}


.home-project-item {
    position: relative;

    margin: 0;

    overflow: hidden;

    background: #eeeeee;

    border-radius: 10px;
}


.home-project-item img {
    display: block;

    width: 100%;
    height: 270px;

    margin: 0;

    object-fit: cover;

    border: 0;
    border-radius: 0;

    transition: transform 0.35s ease;
}


.home-project-item:hover img {
    transform: scale(1.04);
}


/* =========================================================
   11. ĐỐI TÁC
   ========================================================= */

.home-partners {
    background: #f6f8f7;
}


.home-partner-grid {
    display: grid;

    grid-template-columns: repeat(6, minmax(0, 1fr));

    gap: 18px;
}


.home-partner-item {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 115px;

    padding: 18px;

    background: #ffffff;

    border: 1px solid var(--home-border);

    border-radius: 9px;

    box-sizing: border-box;
}


.home-partner-item img {
    display: block;

    max-width: 100%;
    max-height: 65px;

    width: auto;
    height: auto;

    margin: 0;

    object-fit: contain;

    border: 0;
    border-radius: 0;
}


/* =========================================================
   12. KHU VỰC PHỤC VỤ
   ========================================================= */

.home-areas {
    background: #ffffff;
}


.home-area-box {
    display: grid;

    grid-template-columns: minmax(0, 1fr) auto;

    gap: 50px;

    align-items: center;

    padding: 42px;

    background: var(--home-light);

    border: 1px solid var(--home-border);

    border-radius: 14px;

    box-sizing: border-box;
}


.home-area-box p {
    max-width: 700px;

    margin: 0;

    color: var(--home-muted);

    font-size: 16px;

    line-height: 1.75;
}


/* Links khu vực */

.home-area-links {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 20px;
}


.home-area-links a {
    display: inline-flex;

    align-items: center;

    padding: 7px 13px;

    color: var(--home-green-dark);

    background: #ffffff;

    border: 1px solid #d3e1d8;

    border-radius: 20px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}


.home-area-links a:hover {
    color: #ffffff;

    background: var(--home-green);

    border-color: var(--home-green);

    text-decoration: none;
}


/* Hotline */

.home-area-contact {
    min-width: 230px;

    padding: 25px;

    text-align: center;

    background: #ffffff;

    border-radius: 10px;

    box-sizing: border-box;
}


.home-area-contact span {
    display: block;

    margin-bottom: 8px;

    color: var(--home-muted);

    font-size: 14px;
}


.home-area-contact a {
    color: var(--home-red);

    font-family: DMSans, sans-serif;

    font-size: 26px;
    font-weight: 700;

    line-height: 1.3;

    text-decoration: none;
}


.home-area-contact a:hover {
    color: var(--home-red-dark);
}


/* =========================================================
   13. LIÊN HỆ CUỐI TRANG
   ========================================================= */

.home-contact-section {
    width: 100%;

    padding: 80px 0;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #063c28 0%,
            #0e5739 100%
        );

    box-sizing: border-box;
}


.home-contact-grid {
    display: grid;

    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.8fr);

    gap: 50px;

    align-items: center;
}


.home-contact-content
.home-section-label {
    color: #a9d6ba;
}


.home-contact-content h2 {
    max-width: 700px;

    color: #ffffff;

    font-size: 39px;
}


.home-contact-content p {
    max-width: 700px;

    margin: 0 0 25px;

    color: rgba(255, 255, 255, 0.83);

    font-size: 17px;

    line-height: 1.75;
}


.home-contact-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


/* Contact info */

.home-contact-info {
    padding: 27px;

    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.16);

    border-radius: 12px;

    box-sizing: border-box;
}


.home-contact-info h3 {
    margin: 0 0 20px;

    padding: 0;

    color: #ffffff;

    font-family: DMSans, sans-serif;

    font-size: 21px;
    font-weight: 700;

    line-height: 1.45;
}


.home-contact-info p {
    margin: 0 0 15px;

    color: rgba(255, 255, 255, 0.84);

    font-size: 16px;

    line-height: 1.65;
}


.home-contact-info p:last-child {
    margin-bottom: 0;
}


.home-contact-info a {
    color: #ffffff;

    font-weight: 700;

    text-decoration: none;
}


.home-contact-info a:hover {
    color: #ffffff;

    text-decoration: underline;
}


/* =========================================================
   14. ẢNH CHUNG TRANG CHỦ
   ========================================================= */

.home-page-custom img {
    max-width: 100%;
}


/* =========================================================
   15. LINK FOCUS
   ========================================================= */

.home-page-custom a:focus-visible {
    outline: 2px solid var(--home-red);

    outline-offset: 3px;
}


/* =========================================================
   16. TABLET <= 991px
   ========================================================= */

@media (max-width: 991px) {

    .home-container,
    .home-hero-inner {
        width: calc(100% - 36px);
    }


    .home-hero {
        min-height: 610px;
    }


    .home-section {
        padding: 65px 0;
    }


    .home-section-heading h2,
    .home-area-box h2 {
        font-size: 32px;
    }


    .home-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .home-tech-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .home-project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .home-partner-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }


    .home-area-box {
        gap: 30px;
    }


    .home-contact-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   17. MOBILE <= 767px
   ========================================================= */

@media (max-width: 767px) {

    .home-container,
    .home-hero-inner {
        width: calc(100% - 30px);
    }


    /* HERO */

    .home-hero {
        min-height: 610px;
    }


    .home-hero-overlay {
        background:
            rgba(3, 28, 17, 0.79);
    }


    .home-hero-inner {
        padding: 75px 0;
    }


    .home-hero-eyebrow {
        font-size: 12px;
        letter-spacing: 1px;
    }


    .home-hero h1 {
        max-width: 100%;

        font-size: 38px;

        line-height: 1.15;

        letter-spacing: -0.5px;
    }


    .home-hero-description {
        font-size: 17px;

        line-height: 1.65;
    }


    .home-hero-actions {
        flex-direction: column;

        align-items: stretch;
    }


    .home-btn {
        width: 100%;
    }


    /* SECTION */

    .home-section {
        padding: 55px 0;
    }


    .home-section-heading {
        margin-bottom: 32px;
    }


    .home-section-heading h2,
    .home-area-box h2,
    .home-contact-content h2 {
        font-size: 29px;

        line-height: 1.3;
    }


    .home-section-heading p {
        font-size: 16px;
    }


    /* INTRO */

    .home-intro-grid {
        grid-template-columns: 1fr;
    }


    /* SERVICES */

    .home-service-grid {
        grid-template-columns: 1fr;
    }


    .home-service-image {
        height: 230px;
    }


    .home-service-content {
        padding: 21px;
    }


    /* TECHNOLOGY */

    .home-tech-grid {
        grid-template-columns: 1fr;
    }


    /* PROJECTS */

    .home-project-grid {
        grid-template-columns: 1fr;
    }


    .home-project-item img {
        height: 240px;
    }


    /* PARTNERS */

    .home-partner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    /* AREA */

    .home-area-box {
        grid-template-columns: 1fr;

        gap: 25px;

        padding: 25px;
    }


    .home-area-contact {
        min-width: 0;
    }


    /* CONTACT */

    .home-contact-section {
        padding: 58px 0;
    }


    .home-contact-grid {
        gap: 30px;
    }


    .home-contact-content h2 {
        font-size: 30px;
    }


    .home-contact-content p {
        font-size: 16px;
    }

}


/* =========================================================
   18. MOBILE NHỎ <= 480px
   ========================================================= */

@media (max-width: 480px) {

    .home-container,
    .home-hero-inner {
        width: calc(100% - 24px);
    }


    .home-hero {
        min-height: 570px;
    }


    .home-hero-inner {
        padding: 60px 0;
    }


    .home-hero h1 {
        font-size: 33px;
    }


    .home-hero-description {
        font-size: 16px;
    }


    .home-section {
        padding: 48px 0;
    }


    .home-section-heading h2,
    .home-area-box h2,
    .home-contact-content h2 {
        font-size: 27px;
    }


    .home-intro-item {
        padding: 20px;
    }


    .home-service-content {
        padding: 19px;
    }


    .home-service-content h3 {
        font-size: 20px;
    }


    .home-tech-item {
        padding: 22px 19px;
    }


    .home-partner-grid {
        gap: 10px;
    }


    .home-partner-item {
        min-height: 90px;

        padding: 13px;
    }


    .home-area-box {
        padding: 20px;
    }


    .home-area-contact a {
        font-size: 23px;
    }


    .home-contact-info {
        padding: 22px 19px;
    }

}


/* =========================================================
   19. ACCESSIBILITY - GIẢM CHUYỂN ĐỘNG
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .home-service-card,
    .home-project-item img,
    .home-service-image img,
    .home-btn {
        transition: none;
    }

}

/* =========================================================
   20. FIX MÀU CHỮ TRÊN NỀN XANH ĐẬM
   ---------------------------------------------------------
   Áp dụng cho:
   - Khu vực Công nghệ
   - Khu vực Liên hệ cuối trang
   - Các block nền xanh đậm khác nếu dùng .home-dark-section
   ========================================================= */


/* =========================================================
   CÔNG NGHỆ - NỀN XANH ĐẬM
   ========================================================= */

/* Tiêu đề */

.home-technology h1,
.home-technology h2,
.home-technology h3,
.home-technology h4,
.home-technology h5,
.home-technology h6 {
    color: #ffffff !important;
}


/* Paragraph, list, text */

.home-technology p,
.home-technology li,
.home-technology span:not(.home-section-label):not(.home-tech-number) {
    color: rgba(255, 255, 255, 0.84);
}


/* Strong */

.home-technology strong,
.home-technology b {
    color: #ffffff;
}


/* Link */

.home-technology a:not(.home-btn) {
    color: #d9f0e1 !important;

    text-decoration: none;
}


/* Hover link */

.home-technology a:not(.home-btn):hover {
    color: #ffffff !important;

    text-decoration: underline;
}


/* Nhãn trên tiêu đề */

.home-technology .home-section-label {
    color: #b8e3c7 !important;
}


/* Số 01, 02, 03... */

.home-technology .home-tech-number {
    color: #9fd5b3 !important;
}


/* Nội dung trong từng card công nghệ */

.home-technology .home-tech-item p {
    color: rgba(255, 255, 255, 0.80) !important;
}


/* =========================================================
   LIÊN HỆ CUỐI TRANG - NỀN XANH ĐẬM
   ========================================================= */

.home-contact-section h1,
.home-contact-section h2,
.home-contact-section h3,
.home-contact-section h4,
.home-contact-section h5,
.home-contact-section h6 {
    color: #ffffff !important;
}


/* Paragraph */

.home-contact-section p,
.home-contact-section li {
    color: rgba(255, 255, 255, 0.86) !important;
}


/* Strong */

.home-contact-section strong,
.home-contact-section b {
    color: #ffffff !important;
}


/* Link thông thường */

.home-contact-section a:not(.home-btn) {
    color: #ffffff !important;

    text-decoration: underline;

    text-decoration-color: rgba(255, 255, 255, 0.55);

    text-underline-offset: 3px;
}


/* Hover */

.home-contact-section a:not(.home-btn):hover {
    color: #ffffff !important;

    text-decoration-color: #ffffff;
}


/* Label */

.home-contact-section .home-section-label {
    color: #b8e3c7 !important;
}


/* =========================================================
   BOX THÔNG TIN LIÊN HỆ
   ========================================================= */

.home-contact-info {
    color: #ffffff;
}


.home-contact-info h3 {
    color: #ffffff !important;
}


.home-contact-info p {
    color: rgba(255, 255, 255, 0.86) !important;
}


.home-contact-info strong {
    color: #ffffff !important;
}


.home-contact-info a {
    color: #ffffff !important;
}


/* Hotline nổi bật */

.home-contact-info a[href^="tel:"] {
    color: #ffffff !important;

    font-weight: 700;
}


/* =========================================================
   BUTTON TRÊN NỀN TỐI
   ---------------------------------------------------------
   Đảm bảo CSS phía trên không ghi đè màu nút
   ========================================================= */

.home-contact-section .home-btn-call,
.home-technology .home-btn-call {
    color: #ffffff !important;

    background: #c90000;

    border-color: #c90000;

    text-decoration: none !important;
}


.home-contact-section .home-btn-call:hover,
.home-technology .home-btn-call:hover {
    color: #ffffff !important;

    background: #a70000;

    border-color: #a70000;

    text-decoration: none !important;
}


/* Nút trắng */

.home-contact-section .home-btn-light {
    color: #073f2a !important;

    background: #ffffff;

    border-color: #ffffff;

    text-decoration: none !important;
}


.home-contact-section .home-btn-light:hover {
    color: #ffffff !important;

    background: #c90000;

    border-color: #c90000;
}


/* =========================================================
   CLASS DÙNG CHUNG CHO NỀN TỐI
   ---------------------------------------------------------
   Sau này nếu tạo section nền xanh khác:
   <section class="home-dark-section">
   ========================================================= */

.home-dark-section {
    color: #ffffff;
}


.home-dark-section h1,
.home-dark-section h2,
.home-dark-section h3,
.home-dark-section h4,
.home-dark-section h5,
.home-dark-section h6,
.home-dark-section strong {
    color: #ffffff !important;
}


.home-dark-section p,
.home-dark-section li {
    color: rgba(255, 255, 255, 0.84) !important;
}


.home-dark-section a:not(.home-btn) {
    color: #d9f0e1 !important;
}


.home-dark-section a:not(.home-btn):hover {
    color: #ffffff !important;
}

/* =========================================================
   END HOME.CSS
   ========================================================= */