/* ================================
   Footer
================================ */
.footer {
    background-color: #010100;
    color: #fff;
    text-align: center;
    padding: 50px 20px 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-section {
    flex: 1;
    min-width: 220px;
    box-sizing: border-box;
}

.footer-section h3,
.footer-section h4 {
    color: #1E90FF;
    margin-bottom: 15px;
}

.footer-section p,
.footer-section li {
    margin-bottom: 10px;
    font-size: 0.95em;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #1E90FF;
}

/* ----------------------------
   Social Icons
----------------------------- */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    justify-content: center;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons i {
    font-size: 30px;
    color: #fff;
    transition: color 0.4s;
}

.social-icons i:hover {
    color: #1E90FF;
}

/* ----------------------------
   Newsletter Form
----------------------------- */
.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.newsletter-form input {
    padding: 10px;
    border-radius: 5px;
    border: none;
    flex: 1;
    min-width: 200px;
}

.newsletter-form button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #1E90FF;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background-color: #0d6efd;
}

/* ----------------------------
   Footer Bottom
----------------------------- */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    font-size: 0.9em;
}

/* ----------------------------
   Responsive
----------------------------- */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 500px) {
    .footer {
        padding: 40px 10px 20px;
    }
}
