/*  FOOTER MAIN */
.footer {
    background-color: #1f2933;
    width: 90%;
    color: #ffffff;
    padding: 40px 8%;
    font-family: Arial, sans-serif;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

/* ===== FOOTER SECTIONS ===== */
/* .footer-section {
    flex: 1 1 300px;
} */

/* Headings */
.footer-section h2 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #f4b400;
}

/* Text */
.footer-section p {
    margin: 6px 0;
    line-height: 1.6;
}

/* ===== SOCIAL LINKS ===== */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #f4b400;
}

/* ===== FORM ===== */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.name-group {
    display: flex;
    gap: 10px;
}

.name-group .form-group {
    flex: 1;
}

/* Inputs */
.footer input,
.footer textarea {
    padding: 8px;
    border: none;
    border-radius: 4px;
    margin-top: 4px;
    font-size: 14px;
}

/* Button */
.footer button {
    background-color: #f4b400;
    color: #000;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.footer button:hover {
    background-color: #ffd54f;
}

/* ===== BOTTOM FOOTER ===== */
.footer-bottom {
    width: 100%;
    text-align: center;
    border-top: 1px solid #444;
    margin-top: 30px;
    padding-top: 30px;
    font-size: 14px;
}

/* ===== RESPONSIVE DESIGN ===== */


@media (max-width: 480px) {

    /* FOOTER MAIN */
    .footer {
        padding: 25px 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    /* EACH SECTION STACK */
    .footer-section {
        width: 100%;
    }

    .footer-section h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .footer-section p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* COMMUNITY LINKS */
    .footer-section ul {
        padding: 0;
        list-style: none;
    }

    .footer-section ul li {
        margin: 8px 0;
    }

    .footer-section ul a {
        font-size: 15px;
        text-decoration: none;
    }

    /* CONTACT FORM */
    form {
        width: 100%;
    }

    /* FIRST + LAST NAME STACK */
    .name-group {
        flex-direction: column;
    }

    .form-group {
        width: 100%;
        text-align: left;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 10px;
        font-size: 14px;
        box-sizing: border-box;
    }

    /* SUBMIT BUTTON */
    button[type="submit"] {
        width: 100%;
        padding: 12px;
        margin-top: 10px;
        font-size: 16px;
    }

    /* BOTTOM FOOTER */
    .footer-bottom {
        text-align: center;
        font-size: 13px;
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid #ddd;
    }
}