*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
}
html {
    scroll-behavior: smooth;
}
:root {
  --primary-color: #ff6600;
  --secondary-color: #0055ff;
  --text-color: #E7191F;
}
.page-img{
    height: 400px!important;
}
.new-prod-header {
    margin-bottom: 50px;
    position: relative;
}
.ab-en-title {
    font-size: 70px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #686D7C;
}
.line-title {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-top: 1rem;
    gap: 0 0.5rem;
}
.first-letter {
    color: var(--text-color);
    font-weight: 700;
    transform: translateY(4px);
}
.ab-jp-title {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}
.ab-line {
    width: auto;
    height: 1px;
    background-color: #ccc;
    flex-grow: 1;
    margin: 0;
}
.new-prod-header, .about-header-group {
    margin-bottom: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
}
.overlay-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #251f1d7d;
    z-index: 2;
}
        /* --- CSS CHO NỘI DUNG WEB (Ví dụ) --- */
.scroll-up-btn {
    position: fixed;
    height: 60px;
    width: 60px;
    right: 35px;
    bottom: 10px;
    text-align: center;
    font-size: 30px;
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100rem;
    background: #eeeeeeb0;
    backdrop-filter: blur(3px);
    flex-direction: column;
    gap: 5px 0;
}

.scroll-up-btn.show {
    bottom: 50px;
    opacity: 1;
    pointer-events: auto;
}

.scroll-up-btn:hover {
    transform: translateY(-7px) scale(1, 1);
    background: #f74044;
}

.scroll-up-btn:hover span {
    color: #fff;
}

.scroll-up-btn img {
    transform: rotate(270deg);
    height: 25px;
}

.scroll-up-btn:hover svg path {
    fill: #fff;
}

.scroll-up-btn span {
    font-size: .9rem;
    color: #a52025;
}
/* ----------------------------------------------------Header--------- */
/* --- CSS CHO MOBILE MENU MỚI --- */

/* Cho phép cuộn dọc nếu menu quá dài */
.global-menu {
    overflow-y: auto; 
}

/* Reset lại style của list để không bị ảnh hưởng bởi PC */
.global-menu ul {
    display: block;
    width: 80%;
    padding: 20px;
    box-sizing: border-box;
}

.global-menu li {
    display: block;
    width: 100%;
    margin: 0;
    opacity: 1 !important; /* Ghi đè hiệu ứng fade cũ để hiển thị ngay */
    transform: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

/* Wrapper để chứa text và mũi tên nằm cùng hàng */
.link-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Style cho link chính */
.global-menu a {
    display: block;
    padding: 20px 0;
    font-size: 18px; /* Chỉnh lại size cho vừa mobile */
    text-align: left;
    width: 100%;
    color: #fff;
    text-decoration: none;
}
.global-menu a::after { display: none; } /* Bỏ gạch chân hover cũ */

/* --- NÚT MŨI TÊN (Toggle) --- */
.mobile-toggle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-left: 1px solid rgba(255,255,255,0.1);
}

/* Vẽ mũi tên bằng CSS */
.mobile-toggle::before {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg); /* Mũi tên trỏ xuống */
    transition: transform 0.3s ease;
    margin-top: -5px;
}

/* Khi đang mở thì xoay mũi tên lên */
.mobile-toggle.is-open::before {
    transform: rotate(225deg);
    margin-top: 5px;
}

/* --- MENU CON (Sub Menu Mobile) --- */
.sub-menu-mobile {
    /* Thay vì display: none, ta dùng max-height để làm animation */
    max-height: 0; 
    overflow: hidden; /* Ẩn nội dung khi chiều cao = 0 */
    transition: max-height 0.4s ease-out; /* Hiệu ứng trượt mượt trong 0.4s */
    
    background-color: rgba(0, 0, 0, 0.2);
    padding-left: 20px !important;
    list-style: none;
}

.sub-menu-mobile li {
    border-bottom: none;
}

