﻿.footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
    margin-top:25px;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
        opacity: 0.3;
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a5298;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-text {
    font-size: 16px;
    line-height: 1.4;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #4CAF50;
    font-weight: bold;
}

.footer-section .logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

    .footer-section .logo .highlight {
        color: #4CAF50;
    }

.footer-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #e0e6ed;
}

.footer-section ul {
    list-style: none;
}

    .footer-section ul li {
        margin-bottom: 12px;
    }

        .footer-section ul li a {
            color: #e0e6ed;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            padding: 5px 0;
        }

            .footer-section ul li a:hover {
                color: #4CAF50;
                padding-left: 5px;
            }

.event-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

    .event-item:hover {
        transform: translateX(5px);
    }

.event-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.event-content h4 {
    font-size: 14px;
    color: #4CAF50;
    margin-bottom: 5px;
}

.event-content p {
    font-size: 13px;
    margin: 0;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

    .newsletter-form input {
        flex: 1;
        padding: 12px 20px;
        border: none;
        outline: none;
        font-size: 14px;
    }

    .newsletter-form button {
        background: #4CAF50;
        color: white;
        border: none;
        padding: 12px 20px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

        .newsletter-form button:hover {
            background: #45a049;
        }

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background: #4CAF50;
        transform: translateY(-3px);
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

    .footer-links a {
        color: #e0e6ed;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #4CAF50;
        }

.copyright {
    font-size: 14px;
    color: #b0bec5;
}

.designed-by {
    font-size: 14px;
    color: #4CAF50;
}

@media (max-width: 768px) {
    .contact-info {
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}
