/* ============================================
            Footer
   ============================================ */

.footer-section {
    margin: 0 auto;
    color: #f1f1f1;
}

.footer-container {
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    padding: 0 1rem;
    min-width: 300px;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links,
.contact-info {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 0.7rem;
    line-height: 1.5;
}

.contact-info i {
    margin-right: 8px;
    color: #f1f1f1;
}

.footer-links a {
    color: #f1f1f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}


.footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    font-size: 1.2rem;
    transition: color 0.3s ease;

}

.footer-social .social-link i {
    transition: transform 0.3s ease;
    background: #fff;
    padding: 1rem;
    border: 2px solid #fff;
    border-radius: 50%;
}

.footer-social .social-link i:hover {
    transform: scale(1.3);
    color: #fff;
}

.footer-social .facebook i {
    color: #1566d1;
}

.footer-social .facebook i:hover {
    background: linear-gradient(45deg, #1566d1, #00ddfa);
}

.footer-social .twitter i {
    color: #000000;
}

.footer-social .twitter i:hover {
    background: linear-gradient(45deg, #000000, #434343);
}

.footer-social .linkedin i {
    color: #0A66C2;
}

.footer-social .linkedin i:hover {
    background: linear-gradient(45deg, #0A66C2, #4A8FE7);
}

.footer-social .instagram i {
    color: #FF0000;
}

.footer-social .instagram i:hover {
    background: linear-gradient(45deg, #FF0000, #FF7A00);
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    padding-bottom: 2rem;
}

.footer-bottom hr {
    height: 0.5px;
    width: 80%;
    margin: 0 auto 1rem;
}