/* Footer Contact Info - Horizontal Layout */
.footer-section .contact-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.footer-section .contact-info li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.footer-section .contact-info .contact-icon {
    margin-right: 0;
    margin-top: 0;
    flex-shrink: 0;
}

.footer-section .contact-info span,
.footer-section .contact-info a {
    flex: 1;
}

/* Make sure contact info in footer shows label and value on separate lines if needed */
.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.footer-contact-label {
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-contact-value {
    color: #aaa;
}

/* Quick Links Horizontal Layout */
.footer-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links li {
    margin-bottom: 0;
}

/* Footer Grid - 3 Columns Layout */
.main-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.main-footer .footer-section {
    margin-bottom: 0;
}
