/* FOOTER SECTION */
#footer {
    background-color: #111;
    color: #ddd;
    padding: 80px 10% 40px;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    justify-items: start;
}

.footer-col h3,
.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #ccc;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    color: #ccc;
    margin-right: 12px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 10px;
}

.newsletter-form input {
    padding: 10px;
    border: none;
    border-radius: 25px 0 0 25px;
    outline: none;
    flex: 1;
}

.newsletter-form button {
    padding: 10px 18px;
    border: none;
    background-color: #fff;
    color: #111;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #ddd;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    #footer {
        padding: 60px 5% 30px;
    }

    .footer-container {
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        border-radius: 25px;
    }
}