.sub-menu-mobile a {
    font-size: 15px;
    padding: 10px 0;
    color: #ddd;
    display: block; /* Đảm bảo link chiếm dòng */
}
/* ----------------------------------------------------Header--------- */
.header-bar {
    position: fixed;
    top: 30px;
    left: 50%;
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 30px;
    z-index: 9999;
    transition: all 0.4s ease;
    box-sizing: border-box;
    background: #ffffffa6;
    border-radius: 100rem;
    height: 65px;
    margin: 0 auto;
    transform: translateX(-50%);
}

/* --- TRẠNG THÁI KHI CUỘN (Scrolled) --- */
.header-bar.is-scrolled {
    background-color: rgba(255, 255, 255, 0.75); /* Nền trắng (hơi mờ nhẹ) */
    height: 65px; /* Thu nhỏ chiều cao thanh header */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Bóng đổ nhẹ */
}
.logo-wrapper {
    position: static;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0 10px;
    font-size: 1rem;
    transition: 0.5s ease;
}

.logo-wrapper img {
    height: 45px; /* Chiều cao logo ban đầu */
    width: auto;
    transition: all 0.4s ease;
}
.logo-st{
        display: flex;
    align-items: center;
    gap: 0 0.5rem;
    text-decoration: none;
    color: inherit;
}
.logo-st:hover{
   opacity: 1!important; 
}
.hero-header {
            position: relative;
            width: 100%;
            height: 100vh; /* Full chiều cao màn hình */
            overflow: hidden;
        }

.menu-btn {
    position: fixed;
    top: 0;
    right: 0;
    width: 80px;
    height: 65px;
    background-color: #e94f45;
    border: none;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 5px;
    transition: background-color 0.3s;
    display: none;
}

/* Định dạng 3 dòng kẻ */
.menu-btn span {
    display: block;
    width: 40px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    /* Đẩy 3 gạch lên phía trên để nhường chỗ cho chữ */
    top: 45%; 
    transition: all 0.4s ease-in-out;
}
.menu-text {
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Noto Sans JP', sans-serif;
}
.menu-btn span:nth-child(1) { transform: translateY(-10px); }
.menu-btn span:nth-child(2) { transform: translateY(0); }
.menu-btn span:nth-child(3) { transform: translateY(10px); }

/* --- TRẠNG THÁI ACTIVE (Khi đã click) --- */
/* Đổi màu nền nút khi mở menu (tùy chọn) */
.menu-btn.active {
    background-color: #333; 
}

/* Biến hình thành dấu X */
.menu-btn.active span:nth-child(1) {
    top: 40%; /* Căn lại vị trí tâm X */
    transform: translateY(0) rotate(45deg);
}
.menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.menu-btn.active span:nth-child(3) {
    top: 40%; /* Căn lại vị trí tâm X */
    transform: translateY(0) rotate(-45deg);
}
/* --- CSS CHO MENU PC (Hiển thị giống ảnh mẫu) --- */
/* --- CSS CHO MENU PC (Hiển thị giống ảnh mẫu) --- */
.pc-nav {
    margin-left: auto; /* Đẩy menu về phía bên phải */
}

.pc-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 45px;
}
.pc-nav li a {
    text-decoration: none;
    color: #363636;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif;
    transition: color 0.3s ease;
    padding: 8px 0; /* Tăng padding chút cho thoáng */
    position: relative; /* Quan trọng để định vị đường kẻ */
    display: inline-block;
}

/* Tạo đường kẻ bằng ::before */
.pc-nav li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px; /* Độ dày đường kẻ */
    background-color: #c1192b; /* Màu xanh */
    
    /* Trạng thái ban đầu: Co lại còn 0 */
    transform: scaleX(0);
    transform-origin: center; /* Điểm bắt đầu ở giữa */
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1); /* Chuyển động mượt */
}

.pc-nav li a:hover {
    color: #a01e21;
}

.pc-nav li a:hover::before {
    transform: scaleX(1); /* Phóng to ra 100% */
}
/* =========================================
   DROPDOWN MENU (PC NAV)
   ========================================= */

