/* Footer Styles - footer.css */

.site-footer {
    background-color: #ffffff;
    padding: 80px 0 40px;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    border-top: 1px solid #f0f0f0;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 180px;
    margin-bottom: 30px;
    padding: 0 10px;
}

.footer-col.footer-info {
    flex: 1.5;
    min-width: 300px;
    padding-right: 40px;
}

.footer-info h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #222;
}

.footer-info h4:first-child {
    margin-top: 0;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #000;
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.contact-info i {
    margin-right: 10px;
    color: #333;
    width: 16px;
    margin-top: 2px;
    text-align: center;
}

/* Social Links */
.social-links {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #3b5998;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.social-links a:nth-child(2) {
    background: #0077b5;
}

.social-links a:nth-child(3) {
    background: #ff0000;
}

.social-links a i {
    color: #fff;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Payment Icons */
.payment-icons img {
    height: 30px;
    width: auto;
    object-fit: contain;
    display: inline-block;
    margin-right: 15px;
    vertical-align: middle;
}

.payment-icons img:last-child {
    margin-right: 0;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgb(224 224 224);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #888;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
}

.footer-links a:hover {
    color: #333;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .footer-col {
        flex: 0 0 50%;
    }
    .footer-col.footer-info {
        flex: 0 0 100%;
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .footer-col {
        flex: 0 0 100%;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
