/* ==========================================
    GLOBAL FOOTER
========================================== */
.main-footer {
    background: var(--primary-red);
    color: var(--text-light);
    padding: 100px 5% 40px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand h2 {
    color: var(--text-light);
    font-family: var(--font-accent);
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-brand h2 span {
    color: var(--gold);
}

.footer-brand p {
    color: #ffffff;
    line-height: 1.8;
    max-width: 400px;
    font-size: 1.05rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.footer-links a {
    display: block;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-contact p {
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.6;
}

.email-link {
    display: inline-block;
    color: #fff;
    font-size: 1.15rem;
    border-bottom: 1px solid transparent;
    margin-bottom: 20px;
}

.email-link:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(199, 175, 107, 0.2);
    padding-top: 30px;
    text-align: center;
    color: #ffffff;
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background-color: #25D366;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    z-index: 1000;
    transition: transform 0.4s var(--ease-luxury);
    text-decoration: none;
}

.floating-wa:hover {
    transform: scale(1.1);
    color: #fff;
}
