/* ===== FOOTER ===== */

.footer-friendly {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    color: var(--text-primary);
    padding: 25px 0 15px;
    margin-top: 40px;
    border-top: 2px solid var(--primary-soft);
}

.footer-brand {
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    /* Adjust filter for light theme if needed */
}

.brand-title {
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--primary-mint) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.footer-heading {
    color: var(--primary-soft);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold-primary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
}

.contact-item i {
    color: var(--gold-primary);
    margin-top: 2px;
    min-width: 16px;
}

.contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-normal);
}

.contact-link:hover {
    color: var(--gold-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-normal);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold-primary);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    box-shadow: 2px -2px 8px var(--gold-light);
}

.footer-bottom span {
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-luxury {
        padding: 20px 0 10px;
    }

    .footer-brand {
        margin-bottom: 15px;
    }

    .brand-title {
        font-size: 1.4rem;
    }

    .footer-heading {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .contact-info {
        gap: 10px;
    }

    .footer-bottom {
        padding-top: 12px;
        margin-top: 15px;
    }

    .footer-bottom .row {
        text-align: center;
    }

    .footer-bottom .col-md-6 {
        margin-bottom: 8px;
    }
}