
        /* Footer Styles */
        .footerhtj_footer {
            background-color: #ffffff;
            border-top: 1px solid #e5e7eb;
            padding: 32px 5% 16px 5%;
        }

        .footerhtj_container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footerhtj_content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 16px;
        }

        /* Logo Section */
        .footerhtj_logo-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footerhtj_logo {
            width: 36px;
            height: auto;
        }

        .footerhtj_tagline {
            color: #6b7280;
            font-size: 14px;
            line-height: 1.8;
            max-width: 300px;
        }

        .footerhtj_contact {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 10px;
        }

        .footerhtj_contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #374151;
            font-size: 14px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footerhtj_contact-item:hover {
            color: #2563eb;
        }

        .footerhtj_contact-icon {
            width: 18px;
            height: 18px;
            color: #6b7280;
        }

        /* Footer Columns */
        .footerhtj_column {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footerhtj_column-title {
            font-size: 16px;
            font-weight: 600;
            color: #111827;
            margin-bottom: 5px;
        }

        .footerhtj_links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footerhtj_link {
            color: #6b7280;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease, padding-left 0.3s ease;
        }

        .footerhtj_link:hover {
            color: #2563eb;
            padding-left: 5px;
        }

        /* Social Media Section */
        .footerhtj_social {
            margin-top: 20px;
        }

        .footerhtj_social-links {
            display: flex;
            gap: 15px;
            margin-top: 10px;
        }

        .footerhtj_social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #f3f4f6;
            color: #374151;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .footerhtj_social-link:hover {
            background-color: #2563eb;
            color: #ffffff;
            transform: translateY(-3px);
        }

        /* Footer Bottom */
        .footerhtj_bottom {
            border-top: 1px solid #e5e7eb;
            padding-top: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footerhtj_copyright {
            color: #6b7280;
            font-size: 14px;
        }

        .footerhtj_bottom-links {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .footerhtj_bottom-link {
            color: #6b7280;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footerhtj_bottom-link:hover {
            color: #2563eb;
        }

        /* Tablet Breakpoint - Below 1200px */
        @media (max-width: 1200px) {
            .footerhtj_container{
                display: none;
                margin-bottom: 50px;
            }
            .footerhtj_footer {
                padding: 50px 5% 25px 5%;
                
            }

            .footerhtj_content {
                grid-template-columns: 1fr 1fr;
                gap: 35px;
            }

            .footerhtj_logo-section {
                grid-column: 1 / -1;
            }

            .footerhtj_bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        }

        /* Mobile Breakpoint - Below 768px */
        @media (max-width: 768px) {
            .footerhtj_container{
                display: none;
                
            }
            .footerhtj_footer {
                padding: 40px 5% 20px 5%;
               
            }

            .footerhtj_content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footerhtj_logo-section {
                grid-column: auto;
            }

            .footerhtj_logo {
                width: 150px;
            }

            .footerhtj_column-title {
                font-size: 15px;
            }

            .footerhtj_link,
            .footerhtj_contact-item,
            .footerhtj_copyright,
            .footerhtj_bottom-link {
                font-size: 13px;
            }

            .footerhtj_social-link {
                width: 36px;
                height: 36px;
            }

            .footerhtj_bottom-links {
                flex-direction: column;
                gap: 10px;
            }
        }


        /* ===== Mobile Footer ===== */
        .hjm_mobile_footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 64px;
            background: #ffffff;
            border-top: 1px solid #e6e6e6;
            display: flex;
            justify-content: space-between;
            align-items: center;
            /* padding: 0 6%; */
            z-index: 9999;
        }

        .hjm_item {
            width: 25%;
            text-align: center;
            font-size: 14px;
            color: #7e7e7e;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hjm_item img {
            width: 22px;
            height: 22px;
            margin-bottom: 4px;
        }

        .hjm_cta img {
            width: 28px;
            height: 28px;
        }

        .hjm_cta span {
            color: #2563eb; /* สีส้มหลัก */
            font-weight: 500;
        }

        /* ===== Hide on Desktop ===== */
        @media (min-width: 1200px) {
            .hjm_mobile_footer {
                display: none;
            }
        }
