/* Footer Styles */
.footer-main {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(32, 36, 107, 0.85) 100%);
    color: white;
    padding: 3rem 0;
    border-top: 3px solid var(--tertiary);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 2rem 0;
    align-items: start;
}

.footer-section h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--tertiary);
    border-bottom: 2px solid var(--tertiary);
    padding-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--tertiary);
    padding-left: 0.3rem;
}

.footer-section ul li a i {
    font-size: 0.8rem;
    color: var(--tertiary);
}

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

.footer-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #e0e0e0;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1rem;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tertiary);
    transition: all 0.3s ease;
    border: 1px solid var(--tertiary);
    font-size: 0.9rem;
}

.footer-socials a:hover {
    background: var(--tertiary);
    color: var(--primary);
}

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

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

.footer-address {
    font-size: 0.85rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-address a {
    color: var(--tertiary);
    text-decoration: none;
}

.footer-address a:hover {
    text-decoration: underline;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: #e0e0e0;
}

.footer-bottom a {
    color: var(--tertiary);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 2rem 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem 0;
    }

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

    .footer-section ul li a {
        font-size: 0.85rem;
    }

    .footer-logo {
        width: 70px;
        height: 70px;
    }

    .footer-logo img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-map {
        height: 200px;
    }

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