/* Footer Styles */
.footer {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(30, 41, 59, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.footer-logo h2 span {
    color: #818cf8;
}

.footer-tagline {
    font-size: 15px;
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

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

.social-link:hover {
    background-color: #4f46e5;
    transform: translateY(-3px);
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #4f46e5;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-item {
    margin-bottom: 12px;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-link:hover {
    color: #818cf8;
    transform: translateX(3px);
}

.footer-link i {
    margin-right: 8px;
    font-size: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact-icon {
    color: #818cf8;
    margin-right: 10px;
    font-size: 16px;
    margin-top: 3px;
}

.footer-contact-text {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.5;
}

.footer-contact-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-link:hover {
    color: #818cf8;
}

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

.footer-newsletter p {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 15px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 6px 0 0 6px;
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.newsletter-input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-button {
    padding: 10px 15px;
    background-color: #4f46e5;
    color: white;
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background-color: #4338ca;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #94a3b8;
}

.footer-copyright a {
    color: #818cf8;
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

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

.footer-legal-link {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal-link:hover {
    color: #818cf8;
}

.footer-awards {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-award {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 6px;
}

.footer-award img {
    height: 24px;
    margin-right: 8px;
}

.footer-award span {
    font-size: 12px;
    color: #cbd5e1;
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
