/* =========================================================
   LV.T LUXURY FOOTER CSS (GLOBAL SOURCE OF TRUTH)
   ========================================================= */

.lvt-footer {
    background: #070707;
    border-top: 1px solid rgba(212, 175, 55, 0.35);
    margin-top: 80px;
    color: #aaa;
}

.lvt-footer-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.lvt-footer-top {
    position: relative;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
    column-gap: 100px;
    width: 100%;
    padding: 65px 0 55px;
}

.lvt-footer-brand {
    width: 45%;
    flex: 0 0 45%;
    max-width: 420px;
}

.lvt-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 22px;
}

.lvt-footer-logo-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
}

.lvt-footer-logo-icon svg {
    width: 34px;
    height: 34px;
}

.lvt-footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.lvt-footer-logo-text strong {
    font-size: 22px;
    letter-spacing: 3px;
    color: #f5f5f5;
    font-weight: 700;
}

.lvt-footer-logo-text small {
    margin-top: 6px;
    font-size: 7px;
    letter-spacing: 1.5px;
    color: #d4af37;
}

.lvt-footer-brand > p {
    font-size: 14px;
    line-height: 1.8;
    color: #888;
    margin: 0;
}

.lvt-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.lvt-footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #292929;
    color: #aaa;
    text-decoration: none;
    transition: all 0.25s ease;
}

.lvt-footer-social a:hover {
    color: #d4af37;
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.06);
}

.lvt-footer-contact {
    position: static !important;
    width: 380px;
    max-width: 380px;
    margin: 0 !important;
    padding: 0 !important;
    min-width: 0 !important;
    justify-self: end;
}

.lvt-footer-contact h4 {
    margin: 0 0 24px 0;
    padding: 0;
    font-size: 17px;
    font-weight: 700;
    color: #f5f5f5;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.lvt-footer-contact h4::after {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    background: #d4af37;
    margin-top: 10px;
}

.lvt-footer-contact .lvt-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    width: 100%;
}

.lvt-footer-contact .lvt-contact-icon {
    box-sizing: border-box;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
}

.lvt-footer-contact .lvt-contact-item i,
.lvt-footer-contact .lvt-contact-item svg {
    color: #d4af37;
    font-size: 15px;
}

.lvt-footer-contact .lvt-contact-item i::before,
.lvt-footer-contact .lvt-contact-item i::after,
.lvt-footer-contact .lvt-contact-item svg::before,
.lvt-footer-contact .lvt-contact-item svg::after {
    border: none !important;
    box-shadow: none !important;
}

.lvt-footer-contact .lvt-contact-item > div {
    flex: 1;
    min-width: 0;
}

.lvt-footer-contact .lvt-contact-item small {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 3px;
}

.lvt-footer-contact .lvt-contact-item p {
    margin: 0;
    color: #a3a3a3;
    font-size: 13px;
    line-height: 1.55;
}

.lvt-footer-contact .lvt-contact-item a {
    color: #b0b0b0;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.25s ease;
}

.lvt-footer-contact .lvt-contact-item a:hover {
    color: #d4af37;
}

.lvt-footer-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.lvt-footer-bottom {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.lvt-footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.lvt-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lvt-footer-bottom-links a {
    color: #666;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.25s ease;
}

.lvt-footer-bottom-links a:hover {
    color: #d4af37;
}

.lvt-footer-bottom-links span {
    width: 1px;
    height: 12px;
    background: #333;
}

@media (min-width: 1200px) {
    .lvt-footer-contact {
        width: 380px;
        max-width: 380px;
        padding-left: 0 !important;
        justify-self: end;
    }
}

@media (max-width: 991px) {
    .lvt-footer-top {
        display: flex !important;
        flex-direction: column;
        padding: 45px 0 35px;
    }

    .lvt-footer-brand {
        width: 100%;
        flex: none;
        max-width: none;
        margin-bottom: 40px;
    }

    .lvt-footer-contact {
        position: static !important;
        width: 100%;
        max-width: none;
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .lvt-footer {
        margin-top: 50px;
    }

    .lvt-footer-container {
        width: min(100% - 30px, 600px);
    }

    .lvt-footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .lvt-footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* =========================================
   FLOATING ACTION BUTTONS
   ========================================= */

.floating-widgets {
    position: fixed;
    right: 24px;
    bottom: 24px;

    display: flex;
    flex-direction: column;
    gap: 12px;

    z-index: 9998;
}

.floating-widgets .widget-btn {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 1px solid rgba(217, 169, 29, 0.75);

    background: #111;
    color: #d9a91d;

    text-decoration: none;

    font-size: 21px;
    line-height: 1;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.floating-widgets .widget-btn:hover {
    transform: translateY(-3px);
    background: #d9a91d;
    color: #111;
    border-color: #d9a91d;
}

.floating-widgets .widget-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Zalo */
.floating-widgets .widget-zalo {
    font-size: 13px;
    font-weight: 700;
}

.floating-widgets .zalo-text {
    line-height: 1;
}

/* Back to top */
.floating-widgets .widget-backtotop {
    cursor: pointer;
    padding: 0;
}

/* Pulse Messenger */
.floating-widgets .pulse-gold {
    animation: floatingPulse 2s infinite;
}

@keyframes floatingPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 169, 29, .45);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(217, 169, 29, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(217, 169, 29, 0);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .floating-widgets {
        right: 14px;
        bottom: 14px;
        gap: 9px;
    }

    .floating-widgets .widget-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .floating-widgets .widget-zalo {
        font-size: 12px;
    }
}