/* ================== FOOTER ================== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e0e0e0;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
    border-top: 2px solid #d4af37;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #d4af37;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-list li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-link {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    color: #d4af37;
}

.footer-text {
    color: #c0c0c0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-info {
    background: rgba(212, 175, 55, 0.1);
    padding: 0.8rem;
    border-left: 3px solid #d4af37;
    border-radius: 4px;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #f0e68c;
    font-style: italic;
}

.footer-map {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    border: none;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 1.5rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .footer-list li {
        font-size: 0.9rem;
    }

    .footer-info {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    .footer-map iframe {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 1rem 0.8rem;
        margin-top: 2rem;
    }

    .footer-section h3 {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .footer-list li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    .footer-link,
    .footer-text {
        font-size: 0.85rem;
    }

    .footer-info {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .footer-map iframe {
        height: 200px;
    }
}
