/* Reset lề trình duyệt để tràn viền tuyệt đối */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* Ngăn hiện tượng thanh cuộn ngang */
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #f3f4f6;
    padding: 12px 0; /* Giảm nhẹ padding trên dưới cho thanh thoát */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    font-family: 'Be Vietnam Pro', sans-serif !important;
    width: 100%; /* Đảm bảo header chiếm toàn bộ chiều ngang */
}

.header-container {
    max-width: 100% !important; /* Ép buộc chiều rộng 100% */
    width: 100%;
    margin: 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Điều chỉnh padding này để logo và nút liên hệ sát mép theo ý bạn */
    padding: 0 20px; 
    box-sizing: border-box; /* Quan trọng: tính padding vào bên trong width */
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 26px;
    color: #f87316;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: -0.5px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px; /* Tăng khoảng cách giữa các menu cho thoáng */
    margin: 0;
    padding: 0;
}

.main-navigation a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-navigation a:hover {
    color: #f87316;
}

.header-cta .btn-contact {
    background: #f87316;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.header-cta .btn-contact:hover {
    background: #ea580c;
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .main-navigation { gap: 15px; } /* Thu hẹp menu trên màn hình nhỏ */
}

@media (max-width: 768px) {
    .main-navigation, .header-cta { display: none; }
}