.lux-footer {
    background: linear-gradient(180deg, #1a1410, #0f0b08);
    color: #cfc6bb;
    padding: 70px 0 30px;
    font-size: 14px;
}

/* Titles */
.footer-title {
    color: #fff;
    font-family: Georgia, serif;
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-heading {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Text */
.footer-text {
    line-height: 1.7;
    color: #b8aea3;
}

/* Contact */
.footer-contact {
    margin-bottom: 10px;
    color: #b8aea3;
}

.footer-contact i {
    color: #d4a24c;
    margin-right: 8px;
}

/* Social */
.footer-social a {
    display: inline-block;
    color: #d4a24c;
    margin-right: 12px;
    font-size: 16px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #fff;
}

/* Divider */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 40px 0 20px;
}

/* Bottom */
.footer-bottom {
    font-size: 13px;
}

.footer-links a {
    color: #b8aea3;
    margin-left: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* ✅ Responsive */
@media (max-width: 768px) {
    .lux-footer {
        text-align: center;
    }

    .footer-bottom {
        justify-content: center !important;
        gap: 10px;
    }

    .footer-links a {
        margin: 0 10px;
    }
}
.social-sticky {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 2px;
}

.social-sticky a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-sticky a:hover {
    width: 65px;
}

.whatsapp {
    background: #25D366;
    border-radius: 10px 0 0 0;
}

.facebook {
    background: #1877F2;
}

.instagram {
    background: linear-gradient(
            45deg,
            #f09433,
            #e6683c,
            #dc2743,
            #cc2366,
            #bc1888
    );

    border-radius: 0 0 0 10px;
}
.youtube {
    background: red;
    border-radius: 10px 0 0 0;
}
