.luxury-footer {
    background: #272628;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-top: 120px;
    margin-top: 120px;
}

/* NEWSLETTER */
.footer-newsletter {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    color: #100f10;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.footer-newsletter h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.footer-newsletter p {
    font-size: 14px;
    margin-bottom: 25px;
    color: #555;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 14px 18px;
    width: 260px;
    border-radius: 30px;
    border: 1px solid #ddd;
    outline: none;
}

.newsletter-form button {
    padding: 14px 28px;
    border-radius: 30px;
    border: none;
    background: #d4af37;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #000000;
}

/* CONTENT */
.footer-content {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    margin-bottom: 18px;
    font-size: 16px;
    color: #f3e9ff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #ddd;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* SOCIAL */
.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 15px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}

.footer-socials a:hover {
    background: #fff;
    color: #3c2a6d;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    padding: 18px;
    font-size: 13px;
    background: #0a0a0a;
    color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-newsletter {
        width: 90%;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* LIVING GEM */
.footer-gem {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.gem-core {
    position: absolute;
    width: 220px;
    height: 220px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.25),
        rgba(180,140,255,0.08),
        rgba(255,255,255,0.18)
    );
    clip-path: polygon(
        50% 0%,
        85% 15%,
        100% 50%,
        85% 85%,
        50% 100%,
        15% 85%,
        0% 50%,
        15% 15%
    );
    filter: blur(0.3px);
    animation: gemFloat 14s ease-in-out infinite;
    opacity: 0.35;
}

/* subtle movement */
@keyframes gemFloat {
    0%   { transform: translate(-50%, -50%) rotate(45deg); }
    50%  { transform: translate(-48%, -52%) rotate(55deg); }
    100% { transform: translate(-50%, -50%) rotate(45deg); }
}

