/* ==========================================================================
   DIET CON TRUNG TOAN TAM - MAIN STYLESHEET (HTML5 / CSS3 STANDARD)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Typography & Font Face
   -------------------------------------------------------------------------- */
@font-face {
    font-family: 'UTM HelvetIns';
    src: url('../fonts/UTM HelvetIns.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url('../fonts/Roboto-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto-Medium';
    src: url('../fonts/Roboto-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto-Regular';
    src: url('../fonts/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto-BoldItalic';
    src: url('../fonts/Roboto-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

/* --------------------------------------------------------------------------
   2. Reset & Global Layout Tokens
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-size: 14px;
    line-height: 1.5;
    background-color: #ffffff;
    font-family: 'Roboto-Regular', 'Roboto', Arial, sans-serif;
    color: #333333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

.center {
    max-width: 1200px;
    width: 98%;
    margin-left: auto;
    margin-right: auto;
}

.clear::after,
.clear::before {
    content: "";
    display: table;
    clear: both;
}

.seo-heading-hidden {
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

/* --------------------------------------------------------------------------
   3. Header Section
   -------------------------------------------------------------------------- */
.header-wrapper {
    background: url('../images/bg_hd.jpg') no-repeat top center;
    background-size: cover;
    width: 100%;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    min-height: 120px;
    height: 120px;
    box-sizing: border-box;
}

.header-logo {
    display: inline-block;
    flex-shrink: 0;
    margin-right: 5%;
}

.header-logo img {
    max-height: 80px;
    width: auto;
    display: block;
}

.header-banner {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85px;
    height: 85px;
}

.company-info {
    text-align: center;
    font-family: 'UTM HelvetIns', sans-serif;
    text-shadow: 1px 1px #ffffff, -1px 1px #ffffff, 1px -1px #ffffff, -1px -1px #ffffff, 3px 3px 2px #100b0b;
    width: 100%;
    min-height: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-slogan {
    margin: 0;
    font-size: 36px;
    color: #e90000;
    line-height: 1.2;
    text-transform: uppercase;
    min-height: 76px;
    display: inline-block;
    width: 100%;
}

.slogan-highlight {
    color: #035900;
    font-size: 28px;
    display: inline-block;
    margin-top: 4px;
}

.ti-cursor {
    display: inline-block;
    color: #e90000;
    font-weight: 300;
    margin-left: 2px;
    vertical-align: baseline;
    animation: blinkCursor 0.75s infinite alternate;
}

@keyframes blinkCursor {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* --------------------------------------------------------------------------
   4. Navigation Menu
   -------------------------------------------------------------------------- */
.navigation-wrapper {
    background: url('../images/bg_mn.jpg') repeat-x;
    width: 100%;
    position: relative;
    z-index: 999;
}

.navigation-wrapper.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    z-index: 1000;
}

.main-navigation {
    position: relative;
    height: 47px;
    line-height: 47px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu-list {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu-item {
    position: relative;
    height: 100%;
}

.nav-divider {
    height: 100%;
    width: 2px;
    background: url('../images/line_menu.png') no-repeat center center;
    flex-shrink: 0;
}

.nav-link {
    color: #ffffff;
    font-size: 15px;
    padding: 0 24px;
    text-transform: uppercase;
    display: block;
    font-family: 'Roboto-Bold', sans-serif;
    transition: color 0.3s ease;
    line-height: 47px;
}

.nav-link:hover,
.nav-menu-item.active>.nav-link,
.nav-menu-item:hover>.nav-link {
    color: #ffe400;
}

/* Dropdown Menus */
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #006905;
    border-top: 1px solid #007b13;
    min-width: 230px;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 1001;
}

.nav-menu-item:hover>.nav-dropdown-menu {
    display: block;
}

.dropdown-item {
    border-bottom: 1px solid #007b13;
    position: relative;
    line-height: normal;
}

.dropdown-link {
    color: #ffffff;
    font-size: 14px;
    padding: 10px 14px;
    display: block;
    font-family: 'Roboto-Regular', sans-serif;
    transition: background 0.3s, color 0.3s;
}

.dropdown-link:hover,
.dropdown-item:hover>.dropdown-link {
    background: #005504;
    color: #ffe400;
}

.nav-sub-dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background: #006905;
    border-left: 1px solid #007b13;
    min-width: 220px;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.dropdown-item:hover>.nav-sub-dropdown-menu {
    display: block;
}

.sub-dropdown-item {
    border-bottom: 1px solid #007b13;
}

.sub-dropdown-link {
    color: #ffffff;
    font-size: 13px;
    padding: 9px 12px;
    display: block;
    transition: background 0.3s, color 0.3s;
}

.sub-dropdown-link:hover {
    background: #005504;
    color: #ffe400;
}

/* Search Box */
.nav-search-box {
    background: #ffffff;
    height: 33px;
    width: 240px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    overflow: hidden;
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    width: calc(100% - 25px);
    color: #555555;
    font-size: 13px;
    font-family: inherit;
}

.search-btn {
    color: #222222;
    font-size: 15px;
    cursor: pointer;
    transition: color 0.3s;
}

.search-btn:hover {
    color: #d80008;
}

/* Mobile Nav Bar & Drawer */
.mobile-nav-bar {
    display: none;
    background: #006203;
    padding: 10px 15px;
    align-items: center;
    justify-content: space-between;
}

.btn-toggle-menu {
    color: #ffffff;
    font-size: 16px;
    font-family: 'Roboto-Bold', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-mobile-hotline {
    color: #ffffff;
    font-size: 24px;
}

.mobile-nav-drawer {
    display: none;
    background: #004d02;
    padding: 12px 15px;
}

.mobile-search-box {
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 6px 14px;
    margin-bottom: 12px;
}

.search-input-mobile {
    border: none;
    outline: none;
    width: 100%;
    font-size: 13px;
}

.search-btn-mobile {
    color: #222222;
    cursor: pointer;
}

.mobile-menu-list {
    margin: 0;
    padding: 0;
}

.mobile-menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu-item a {
    color: #ffffff;
    padding: 10px 0;
    display: block;
    font-size: 14px;
    font-family: 'Roboto-Medium', sans-serif;
    text-transform: uppercase;
}

.mobile-sub-menu,
.mobile-sub-sub-menu {
    padding-left: 16px;
    background: rgba(0, 0, 0, 0.15);
}

.mobile-sub-menu li a {
    text-transform: none;
    font-size: 13px;
    font-family: 'Roboto-Regular', sans-serif;
    padding: 8px 0;
}

/* --------------------------------------------------------------------------
   5. Slider Section
   -------------------------------------------------------------------------- */
.home-slider-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
}

.slider-slide-item {
    width: 100%;
}

.slider-link {
    display: block;
    width: 100%;
}

.slider-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 480px;
    object-fit: cover;
}

.home-slider-container .owl-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
}

.home-slider-container .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 4px;
    background: rgba(255, 255, 255, 0.6);
    display: inline-block;
    border-radius: 50%;
    transition: background 0.3s;
}

.home-slider-container .owl-dot.active span {
    background: #088222;
}

/* --------------------------------------------------------------------------
   6. Main Content Area & Columns
   -------------------------------------------------------------------------- */
.home-main-content {
    display: flex;
    gap: 30px;
    padding: 10px 0 40px;
    align-items: flex-start;
}

.home-primary-column {
    flex: 1;
    min-width: 0;
    order: 2;
}

.home-sidebar-column {
    width: 300px;
    flex-shrink: 0;
    order: 1;
}

.home-section-box {
    margin-bottom: 30px;
}

/* --------------------------------------------------------------------------
   7. Section Headers (Green Skew Badge)
   -------------------------------------------------------------------------- */
.section-header {
    margin-bottom: 20px;
    position: relative;
    height: 42px;
    line-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(1, 9, 2, 0) 7%, rgba(9, 130, 34, 0.65) 100%);
    overflow: hidden;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #007c16;
}

.section-badge {
    background: #006203;
    color: #ffffff;
    font-size: 18px;
    font-family: 'UTM HelvetIns', sans-serif;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transform: skew(-24deg);
    margin-left: -10px;
    padding-right: 22px;
    height: 100%;
    display: flex;
    align-items: center;
}

.badge-text {
    background: url('../images/logo.png') no-repeat left center;
    background-position-x: 10px;
    background-size: 22px;
    padding-left: 40px;
    display: block;
    transform: skew(24deg);
    margin-left: 10px;
}

.btn-view-all {
    color: #ffffff;
    font-family: 'Roboto-Bold', sans-serif;
    font-size: 14px;
    margin-right: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: text-decoration 0.3s, color 0.3s;
}

.btn-view-all:hover {
    text-decoration: underline;
    color: #ffe400;
}

/* --------------------------------------------------------------------------
   8. Featured Services Grid
   -------------------------------------------------------------------------- */
.featured-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e1e1e1;
    padding: 10px;
    border-radius: 6px;
    display: flex;
    gap: 12px;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #088222;
}

.service-thumb-link {
    width: 140px;
    height: 110px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
    display: block;
}

.service-thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-thumb-image {
    transform: scale(1.1);
}

.service-heading {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.35;
}

.service-title {
    color: #131313;
    font-family: 'Roboto-Bold', sans-serif;
    transition: color 0.3s;
}

.service-title:hover {
    color: #d80008;
}

.service-desc {
    font-size: 13px;
    color: #555555;
    line-height: 1.4;
}

/* --------------------------------------------------------------------------
   9. Featured Products Grid
   -------------------------------------------------------------------------- */
.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    text-align: center;
    border: 1px solid #0b8f00;
    padding: 12px;
    border-radius: 10px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 6px 16px rgba(11, 143, 0, 0.2);
}

.product-thumb-link {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
    margin-bottom: 10px;
    height: 170px;
}

.product-thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover .product-thumb-image {
    transform: scale(1.15);
}

.product-heading {
    margin: 0 0 6px;
    font-size: 14px;
    min-height: 38px;
}

.product-title {
    color: #131313;
    font-size: 14px;
    font-family: 'Roboto-Bold', sans-serif;
    transition: color 0.3s;
}

.product-title:hover {
    color: #d80008;
}

.product-price {
    font-size: 14px;
    font-family: 'Roboto-Regular', sans-serif;
    margin: 0 0 10px;
    color: #444444;
}

.price-value {
    color: #ca0000;
    font-size: 15px;
    font-family: 'Roboto-Bold', sans-serif;
}

.btn-product-detail {
    color: #ffffff;
    background: #0b8f00;
    text-align: center;
    font-size: 14px;
    display: block;
    font-family: 'Roboto-Bold', sans-serif;
    text-transform: uppercase;
    padding: 8px 0;
    border-radius: 7px;
    transition: background 0.3s;
}

.btn-product-detail:hover {
    background: #d80008;
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   10. Operating Areas (TP.HCM & Da Nang)
   -------------------------------------------------------------------------- */
.operating-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.area-card {
    border: 2px solid #088222;
    padding: 20px;
    background: #f6f6f6;
    font-family: 'Roboto-Regular', sans-serif;
    font-size: 15px;
    border-radius: 6px;
}

.area-title {
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'UTM HelvetIns', sans-serif;
    line-height: 44px;
    background: #088222;
    margin: -20px -20px 18px -20px;
    padding: 0 10px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    font-weight: 500;
}

.area-content {
    line-height: 1.6;
    color: #222222;
}

.area-content p {
    margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   11. Left Sidebar
   -------------------------------------------------------------------------- */
.sidebar-block {
    margin-bottom: 25px;
}

.sidebar-heading {
    text-transform: uppercase;
    color: #ffffff;
    font-size: 17px;
    font-family: 'UTM HelvetIns', sans-serif;
    position: relative;
    background: #006203 url('../images/icondm.png') no-repeat 18px center;
    line-height: 42px;
    padding-left: 56px;
    margin: 0;
    font-weight: 500;
}

.sidebar-category-nav {
    background: #207c00;
}

.sidebar-menu-list {
    margin: 0;
    padding: 0;
}

.sidebar-menu-item {
    border-bottom: 1px solid #359314;
    position: relative;
}

.sidebar-menu-item::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: -2px;
    left: 0;
    background: #1d6f00;
}

.sidebar-menu-item:last-child {
    border-bottom: none;
}

.sidebar-menu-item:last-child::after {
    display: none;
}

.sidebar-menu-link {
    color: #ffffff;
    font-family: 'Roboto-Medium', sans-serif;
    font-size: 13.5px;
    transition: color 0.3s, background 0.3s;
    display: block;
    text-transform: uppercase;
    padding: 11px 0 11px 24px;
}

.sidebar-menu-link i {
    color: #ffe400;
    margin-right: 4px;
}

.sidebar-menu-link:hover {
    color: #ffe400;
    background: rgba(0, 0, 0, 0.1);
}

.sidebar-sub-menu-list {
    margin: 0;
    padding: 0;
    background: #1a6500;
}

.sidebar-sub-menu-item {
    border-bottom: 1px solid #238002;
}

.sidebar-sub-menu-link {
    color: #ffffff;
    font-size: 13px;
    padding: 8px 10px 8px 36px;
    display: block;
    transition: color 0.3s;
}

.sidebar-sub-menu-link:hover {
    color: #ffe400;
}

.sidebar-news-list,
.sidebar-projects-list {
    background: #f6f6f6;
    padding: 18px;
    border: 1px solid #e1e1e1;
    border-top: none;
}

.sidebar-news-link {
    display: block;
    color: #000000;
    font-size: 14px;
    font-family: 'Roboto-Regular', sans-serif;
    margin-bottom: 11px;
    transition: color 0.3s;
}

.sidebar-news-link i {
    color: #088222;
    margin-right: 5px;
}

.sidebar-news-link:hover {
    color: #d80008;
}

.sidebar-more-link {
    display: inline-block;
    color: #088222;
    font-family: 'Roboto-Bold', sans-serif;
    font-size: 13px;
    text-decoration: underline;
    margin-top: 5px;
}

.sidebar-more-link:hover {
    color: #d80008;
}

.sidebar-project-item {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    align-items: center;
}

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

.project-thumb-link {
    width: 79px;
    height: 67px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    display: block;
}

.project-thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-title {
    font-size: 13px;
    color: #111111;
    font-family: 'Roboto-Medium', sans-serif;
    line-height: 1.35;
    transition: color 0.3s;
}

.project-title:hover {
    color: #d80008;
}

.fanpage-container {
    background: #f6f6f6;
    padding: 12px;
    border: 1px solid #e1e1e1;
    border-top: none;
}

/* --------------------------------------------------------------------------
   12. Footer Section
   -------------------------------------------------------------------------- */
.footer-wrapper {
    background: #088222;
    color: #ffffff;
    padding: 40px 0 35px;
    font-family: 'Roboto-Regular', sans-serif;
    font-size: 14px;
}

.site-footer {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.footer-col-company {
    width: 34%;
}

.footer-col-policy {
    width: 14%;
}

.footer-col-newsletter {
    width: 22%;
}

.footer-col-map {
    width: 25%;
}

.footer-company-name {
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'UTM HelvetIns', sans-serif;
    margin: 0 0 16px;
    color: #ffffff;
    line-height: 1.3;
    font-weight: 500;
}

.footer-company-content {
    line-height: 1.6;
    margin-bottom: 18px;
    color: #e9f7eb;
    font-size: 13.5px;
}

.footer-copyright {
    font-size: 12px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    flex-wrap: wrap;
}

.footer-copyright span {
    font-family: 'Roboto-Bold', sans-serif;
}

.company-mascot {
    width: 45px;
    height: auto;
    display: inline-block;
    flex-shrink: 0;
}

.footer-heading {
    text-transform: uppercase;
    position: relative;
    font-size: 15px;
    font-family: 'UTM HelvetIns', sans-serif;
    margin: 0 0 20px;
    color: #ffffff;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.policy-link-list {
    margin: 0;
    padding: 0;
}

.policy-link-item {
    margin-bottom: 8px;
}

.policy-link {
    color: #ffffff;
    font-size: 13.5px;
    transition: color 0.3s;
    display: block;
}

.policy-link:hover {
    color: #ffe400;
}

.bocongthuong-badge {
    margin-top: 15px;
}

.bocongthuong-badge img {
    max-height: 48px;
    width: auto;
}

.newsletter-form {
    width: 100%;
    border-radius: 5px;
    background: #ffffff;
    padding: 2px;
    overflow: hidden;
    height: 36px;
    display: flex;
    margin-bottom: 24px;
}

.newsletter-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 10px;
    font-size: 13px;
    color: #333333;
    background: transparent;
}

.newsletter-submit-btn {
    background: #d80008;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 0 16px;
    font-family: 'Roboto-Bold', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-submit-btn:hover {
    background: #b50006;
}

.social-heading {
    margin-top: 10px;
}

.social-link-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link-item {
    display: inline-block;
    width: 34px;
    height: 34px;
    transition: transform 0.3s;
}

.social-link-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-link-item:hover {
    transform: translateY(-3px);
}

.map-embed-container {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.map-embed-container iframe {
    width: 100% !important;
    height: 200px !important;
    border: 0 !important;
}

/* --------------------------------------------------------------------------
   13. Mobile Contact Fixed Toolbar
   -------------------------------------------------------------------------- */
.mobile-contact-toolbar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000000;
    border-top: 1px solid #cccccc;
    z-index: 9999;
}

.toolbar-grid {
    display: flex;
    width: 100%;
    text-align: center;
}

.toolbar-cell {
    flex: 1;
    position: relative;
    border-right: 1px solid #222222;
}

.toolbar-cell:last-child {
    border-right: none;
}

.toolbar-action-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-family: 'Roboto-Bold', sans-serif;
    text-decoration: none;
    cursor: pointer;
}

.phone-popup-box {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: #006b16;
    border-radius: 8px;
    padding: 10px 14px;
    min-width: 160px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.popup-phone-link {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    padding: 4px 0;
}

.popup-phone-link:hover {
    color: #ffe400;
}

.blink-effect {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }
}

/* --------------------------------------------------------------------------
   14. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .nav-link {
        padding: 0 16px;
    }
}

@media (max-width: 966px) {
    .main-navigation {
        display: none;
    }

    .mobile-nav-bar {
        display: flex;
    }

    .home-main-content {
        flex-direction: column;
    }

    .home-primary-column {
        width: 100%;
        order: 1;
    }

    .home-sidebar-column {
        width: 100%;
        order: 2;
        margin-top: 20px;
    }

    .sidebar-category-block,
    .sidebar-fanpage-block {
        display: none;
    }
}

@media (max-width: 800px) {
    .featured-services-grid {
        grid-template-columns: 1fr;
    }

    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .operating-areas-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        flex-direction: column;
        gap: 24px;
    }

    .footer-col-company,
    .footer-col-policy,
    .footer-col-newsletter,
    .footer-col-map {
        width: 100%;
    }
}

@media (max-width: 667px) {
    .site-header {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        height: auto;
        padding: 10px 0;
    }

    .header-logo {
        margin: 0 auto 8px;
    }

    .header-banner {
        min-height: 60px;
        height: 60px;
    }

    .company-info {
        min-height: 55px;
        height: 55px;
    }

    .company-slogan {
        font-size: 22px;
        min-height: 50px;
    }

    .slogan-highlight {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card {
        padding: 8px;
    }

    .mobile-contact-toolbar {
        display: block;
    }

    body {
        padding-bottom: 50px;
    }

    .scrollToTop {
        bottom: 65px;
        right: 15px;
        width: 38px;
        height: 38px;
        line-height: 38px;
    }
}

/* --------------------------------------------------------------------------
   15. Scroll To Top Button
   -------------------------------------------------------------------------- */
.scrollToTop {
    width: 44px;
    height: 44px;
    position: fixed;
    bottom: 35px;
    right: 20px;
    cursor: pointer;
    z-index: 999;
    display: none;
    background: #088222;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, background 0.3s ease;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 44px;
}

.scrollToTop:hover {
    background: #d80008;
    transform: translateY(-4px);
}

.scrollToTop img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    vertical-align: middle;
    display: inline-block;
}

/* --------------------------------------------------------------------------
   16. Inner Pages & 4-Column Product Grid
   -------------------------------------------------------------------------- */
.inner-layout-wrapper {
    padding: 25px 0 45px;
}

.inner-content-container {
    width: 100%;
}

.products-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.inner-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.service-body {
    flex: 1;
    min-width: 0;
}

.news-post-date {
    font-size: 12px;
    color: #888888;
    margin-bottom: 6px;
}

.news-post-date i {
    color: #088222;
    margin-right: 4px;
}

/* Pagination */
.pagination-wrapper {
    margin: 30px 0 10px;
    text-align: center;
}

.pagination-wrapper ul,
.pagination-home ul,
ul.pagination {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    gap: 6px;
}

.pagination-wrapper li,
.pagination-home li,
ul.pagination li {
    display: inline-block;
}

.pagination-wrapper li a,
.pagination-wrapper li span,
.pagination-home li a,
.pagination-home li span,
ul.pagination li a,
ul.pagination li span {
    display: block;
    padding: 8px 14px;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    color: #333333;
    font-family: 'Roboto-Bold', sans-serif;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.pagination-wrapper li.active a,
.pagination-wrapper li.active span,
.pagination-home li.active a,
.pagination-home li.active span,
ul.pagination li.active a,
ul.pagination li.active span,
.pagination-wrapper li a:hover,
.pagination-home li a:hover,
ul.pagination li a:hover {
    background: #088222;
    border-color: #088222;
    color: #ffffff;
}

/* Breadcrumb */
.breadCrumbs {
    background: #f5f5f5;
    padding: 10px 0;
    margin-bottom: 25px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 13.5px;
    width: 100%;
}

.breadCrumbs .wrap-content {
    max-width: 1200px;
    width: 98%;
    margin: 0 auto;
}

ol.breadcrumb,
.breadcrumb {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

li.breadcrumb-item,
.breadcrumb-item {
    display: inline-flex !important;
    align-items: center !important;
    color: #555555;
    font-size: 13.5px;
}

li.breadcrumb-item a,
.breadcrumb-item a {
    color: #444444;
    text-decoration: none;
    transition: color 0.2s;
}

li.breadcrumb-item a:hover,
.breadcrumb-item a:hover {
    color: #088222;
}

li.breadcrumb-item+li.breadcrumb-item::before,
.breadcrumb-item+.breadcrumb-item::before {
    content: "/" !important;
    display: inline-block !important;
    padding: 0 8px !important;
    color: #888888 !important;
}

li.breadcrumb-item.active a,
li.breadcrumb-item.active span,
.breadcrumb-item.active a,
.breadcrumb-item.active span {
    color: #088222;
    font-weight: 500;
}

/* Product Detail */
.inner-product-detail {
    background: #ffffff;
}

.product-detail-wrapper {
    display: flex;
    gap: 35px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.product-detail-media {
    width: 420px;
    max-width: 45%;
    flex-shrink: 0;
}

.product-main-photo {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #ffffff;
    text-align: center;
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-photo .MagicZoom,
.product-main-photo .product-zoom-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

.product-detail-img {
    max-width: 100%;
    max-height: 360px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: auto;
    display: block;
}

.product-gallery-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-gallery-thumbs .thumb-link {
    width: 70px;
    height: 70px;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    overflow: hidden;
    display: inline-block;
    padding: 2px;
}

.product-gallery-thumbs .thumb-link.active,
.product-gallery-thumbs .thumb-link:hover {
    border-color: #088222;
}

.product-gallery-thumbs .thumb-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info {
    flex: 1;
    min-width: 0;
}

.product-detail-title {
    font-size: 24px;
    font-family: 'Roboto-Bold', sans-serif;
    color: #111111;
    margin: 0 0 16px;
    line-height: 1.35;
}

.product-info-row {
    margin-bottom: 12px;
    font-size: 15px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.info-label {
    font-family: 'Roboto-Medium', sans-serif;
    color: #555555;
}

.product-code {
    font-family: 'Roboto-Bold', sans-serif;
    color: #088222;
}

.product-price-row {
    margin: 18px 0;
    padding: 12px 16px;
    background: #f9f9f9;
    border-radius: 6px;
}

.price-highlight {
    font-size: 22px;
    font-family: 'Roboto-Bold', sans-serif;
    color: #ca0000;
}

.product-detail-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #444444;
    margin: 20px 0;
    padding-bottom: 18px;
    border-bottom: 1px solid #eeeeee;
}

.product-detail-actions {
    margin-top: 20px;
}

.btn-call-order {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #088222;
    color: #ffffff;
    font-family: 'Roboto-Bold', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-call-order:hover {
    background: #d80008;
    color: #ffffff;
}

.product-detail-tabs {
    margin-bottom: 40px;
}

.product-detail-tabs .tab-header {
    border-bottom: 2px solid #088222;
    margin-bottom: 20px;
}

.product-detail-tabs .tab-title {
    display: inline-block;
    background: #088222;
    color: #ffffff;
    font-size: 16px;
    font-family: 'UTM HelvetIns', sans-serif;
    text-transform: uppercase;
    padding: 10px 20px;
    margin: 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    font-weight: 400;
}

.product-content-text {
    line-height: 1.7;
    font-size: 14.5px;
    color: #222222;
}

.product-content-text p {
    margin-bottom: 12px;
}

.product-content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 10px 0;
}

/* Article Detail */
.inner-article-detail {
    background: #ffffff;
}

.article-header {
    margin-bottom: 25px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e1e1e1;
}

.article-title {
    font-size: 26px;
    font-family: 'Roboto-Bold', sans-serif;
    color: #111111;
    line-height: 1.35;
    margin: 0 0 10px;
}

.article-meta {
    font-size: 13px;
    color: #888888;
    display: flex;
    gap: 18px;
    margin-bottom: 14px;
}

.meta-item i {
    color: #088222;
    margin-right: 4px;
}

.article-summary {
    font-size: 15px;
    font-family: 'Roboto-Medium', sans-serif;
    line-height: 1.6;
    color: #333333;
    background: #f7fbf7;
    border-left: 4px solid #088222;
    padding: 12px 16px;
    border-radius: 0 4px 4px 0;
}

.article-content-body {
    line-height: 1.75;
    font-size: 15px;
    color: #222222;
    margin-bottom: 40px;
}

.article-content-body p {
    margin-bottom: 14px;
}

.article-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 10px auto;
    display: block;
}

.related-articles-section {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: 6px;
}

.related-heading {
    font-size: 16px;
    font-family: 'Roboto-Bold', sans-serif;
    color: #088222;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.related-heading i {
    margin-right: 6px;
}

.related-articles-list {
    margin: 0;
    padding: 0;
}

.related-article-item {
    padding: 8px 0;
    border-bottom: 1px dashed #e1e1e1;
    font-size: 14px;
}

.related-article-item:last-child {
    border-bottom: none;
}

.related-article-item i {
    color: #088222;
    margin-right: 6px;
}

.related-article-link {
    color: #222222;
    font-family: 'Roboto-Medium', sans-serif;
    transition: color 0.3s;
}

.related-article-link:hover {
    color: #d80008;
}

.related-date {
    color: #888888;
    font-size: 12px;
    margin-left: 6px;
}

/* Responsive for 4-column and Inner Pages */
@media (max-width: 1024px) {
    .products-grid-4col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .products-grid-4col {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .inner-services-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-wrapper {
        flex-direction: column;
    }

    .product-detail-media {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .products-grid-4col {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* --------------------------------------------------------------------------
   17. Contact Page
   -------------------------------------------------------------------------- */
.inner-contact-page {
    background: #ffffff;
    padding-bottom: 20px;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-bottom: 35px;
}

.contact-col-title {
    font-size: 18px;
    font-family: 'UTM HelvetIns', sans-serif;
    color: #088222;
    text-transform: uppercase;
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #088222;
}

.contact-info-content {
    line-height: 1.7;
    font-size: 14px;
    color: #333333;
}

.contact-direct-info p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
}

.contact-direct-info i {
    color: #088222;
    width: 20px;
    text-align: center;
    margin-right: 6px;
}

.contact-direct-info a {
    color: #088222;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-direct-info a:hover {
    color: #d80008;
}

.contact-form-main {
    background: #f9f9f9;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 24px;
}

.form-row-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form-field-item {
    margin-bottom: 14px;
}

.form-field-label {
    display: block;
    font-size: 13px;
    font-family: 'Roboto-Medium', sans-serif;
    color: #444444;
    margin-bottom: 6px;
}

.form-field-label i {
    color: #088222;
    margin-right: 4px;
}

.text-danger {
    color: #d80008;
}

.form-field-input,
.form-field-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 13.5px;
    font-family: 'Roboto-Regular', sans-serif;
    color: #333333;
    background: #ffffff;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-field-input:focus,
.form-field-textarea:focus {
    border-color: #088222;
    box-shadow: 0 0 0 3px rgba(8, 130, 34, 0.15);
}

.form-field-textarea {
    resize: vertical;
}

.form-actions-row {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.btn-submit-contact {
    background: #088222;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 11px 24px;
    font-family: 'Roboto-Bold', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-submit-contact:hover {
    background: #d80008;
}

.btn-reset-contact {
    background: #777777;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 11px 20px;
    font-family: 'Roboto-Medium', sans-serif;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s;
}

.btn-reset-contact:hover {
    background: #555555;
}

/* Contact Map */
.contact-map-section {
    margin-top: 30px;
}

.contact-map-title {
    font-size: 18px;
    font-family: 'UTM HelvetIns', sans-serif;
    color: #088222;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.contact-map-title i {
    margin-right: 6px;
}

.contact-map-frame {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e1e1e1;
}

.contact-map-frame iframe {
    width: 100% !important;
    height: 420px !important;
    border: 0 !important;
    display: block;
}

@media (max-width: 800px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .form-row-dual {
        grid-template-columns: 1fr;
        gap: 0;
    }
}