/* FOOTER 3 COLUMN – UX BLOCK */

.section-footer {
    background: #050505;
    padding: 80px 20px 40px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
}

.footer-col h3 {
    color: #00e5ff;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col li,
.footer-col small {
    font-size: 14px;
    color: #d0d0d0;
    line-height: 1.6;
}

.footer-col a {
    color: #00c6ff;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-form form {
    display: grid;
    gap: 12px;
}

.footer-form input,
.footer-form textarea {
    padding: 10px 12px;
    border-radius: 6px;
    border: none;
    background: #111;
    color: #fff;
    font-size: 13px;
}

.footer-form textarea {
    resize: none;
    min-height: 70px;
}

.footer-form button {
    background: linear-gradient(135deg,#00c6ff,#ff5252);
    border: none;
    padding: 12px;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.footer-form button:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    color: #888;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
