/* Footer Section Styles */
.footer-section {
    background: #f8f9fa;
    padding: 60px 0 0;
    border-top: 1px solid #e9ecef;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Footer Brand Section */
.footer-brand {
    grid-column: span 1;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.organization-name {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    color: #666;
    margin: 10px 0 5px 0;
    line-height: 1.3;
}

.organization-location {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.newsletter-section {
    margin-top: 20px;
}

.newsletter-text {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    outline: none;
}

.newsletter-input:focus {
    border-color: #2c5aa0;
}

.newsletter-btn {
    background: #2c5aa0;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #356ec3;
}

/* Footer Links Columns */
.footer-links-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    color: #2c5aa0;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-link:hover {
    color: #2c5aa0;
}

/* Footer Contact Section */
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-text {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.contact-phone {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    color: #2c5aa0;
    text-decoration: none;
    margin-bottom: 20px;
}

.contact-phone:hover {
    color: #28a745;
}

.footer-social {
    width: 100%;
}

.social-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5aa0;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #28a745;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* Footer Badges */
.footer-badges {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

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

.fundraising-regulator {
    background: #2c5aa0;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-copyright p {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #666;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.legal-link {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #2c5aa0;
}

/* .site-credit {
    color: #28a745;
} */

/* .site-credit:hover {
    color: #2c5aa0;
} */

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-contact {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .footer-brand {
        grid-column: span 2;
        margin-bottom: 20px;
    }
    
    .footer-contact {
        grid-column: span 2;
        margin-top: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 30px 0 0;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }
    
    .footer-links-column,
    .footer-contact {
        grid-column: span 1;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .organization-name {
        font-size: 16px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-input,
    .newsletter-btn {
        border-radius: 5px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .footer-bottom {
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .footer-copyright p {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .legal-link {
        font-size: 11px;
    }
}
