/* ===========================
   FOOTER
=========================== */

.footer {
    background: #111;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 18px;
    color: #fff;
}

.footer-col p {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 10px;
}
.footer-col p a {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 10px;
}
.footer-col p a:hover {
    color: #ff4da6;;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ff4da6;
    text-decoration: underline;
}

/* Social Icons */

.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #ff4da6;
    transform: translateY(-3px);
}

/* Footer Bottom */

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #fff;
    font-size: 14px;
}

/* Responsive */

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-grid {
        gap: 30px;
    }
}
