.header{

    background:white;

    box-shadow:0 2px 15px rgba(0,0,0,.08);

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:80px;

}

.logo img{

    height:80px;

    width:auto;

    display:block;

}


.menu{

    display:flex;

    gap:40px;

}

.menu a{

    text-decoration:none;

    color:#1d3557;

    font-size:17px;

    font-weight:600;

    transition:.3s;

}

.menu a:hover{

    color:#f39c12;

}

/* =========================
   MENU THẢ XUỐNG DỊCH VỤ
========================= */

.menu-item {
    position: relative;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 13px;
    transition: transform 0.25s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;

    width: 260px;
    padding: 10px 0;

    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(8, 37, 68, 0.16);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;

    color: #082544;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    color: #f5a900;
    background: #f6f8fb;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}
.menu-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #082544;
    font-weight: 700;
    cursor: pointer;
}