/* 1. Thiết lập vị trí cho thẻ cha li */
.pc-nav li {
    position: relative; /* Để menu con neo vị trí theo thẻ này */
}

/* 2. Tạo Icon mũi tên đi xuống (dùng CSS) */
.pc-nav li.has-child > a {
    padding-right: 15px; /* Chừa chỗ cho icon */
    position: relative;
}

.pc-nav li.has-child > a::after {
    content: '';
    position: absolute;
    top: 45%;
    right: 0;
    width: 6px;
    height: 6px;
    border-right: 2px solid #333; /* Màu mũi tên */
    border-bottom: 2px solid #333;
    transform: translateY(-50%) rotate(45deg); /* Xoay thành hình mũi tên xuống */
    transition: transform 0.3s;
}

/* Khi hover thì xoay mũi tên lên */
.pc-nav li.has-child:hover > a::after {
    transform: translateY(-20%) rotate(225deg);
    border-color: #4f4f4f; /* Đổi màu xanh khi hover */
}

/* 3. Style cho Menu con (Sub-menu) */
.sub-menu {
    position: absolute;
    top: 150%; /* Đẩy xuống dưới một chút (ẩn đi) */
    left: 50%;
    transform: translateX(-50%); /* Căn giữa so với menu cha */
    width: 150px; /* Độ rộng menu con */
    background-color: rgb(255 0 0 / 72%);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    
    /* Trạng thái ẩn mặc định */
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    flex-direction: column; /* Xếp dọc */
    gap: 0 !important; /* Reset gap của ul cha */
    transition: all 0.3s ease;
}

/* Mũi tên nhỏ trỏ lên từ menu con (Trang trí - Tùy chọn) */
.sub-menu::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
}

.pc-nav li.has-child:hover .sub-menu {
    top: 43px;
    opacity: 1;
    visibility: visible;
}

/* 5. Style cho các link bên trong menu con */
.sub-menu li {
    width: 100%;
}

.sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #ffffff;
    text-align: center; /* Hoặc left tùy ý */
    border-bottom: 1px dashed #eee;
    white-space: nowrap; /* Không xuống dòng */
}

.sub-menu li:last-child a {
    border-bottom: none;
}

/* Hover vào mục con */
.sub-menu li a:hover {
    background-color: #f4f9ff;
    color: #e8302e;
    border-bottom: 1px dashed #eee; /* Giữ border không bị đổi màu */
}

/* FIX LỖI MÀU CHỮ KHI SCROLL */
/* Khi header chuyển sang màu trắng, đảm bảo icon mũi tên cũng đổi màu cho phù hợp */
.header-bar.is-scrolled .pc-nav li.has-child > a::after {
    border-color: #004098;
}
/* --- MENU OVERLAY (Màn hình menu xanh/đen) --- */
.global-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #2e2e2e; /* Màu xanh giống Toyota Battery */
    z-index: 9990; /* Nhỏ hơn nút menu */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.5s ease;
}

/* Khi thêm class 'active' thì hiện menu */
.global-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Trang trí nội dung bên trong menu */
.menu-inner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu-inner ul {
    list-style: none;
    padding: 0;
    text-align: center;
}
.menu-inner li {
    margin: 10px 0;
    transform: translateY(20px); /* Đẩy xuống dưới để tạo hiệu ứng trượt lên */
    opacity: 0;
    transition: all 0.5s ease;
}
.menu-inner a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
}

/* Hiệu ứng gạch chân khi di chuột vào link */
.menu-inner a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #d9a62e; /* Màu vàng */
    transition: width 0.3s;
    margin: 5px auto 0;
}
.menu-inner a:hover::after {
    width: 100%;
}

