.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;
    }
}
.whatsapp-sticky {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.whatsapp-sticky img {
    width: 35px;
    height: 35px;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
}

.facebook-sticky {
    position: fixed;
    bottom: 150px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #1877F2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.facebook-sticky:hover {
    transform: scale(1.1);
}

.instagram-sticky {
    position: fixed;
    bottom: 220px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.instagram-sticky:hover {
    transform: scale(1.1);
}