/* =========================================
   PREMIUM FOOTER ENHANCEMENTS
   ========================================= */

:root {
    --footer-bg: #1A1412;
    /* Deepest Walnut */
    --footer-secondary: #2C221F;
    --footer-gold: #D4A373;
    --footer-text: #E5E0DA;
    --footer-text-muted: #9D968E;
}

/* Footer Container */
#footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    font-size: 0.95rem;
    position: relative;
    border-top: 4px solid var(--footer-gold);
}

.footer-enhanced {
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Layout Grid */
.footer-grid-new {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Brand Column */
.footer-brand p {
    color: var(--footer-text-muted);
    line-height: 1.8;
    margin-top: 1.5rem;
    max-width: 300px;
}

.footer-social-new {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--footer-text);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.social-circle:hover {
    background: var(--footer-gold);
    color: var(--footer-bg);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.3);
}

/* Links Columns */
.footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--footer-gold);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 1rem;
}

.footer-col a {
    color: var(--footer-text-muted);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
}

.footer-col a:hover {
    color: var(--footer-gold);
    transform: translateX(5px);
}

/* Contact Specifics */
.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    color: var(--footer-text-muted);
    line-height: 1.6;
}

.contact-item i {
    color: var(--footer-gold);
    font-size: 1.1rem;
    margin-top: 4px;
}

.contact-item a {
    color: inherit;
}

.contact-item a:hover {
    color: var(--footer-gold);
    transform: none;
    /* Icon already highlights */
}

/* Bottom Bar */
.footer-bottom-new {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    color: inherit;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: white;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .footer-grid-new {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-brand p {
        margin: 1.5rem auto;
    }

    .footer-social-new {
        justify-content: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }

    .footer-bottom-new {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}