/* Base Styles */
.site-footer {
    background: linear-gradient(135deg, #333333 0%, #0d1520 100%);
    color: #ffffff;
    padding: 50px 0 0;
    font-family: 'Roboto', sans-serif;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #f39c12, #e74c3c);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr 1.5fr;
    gap: 40px;
}

/* Logo Section */
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    width: 160px;
    height: auto;
    margin-bottom: 20px;
    /*filter: brightness(0) invert(0);*/
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    color: #bdc3c7;
    background: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links .x-twitter{
    color: #bdc3c7;
}

.social-links .facebook:hover {
    color: #ffffff;
    background: #1877F2;
    transform: translateY(-3px);
}

.social-links .twitter:hover {
    color: #ffffff;
    background: #000000;
    transform: translateY(-3px);
}

.social-links .instagram:hover {
    color: #ffffff;
    background: #d62976;
    transform: translateY(-3px);
}

.social-links .youtube:hover {
    color: #ffffff;
    background: #CD201F;
    transform: translateY(-3px);
}



/* Common Footer Sections */
.footer-section {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    color: #f8f9fa;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
}

/* Links Section */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 6px 0;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-links a:hover::before {
    width: 20px;
}

/* Contact Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    color: #e74c3c;
    margin-top: 3px;
    font-size: 16px;
}

.contact-item p {
    margin: 0;
    color: #bdc3c7;
    line-height: 1.5;
}

.organization {
    font-weight: 500;
    color: #ecf0f1 !important;
}

.email a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email a:hover {
    color: #e74c3c;
}

/* Mission Section */
.mission-text {
    color: #bdc3c7;
    line-height: 1.7;
    margin-bottom: 25px;
}

.newsletter {
    margin-top: 30px;
}

.newsletter h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #f8f9fa;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 4px;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #bdc3c7;
}

.newsletter-form button {
    padding: 12px 15px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: linear-gradient(90deg, #c0392b, #e67e22);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 20px 0;
    margin-top: 50px;
}

.footer-bottom-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #95a5a6;
}

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

.legal-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #e74c3c;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .logo-section {
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }
}
