.footer-section ul li a,
.footer-section.contact a {
    transition: color 0.3s;
    text-decoration: none;
    color: #fff;
}
.main-footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.footer-section {
    margin-bottom: 20px;
}
.footer-logo-slogan {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
.footer-logo {
    width: 70px;
    height: auto;
    object-fit: contain;
}
.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.2rem;
}
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-section ul li {
    margin-bottom: 12px;
}
.footer-section ul li a {
    display: inline-block;
}
.footer-section ul li a:hover,
.footer-section.contact a:hover {
    color: #f1c40f;
}
.footer-section.contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-section.contact i {
    width: 20px;
    text-align: center;
}
.footer-bottom {
    text-align: center;
    padding: 20px 0 0;
    font-size: 0.9rem;
    color: #ccc;
    border-top: 1px solid #333;
    margin-top: 30px;
}
.social-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
}
.social-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    font-size: 1rem;
    color: #fff;
    background-color: #040404;
    border-radius: 50%;
    transition: 0.3s;
}
.social-footer a:hover {
    /*background-color: #f1c40f;*/
    color: #f0b000;
    transform: translateY(-3px);
}
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-logo-slogan {
        flex-direction: row;
        align-items: center;
    }
    .footer-section {
        text-align: left;
    }
    .footer-bottom {
        padding-top: 15px;
        margin-top: 20px;
    }
}
@media (max-width: 480px) {
    .main-footer {
        padding: 30px 15px;
    }
    .footer-logo-slogan {
        flex-direction: column;
        align-items: flex-start;
    }
    .social-footer {
        padding: 15px 0;
    }
    .social-footer a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}
.social-footer a {
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}
i {
    pointer-events: none;
}
.social-footer a {
    position: relative;
    z-index: 9999;
    pointer-events: auto !important;
    display: inline-block;

}
.social-footer i {
    pointer-events: none;
}
