/* ===== Footer ===== */
footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-col {
    width: 23%;
    margin-bottom: 40px;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    bottom: 0;
    left: 0;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    display: inline-block;
    padding-left: 18px;
    font-size: 15px;
}

.footer-col ul li a::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 12px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 25px;
}

.footer-col ul li a:hover::before {
    left: 6px;
}

.footer-col p {
    color: #aaa;
    margin-bottom: 15px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col p i {
    color: var(--secondary);
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 36px;
    margin-right: 10px;
}

.footer-desc {
    color: #aaa;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin-bottom: 10px;
    color: #aaa;
}

/* Footer responsive styles */
@media (max-width: 992px) {
    .footer-col {
        width: 47%;
    }
}

@media (max-width: 768px) {
    .footer-col {
        width: 100%;
    }
}