/* Footer - Simple Elegant Design */

.footer {
    background: rgba(0, 0, 0, 0.9);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Left Side - Logo */
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 25px;
    object-fit: contain;
    filter: drop-shadow(0 2px 12px rgba(200,167,80,0.2));
}

.footer-tagline {
    font-size: 18px;
    opacity: 1;
    color: var(--white);
    font-weight: 300;
}

/* Right Side - Links and Contact */
.footer-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    opacity: 1;
}

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

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(3px);
}

/* Contact */
.footer-contact p {
    margin-bottom: 12px;
    font-size: 15px;
    opacity: 0.9;
    color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    opacity: 0.8;
    color: var(--white);
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.legal-links a:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-left {
        align-items: center;
        text-align: center;
    }
    
    .footer-right {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-right {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .footer-logo {
        height: 64px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        height: 52px;
    }
    
    .footer-column h4 {
        font-size: 13px;
    }
    
    .footer-links a,
    .footer-contact p {
        font-size: 13px;
    }
}