﻿/* Footer Styles */
.main-footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

    .footer-logo .logo-icon {
        font-size: 2rem;
        color: #1e90ff;
        margin-right: 10px;
    }

    .footer-logo .logo-text {
        font-size: 1.5rem;
        color: white;
    }

        .footer-logo .logo-text span {
            color: #1e90ff;
        }

.footer-about p {
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
}

    .footer-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.3s ease;
    }

        .footer-social a:hover {
            background-color: #1e90ff;
            transform: translateY(-3px);
        }

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

    .footer-links h3::after,
    .footer-contact h3::after,
    .footer-newsletter h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: #1e90ff;
    }

.footer-links ul li {
    margin-bottom: 10px;
}

    .footer-links ul li a {
        color: #bbb;
        transition: all 0.3s ease;
        display: inline-block;
    }

        .footer-links ul li a:hover {
            color: #1e90ff;
            transform: translateX(5px);
        }

.footer-contact ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #bbb;
}

    .footer-contact ul li i {
        color: #1e90ff;
        margin-top: 3px;
    }

.footer-newsletter p {
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .newsletter-form input {
        flex: 1;
        min-width: 200px;
        padding: 12px 15px;
        border: none;
        border-radius: 4px;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
    }

        .newsletter-form input::placeholder {
            color: #bbb;
        }

    .newsletter-form button {
        padding: 12px 20px;
        background-color: #1e90ff;
        color: white;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

        .newsletter-form button:hover {
            background-color: #187bcd;
        }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: #bbb;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

    .footer-legal a {
        color: #bbb;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

        .footer-legal a:hover {
            color: #1e90ff;
        }

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-about {
        padding-right: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}
