:root {
    --color-red: #FF0000;
    --color-red-deep: #FF0000;
    --color-red-rgb: 255, 0, 0;
    --color-gold: #FFD700;
    --color-gold-rgb: 255, 215, 0;
    --color-green: #0a7734;
    --color-green-deep: #085c28;
    --color-green-rgb: 10, 119, 52;
    --color-white: #FFFFFF;
    --color-black: #0A0A0A;
    --color-gray: #6B7280;
    
    --gradient-red: linear-gradient(135deg, var(--color-red), var(--color-red-deep));
    --gradient-gold: linear-gradient(135deg, #FFD700, #DAA520);
    --gradient-green: linear-gradient(135deg, #0a7734, #085c28);
    --gradient-dark: linear-gradient(135deg, #1a1a2e, #16213e);
    
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow-red: 0 0 30px rgba(255, 0, 0, 0.3);
    --shadow-glow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
}

/*** Footer Start ***/
.site-footer {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-deep) 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, var(--color-red), var(--color-gold), var(--color-red-deep));
}

.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: 220px;
    height: auto;
    margin-bottom: 20px;
    /*filter: brightness(0) invert(0);*/
    transition: transform 0.3s ease;
    /* background-color: #FFFFFF; */
    border-radius: 10px;
}

.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: 5px;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 6px 0;
    position: relative;
    font-size: 12px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    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: var(--color-gold);
    margin-top: 3px;
    font-size: 12px;
}

.contact-item a {
    color: var(--color-white);
    margin-top: 3px;
    font-size: 12px;
}

.contact-item p {
    margin: 0;
    color: var(--color-white);
    line-height: 1.5;
    font-size: 12px;
}

.organization {
    font-weight: 500;
    color: var(--color-white) !important;
}

.email a {
    color: var(--color-gold);
    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;
    }
}
/*** Footer End ***/