/* ====================================================
   Back to top button
   ==================================================== */
.backtotop {
    cursor: pointer;
    background: var(--color-3);
    bottom: 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 2px;
    position: fixed;
    right: 12px;
    text-align: center;
    text-transform: uppercase;
    width: 40px;
    z-index: 999;
    border-radius: 4px;
    border: 1px solid #FFF;
}

.backtotop svg {
    width: 26px;
    height: 18px;
    margin-bottom: -1px;
}

.backtotop svg path {
    stroke: #fff;
}

/* ====================================================
   Support Widget / Contact Panel
   ==================================================== */
.support-widget {
    position: fixed;
    bottom: 69px;
    right: 15px;
    z-index: 9999;
}

.trigger-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-5);
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 167, 84, 0.4);
    transition: transform 0.2s;
}

.trigger-btn:hover {
    transform: scale(1.05);
}

.trigger-btn .icon-bvc-member img {
    /* width: 34px;
    height: 34px; */
    border-radius: 50%;
    object-fit: cover;
}

.trigger-btn .icon-close-main {
    display: none;
    width: 22px;
    height: 22px;
    fill: #111;
}

.trigger-btn.active .icon-bvc-member {
    display: none;
}

.trigger-btn.active .icon-close-main {
    display: block;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--color-5);
    animation: pulse-ring 2s ease-out infinite;
    pointer-events: none;
}

.pulse-ring:nth-child(2) {
    animation-delay: 0.8s;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.contact-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: #1a1c22;
    border: 1px solid rgba(212, 167, 84, 0.3);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.contact-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--color-3);
    color: #fff;
}

.panel-title {
    display: grid;
    grid-template-columns: 38px auto;
    align-items: center;
    gap: 10px;
}

.panel-avatar img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.panel-info h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    /* color: #111; */
}

.panel-info span {
    font-size: 11px;
    /* color: #333; */
    display: flex;
    align-items: center;
    gap: 4px;
}

.online-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2ecc71;
    display: inline-block;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.panel-greeting {
    padding: 14px 16px;
    font-size: 13px;
    color: #bbb;
    margin: 0;
    border-bottom: 1px solid #2a2c32;
}

.contact-list {
    padding: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #eee;
    transition: background 0.2s;
    gap: 10px;
}

.contact-item:hover {
    background: rgba(212, 167, 84, 0.1);
    text-decoration: none;
}

.contact-item .icon-wrap {
    flex-shrink: 0;
}

.contact-item .icon-wrap img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
}

.contact-text strong {
    font-size: 16px;
    font-weight: 600;
    color: #eee;
}

.contact-text p {
    font-size: 13px;
}

.contact-arrow {
    margin-left: auto;
    color: var(--color-5);
    font-size: 20px;
}



footer.footer {
    padding: 50px 0 40px;
    background: var(--color-3);
    color: #fff;
    --gutter: 15px;
}

.footer-section {
    color: #fff;
}

.logo-section .image {
    max-width: 80px;
    margin-bottom: 15px;
}

/* Hide broken logo image */
.footer-section.logo-section img[src*="logo-M7hxYXud"] {
    display: none !important;
}

/* Left Column List Styling */
.footer-section.logo-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section.logo-section ul li {
    position: relative;
    padding-left: 0;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
}

.footer-section.logo-section ul li::before {
    display: none;
}

.footer-section.logo-section ul li strong {
    font-weight: bold;
    color: #fff;
}

/* Title Underlines */
.footer-right .row>.clm:nth-child(1) .footer-section h2,
.footer-right .row>.clm:nth-child(2) .footer-section h2 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-right .footer-section h2::after,
.footer-right .footer-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 2px;
    background-color: #fff;
}

.dk-nhantin .footer-section h2 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

/* Middle Column Dot Bullets */
.footer-right .row>.clm:nth-child(1) .footer-section ul,
.footer-right .row>.clm:nth-child(2) .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-right .row>.clm:nth-child(1) .footer-section ul li,
.footer-right .row>.clm:nth-child(2) .footer-section ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.footer-right .row>.clm:nth-child(1) .footer-section ul li::before,
.footer-right .row>.clm:nth-child(2) .footer-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: #fff;
    border-radius: 50%;
}

.footer-right .row>.clm:nth-child(1) .footer-section ul li a,
.footer-right .row>.clm:nth-child(2) .footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-right .row>.clm:nth-child(1) .footer-section ul li a:hover,
.footer-right .row>.clm:nth-child(2) .footer-section ul li a:hover {
    color: var(--color-4);
}

/* Newsletter Registration Specific */
.dk-nhantin p {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.dk-nhantin form {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 30px;
    padding: 4px 6px 4px 20px;
    height: 48px;
    margin-top: 15px;
    margin-bottom: 20px;
    max-width: 100%;
}

.dk-nhantin form input[type="text"] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #333;
    padding: 0 10px 0 0;
    height: 100%;
}

.dk-nhantin form input[type="text"]::placeholder {
    color: #888;
}

.dk-nhantin form button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    transition: transform 0.2s ease;
}

.dk-nhantin form button:hover {
    transform: scale(1.1);
}

.dk-nhantin form button svg {
    width: 24px;
    height: 24px;
    color: var(--color-4);
}

/* Social Connection (Injecting Title & Formatting Icons) */
.social-link .flex-center {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    /* margin-top: 20px; */
}

.social-link .flex-center span {
    text-transform: uppercase;
    font-weight: bold;
}


.social-link a.social-item {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: background-color 0.2s ease;
}

.social-link a.social-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.social-link a.social-item img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}


/* Copyright Bar styling */
.copyright {
    padding: 15px 0;
}

.copyright .inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 40px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 991px) {
    footer.footer {
        padding: 40px 0 25px;
    }

    .footer-section.logo-section {
        margin-bottom: 30px;
    }

    .footer-right {
        margin-top: 10px;
    }

    .social-link .flex-center {
        margin-top: 15px;
    }

    .logo-section .image {
        display: block;
        margin: 0 auto 15px;

    }
}

@media (max-width: 768px) {
    .social-link .flex-center {
        justify-content: flex-start;
    }

    footer.footer {
        --gutter: 10px;
    }
}

@media (max-width: 550px) {
    .copyright .inner {
        justify-content: center;
        text-align: center;
    }

    .copyright .copyright-text {
        font-size: 13px;
    }
}

/* Đối tác  */
.doi-tac-slider .slick-slide {
    margin: 0 8px;
    background-color: var(--color-2);
    padding: 5px;
    border-radius: 5px;
    height: auto;
}

.doi-tac-slider .slick-list {
    margin: 0 -8px;
}

.doi-tac-slider .item img {
    border-radius: 5px;
}

.doi-tac {
    background: linear-gradient(0deg, var(--color-3), var(--color-4));
    padding: 20px 0;
}

.doi-tac-slider .slick-dots li.slick-active {
    background-color: var(--color-5);
}

.logo-section {}