/* ---------------- Footer ---------------- */
footer {
    background: #222;
    color: #fff;
    padding: 60px 30px 20px;
    font-size: 14px;
    line-height: 1.6;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}
.footer-section {
    flex: 1 1 250px;
}
.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #ffd700;
}
.footer-section p {
    margin-bottom: 12px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin-bottom: 8px;
}
.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}
.footer-section ul li a:hover {
    color: #ffd700;
}
.footer-section form {
    display: flex;
    gap: 8px;
    margin-top:10px;
}
.footer-section form input {
    flex:1;
    padding: 10px;
    border: none;
    border-radius: 5px;
}
.footer-section form button {
    padding: 10px 18px;
    background: #ffd700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}
.footer-section form button:hover {
    background: #fff;
    color: #222;
}
.footer-section .social-icons {
    display: flex;
    gap: 12px;
    font-size: 22px;
    margin-top: 5px;
}
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    color: #aaa;
    border-top: 1px solid #444;
    padding-top: 20px;
}

/* ---------------- Responsive Footer ---------------- */
@media(max-width:768px){
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap:25px;
    }
    .footer-section { flex:1 1 100%; text-align:center; }
    .footer-section form { justify-content:center; }
}
