:root {

    /* MAIN BRAND */
    --navy: #033631;
    /* màu phụ mới */
    --navy-2: #054840;

    --blue: #bf9b42;
    /* màu chính mới */
    --green: #d8b65d;

    /* SUPPORT */
    --cyan: #e3c777;
    --red: #8d6d1f;

    --text: #1f2937;
    --muted: #6b7280;

    --light: #faf8f2;

    --border: #efe6cf;

    --white: #ffffff;

}
/* NAVBAR — white bar per design */
.navbar {
    background: #fff;
    border-bottom: 1px solid #eef2f7;
    padding: 14px 0;
    box-shadow: 0 4px 24px rgba(3, 54, 49, .06);
}

.navbar-brand {
    font-size: 24px;
    font-weight: 900;
    color: var(--navy) !important;
    letter-spacing: -0.5px;
}

.brand-dot {
    color: var(--blue);
}

.brand-name {
    color: var(--blue);
    font-weight: 800;
}

.nav-link {
    color: #1e293b !important;
    font-weight: 600;
    margin: 0 8px;
    font-size: 15px;
    padding: 6px 4px 12px !important;
}

.nav-link:hover {
    color: var(--blue) !important;
}

.navbar-cta-desktop {
    flex-shrink: 0;
}

.btn-main {
    background: linear-gradient(135deg,
            #bf9b42,
            #d8b65d);
    color: white;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    border: none;
    box-shadow: 0 14px 30px rgba(191, 155, 66, .28);
    transition: .3s;
}

.btn-main:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(191, 155, 66, .38);
}

.btn-hero-primary {
    background: linear-gradient(135deg, #bf9b42, #d4a84a);
    color: #fff;
    padding: 13px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
    transition: .3s;
    white-space: normal;
    text-align: center;
}

.btn-hero-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, .22);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.text-gold {
    color: var(--green);
    font-weight: 800;
}

.text-quote {
    color: var(--green);
    font-weight: 700;
    font-style: italic;
}

@media(max-width:576px) {
    .navbar-brand {
        font-size: 20px;
    }
}

@media(max-width:991px) {
    .navbar-collapse {
        background: #fff;
        border: 1px solid #eef2f7;
        border-radius: 14px;
        margin-top: 12px;
        padding: 8px 12px 14px;
        box-shadow: 0 12px 32px rgba(3, 54, 49, .08);
    }

    .navbar-cta-desktop {
        display: none !important;
    }
}

.navbar-nav {
    margin-right: 24px;
    /* chỉnh 16–40px tùy ý */
}

/* active menu */
.active-menu {
    color: var(--blue) !important;
    font-weight: 700;
    position: relative;
}

.active-menu:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 3px;
    background: var(--blue);
    border-radius: 20px;
    animation: line .3s;
}

@keyframes line {

    from {
        transform: scaleX(0)
    }

    to {
        transform: scaleX(1)
    }

}