/* Loại bỏ khoảng trắng mặc định của toàn trang */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    overflow-x: hidden; /* Ngăn chặn cuộn ngang nếu có phần tử tràn ra ngoài */
}

/* Đảm bảo mọi phần tử tính toán kích thước chuẩn xác */
* {
    box-sizing: border-box;
}

/* Ép Header tràn viền tuyệt đối */
.site-header {
    width: 100% !important;
    left: 0;
    right: 0;
}

/* Ép Footer tràn viền tuyệt đối */
.site-footer {
    width: 100% !important;
    margin: 0;
}
.site-header {
    background-color: #1D1D1D; /* Đồng bộ màu với Footer */
    width: 100%;
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid #333;
}

.header-full-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px; /* Padding đồng bộ với Footer */
    box-sizing: border-box;
}

.logo {
    font-family: 'Arial Black', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #FFFFFF; /* Chữ trắng trên nền đen */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.logo span {
    background: linear-gradient(90deg, #FFAD06 0%, #FF6600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li { margin-left: 30px; }

.nav-menu li a {
    text-decoration: none;
    color: #AAAAAA; /* Màu xám nhẹ giống footer links */
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-menu li a:hover { color: #FFFFFF; }

.btn-contact {
    background: linear-gradient(90deg, #FFAD06 0%, #FF6600 100%);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 4px;
}