/* Footer Styles */
footer.footer {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #000 100%) !important;
    padding: 60px 5% 20px !important;
    border-top: 1px solid rgba(212, 175, 55, 0.2) !important;
    position: relative !important;
    text-align: center !important;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.footer .footer-content {
    max-width: 1400px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 40px !important;
    margin-bottom: 40px !important;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 1px;
}

.footer-section h4 {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
}

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

.footer-nav a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.footer-nav a:hover::before {
    width: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    opacity: 0.6;
    font-size: 0.9rem;
    margin: 0;
}

/* Social Links (if present) */
.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.footer-social a {
    color: var(--text-light);
    opacity: 0.7;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-social a:hover {
    color: var(--primary-gold);
    opacity: 1;
    transform: translateY(-3px);
}

.footer-social img {
    width: 24px;
    height: 24px;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.footer-social a:hover img {
    filter: brightness(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 40px 5% 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-nav li {
        margin-bottom: 0;
    }
    
    .footer-nav a::before {
        display: none;
    }
    
    .footer-nav a:hover {
        transform: none;
    }
}
