/* ==========================
   FOOTER
========================== */

.footer{
    background:#111827;
    padding:80px 0 30px;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:40px;
    margin-bottom:50px;
}

.footer-column h3{
    color:var(--text);
    margin-bottom:20px;
    font-size:22px;
}

.footer-column p{
    color:var(--text-secondary);
    line-height:1.8;
}

.footer-column a{
    display:block;
    color:var(--text-secondary);
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-column a:hover{
    color:#3b82f6;
    transform:translateX(5px);
}

/* ==========================
   Newsletter
========================== */

.newsletter-form{
    margin-top:20px;
}

.newsletter-form input{
    width:100%;
    padding:15px;
    border:none;
    border-radius:12px;
    background:var(--card);
    color:var(--text);
    margin-bottom:15px;
    outline:none;
}

.newsletter-form button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:12px;
    background:var(--primary);
    color:var(--text);
    cursor:pointer;
    transition:.3s;
}

.newsletter-form button:hover{
    background:var(--primary-hover);
}

/* ==========================
   Footer Bottom
========================== */

.footer-bottom{
    text-align:center;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-bottom p{
    color:var(--text-secondary);
}