/* Footer Styles */
.site-footer {
    background-color: #1E3A8A;
    color: #ffffff;
    padding: 4rem 0 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
    color: #e2e8f0;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3B82F6;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Style for Bootstrap Icons */
.contact-info i.bi {
    font-size: 1.1rem; /* Adjust size as needed */
    color: var(--white); /* Match link color */
    width: auto; /* Override previous width */
    height: auto; /* Override previous height */
    background: none; /* Remove background image */
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background-color: #172554;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: #e2e8f0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1E3A8A;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.footer-social a:hover {
    background-color: #3B82F6;
}

.footer-social i {
    width: 20px;
    height: 20px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Payment Icons */
.payment-icons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center; /* Center icons in mobile view */
}

.payment-icon {
    font-size: 1.8rem; /* Adjust size for Bootstrap Icons */
    color: var(--white);
    opacity: 0.8;
    width: auto; /* Reset width */
    height: auto; /* Reset height */
    background: none; /* Remove background */
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; /* Stack sections on mobile */
    }
    .payment-icons {
        justify-content: center; /* Center icons */
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr); /* Two columns on tablet */
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
