/* Footer Wrapper */
.footer {
    background-color: #1e1e2f;
    color:  #f7c948;
    padding: 40px 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Container Layout */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Column Style */
.footer-column {
    flex: 1 1 220px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: #f7c948;
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
    border-bottom: 2px solid #f7c948;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column a:hover {
    color: #f7c948;
}

/* List in Quick Links */
.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

/* Social Icons */
.social-icons {
    list-style: none;
    display: flex;
    padding: 0;
    margin-top: 10px;
}

.social-icons li {
    margin-right: 10px;
}

.social-icons img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
    filter: brightness(1.2) sepia(1) hue-rotate(20deg) saturate(2);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 13px;
    color: #bbb;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 25px;
    }

    .social-icons {
        justify-content: center;
    }
}