/* Hiệu ứng delay cho từng dòng menu bay lên (Stagger effect) */
.global-menu.active li {
    transform: translateY(0);
    opacity: 1;
}
.global-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.global-menu.active li:nth-child(2) { transition-delay: 0.2s; }
.global-menu.active li:nth-child(3) { transition-delay: 0.3s; }
.global-menu.active li:nth-child(4) { transition-delay: 0.4s; }
.global-menu.active li:nth-child(5) { transition-delay: 0.5s; }

  
/* Ghi đè hiệu ứng fade-right mặc định */
[data-aos="fade-right"].custom-fade {
    transform: translate3d(-30px, 0, 0);
}




/* -------------------------------------------------------Contact-Group  */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.new-contact-style {
    position: relative;
    width: 100%;
    min-height: 500px; /* Tăng chiều cao để thoáng hơn */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Sans JP', sans-serif;
    overflow: hidden; /* Cắt phần thừa */
}

.contact-bg-image {
    /* Đảm bảo ảnh nằm full khung và cắt bỏ phần thừa khi zoom */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* QUAN TRỌNG: Ẩn phần ảnh tràn ra ngoài */
    z-index: 0;
}

/* 2. Thiết lập cho chính tấm ảnh bên trong */
.contact-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Giữ tỷ lệ ảnh đẹp, lấp đầy khung */
    /* Tạo độ mượt khi thay đổi kích thước */
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); 
    /* Dùng cubic-bezier để hiệu ứng "lướt" đẹp hơn linear thường */
}

/* 3. Kích hoạt hiệu ứng khi Hover */
/* Lưu ý: Ta nên bắt sự kiện hover vào cha lớn nhất (.contact-cta-section) 
   để khi người dùng di chuột vào phần chữ bên trên, ảnh nền vẫn zoom */
.contact-cta-section:hover .contact-bg-image img {
    transform: scale(1.1); /* Phóng to lên 110% */
}
/* Lớp phủ tối để làm nổi bật hộp xanh (nếu cần) */
.bg-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.2); 
}

/* Container định vị */
.new-contact-style .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
}

.contact-blue-box {
    background-color: rgb(231 25 31 / 65%);
    padding: 80px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
/* --- CỘT TRÁI --- */
.contact-left-col {
    flex: 1;
}

.contact-en-title {
    font-size: 64px; /* Chữ CONTACT rất lớn */
    font-weight: 700;
    margin: 0;
    line-height: 1;
    letter-spacing: 0.02em;
    color: #fff;
}

.contact-sub-row {
    display: flex;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 25px;
}

/* Dòng kẻ trắng dài */
.contact-line {
    width: 280px; 
    height: 1px;
    background-color: #fff;
    margin-right: 20px;
    opacity: 0.8;
}

.contact-jp-title {
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.contact-desc {
    font-size: 15px;
    margin: 0;
    opacity: 0.9;
    font-weight: 400;
}

/* --- CỘT PHẢI (NÚT VIÊN THUỐC) --- */
.contact-right-col {
    margin-left: 60px;
}

/* Nút hình viên thuốc (Pill Button) */
.phone-pill-btn {
    display: flex;
    align-items: center;
    background-color: #f2f4f8; /* Nền trắng hơi xám nhẹ (Ice White) */
    border-radius: 100px; /* Bo tròn hoàn toàn */
    padding: 15px 40px 15px 15px; /* Padding phải rộng để cân đối */
    text-decoration: none;
    color: #2a3396; /* Màu chữ xanh đậm trùng màu nền hộp */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 380px; /* Đảm bảo độ rộng */
}

/* Hiệu ứng Hover nút */
.phone-pill-btn:hover {
    transform: scale(1.03); /* Phóng to nhẹ */
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Icon điện thoại */
.phone-icon-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.phone-icon-circle svg {
    width: 50px;
    height: 50px;
    fill: #d42831;
}
/* Nhóm chữ trong nút */
.phone-text-group {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 13px;
    line-height: 1.4;
    color: #2b2b2b;
    margin-bottom: 2px;
}

.phone-number {
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
    font-family: sans-serif;
    letter-spacing: 0.05em;
    color: #363636;
}
.sub-hero-bg{
    position: relative;
    height: 400px;
}
/* ----------------------------------------------------------- FOOTER SECTION --- */
/* =========================================
   NEW FOOTER STYLE
   ========================================= */
.container-footer{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.site-footer {
    background-color: #251F1D;
    color: #fff;
    padding: 80px 0 10px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.site-footer a:hover {
    opacity: 0.7;
}
.footer-logo{
    max-width: 80px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* --- CỘT TRÁI: THÔNG TIN CÔNG TY --- */
.footer-company-info {
    width: 30%; /* Chiếm 30% chiều rộng */
}

.footer-company-name {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 20px 0;
    letter-spacing: 0.05em;
}

.footer-address {
    font-style: normal;
    line-height: 1.8;
    font-size: 16px;
    opacity: 0.9;
    margin-top: 1rem;
}

/* --- CỘT PHẢI: NAVIGATION --- */
.footer-nav-menu {
    width: 65%; /* Chiếm 65% chiều rộng */
    display: flex;
    justify-content: space-between; /* Dàn đều các cột menu */
    align-items: flex-start;
}

.footer-nav-col {
    /* Khoảng cách giữa các cột */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Tiêu đề mục (Link hoặc Text) */
.nav-head-link,
.nav-head-text {
    font-size: 16px;
    font-weight: 500; /* Font mảnh vừa phải giống ảnh */
    display: block;
    color: #fff;
    letter-spacing: 0.05em;
}

/* Danh sách con (List) */
.footer-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-sub-list li {
    margin-bottom: 10px;
    padding-left: 15px; /* Chừa chỗ cho dấu chấm */
    position: relative;
}

.footer-sub-list li::before {
    content: "●";
    color: #E7191F;
    font-size: 10px;
    position: absolute;
    left: 0;
    top: 2px;
}

.footer-sub-list a {
    font-size: 13px;
    opacity: 0.8; /* Chữ danh sách con hơi mờ chút */
}

/* --- COPYRIGHT --- */
.footer-copyright {
    text-align: center;
    font-size: 12px;
    color: #ccc;
    margin-top: 40px;
}
.btn-contact-ring {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
    height: 90px;
    border-radius: 100rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 23px;
    text-decoration: none;
    color: #d80c18;
    background-color: #fff;
    border: 3px solid #fff;
    transition: all 0.3s ease;
    z-index: 1;
    width: 100%;
}

.btn-contact-ring::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    
    border: 2px solid #fff;
    
    /* --- RING CŨNG PHẢI TRÒN --- */
    border-radius: 100rem; 
    
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.btn-contact-ring:hover {
    background-color: #fff;
    color: #bd0a15;
}

.btn-contact-ring:hover::before {
    opacity: 1;
    transform: scale(1.04);
    border-width: 4px;
}

@media (min-width: 1300px){
    .pc-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 80px;
}

}
/* --- RESPONSIVE (Mobile) --- */
@media (max-width: 992px) {
.sub-hero-bg img {
    background-position: center center;
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.header-bar {
    width: 100%;
    top: 0;
    border-radius: 0;
    padding: 0 15px;
    height: 60px;
}
.page-img {
    height: 280px!important;
}
.header-bar.is-scrolled {
    height: 60px;
}
.contact-blue-box {
    align-items: flex-start;
    padding: 40px 30px;
    gap: 0 2rem;
}
    .contact-right-col {
        margin-left: 0;
        margin-top: 40px;
        width: 100%;
    }

    .phone-pill-btn {
        width: 100%;
        min-width: auto;
        justify-content: center; /* Căn giữa nội dung nút */
    }

    .contact-en-title {
        font-size: 48px;
    }
    
    .contact-line {
        width: 100px; /* Rút ngắn dòng kẻ trên mobile */
    }

.contact-right-col {
    margin-left: 0;
    margin-top: 40px;
    width: 50%;
}
.phone-number {
    font-size: 25px;
}
    .phone-pill-btn {
        width: 100%;
        min-width: auto;
        justify-content: center; /* Căn giữa nội dung nút */
    }

    .contact-en-title {
        font-size: 48px;
    }
    
    .contact-line {
        width: 100px; /* Rút ngắn dòng kẻ trên mobile */
    }
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-company-info {
        width: 100%;
        text-align: left;
    }

    .footer-nav-menu {
        width: 100%;
        flex-wrap: wrap; /* Cho phép xuống dòng */
        gap: 30px;
        justify-content: flex-start;
    }

    .footer-nav-col {
        width: auto; /* Trên tablet/mobile chia thành 2 cột */
    }
    .footer-info, .footer-nav {
        width: 100%; /* Trên tablet/mobile thì full chiều rộng */
    }
    
    /* Chuyển grid 4 cột thành 2 cột trên tablet */
    .footer-nav {
        grid-template-columns: repeat(2, 1fr); 
        margin-bottom: 30px;
    }

    /* 2. Ẩn menu ngang của PC đi */
    .pc-nav {
        display: none;
    }

    /* 3. Điều chỉnh Header bar nếu cần */
    .header-bar {
        padding-right: 0;  
    }
.menu-btn {
    height: 60px;
    width: 60px;
    display: flex;
}
}

/* =======================================================
   RESPONSIVE MOBILE (Dán vào cuối file all.css)
   ======================================================= */
@media (max-width: 767.98px) {
    /* --- 1. HEADER BAR --- */
    .header-bar {
        width: 100%;        /* Full màn hình */
        top: 0;             /* Dính sát lên trên cùng */
        border-radius: 0;   /* Bỏ bo tròn kiểu viên thuốc */
        padding: 0 15px;    /* Giảm padding 2 bên */
        height: 60px;       /* Chiều cao cố định nhỏ hơn */
    }

    /* Thu nhỏ logo trên mobile */
    .logo-wrapper img {
        height: 35px;
    }

    /* Nút Menu Hamburger */
    .menu-btn {
        height: 60px;      /* Khớp với height của header-bar */
        width: 60px;
    }

    /* --- 2. SECTION HEADER (Tiêu đề lớn ở các section) --- */
    .new-prod-header {
        margin-bottom: 30px; /* Giảm khoảng cách dưới */
    }
    .ab-en-title {
        font-size: 40px; /* Giảm từ 70px xuống 40px cho đỡ bị tràn */
    }
.line-title {
    justify-content: flex-end;
    margin-top: 5px;
}
    .ab-line {
        width: 80px; /* Rút ngắn dòng kẻ trang trí */
    }

    /* --- 3. FOOTER --- */
    .site-footer {
        padding: 40px 0;
    }
    .footer-content {
        flex-direction: column; /* Xếp dọc các cột */
        gap: 30px;
    }
    
    .footer-company-info, 
    .footer-nav-menu,
    .footer-nav-col {
        width: 100%; /* Chiếm hết chiều ngang */
    }
    
    .footer-nav-menu {
        flex-direction: column; /* Menu con cũng xếp dọc */
        gap: 20px;
    }
.phone-number {
    font-size: 23px;
}
    .footer-nav-menu {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 cột bằng nhau */
        gap: 20px;
    }
    
    /* 製品紹介 và 工場紹介 mỗi cái 1 cột */
    .footer-nav-col:nth-child(2) { /* 製品紹介 */
        grid-column: 1;
    }
    
    .footer-nav-col:nth-child(3) { /* 工場紹介 */
        grid-column: 2;
    }
.contact-blue-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
}
.contact-right-col {
    margin-left: 0;
    margin-top: 40px;
    width: 100%;
}
.hero-header.page-img {
    height: 250px !important;
}
.page-title-txt .main-title {
    font-size: 32px!important;
}
.tagline-small {
    font-weight: 600;
    padding-bottom: 0.5rem!important;
}
.title-all-color{
    font-size: 40px!important;
}
.title-small {
    font-size: 1rem!important;
    padding: 0.7rem 0!important;
}
.sub-hero-bg {
    position: relative;
    height: 250px;
}







}



