.footer {
    background: linear-gradient(135deg, #0f172a, #020617);
    color: #fff;
    padding: 60px 20px 20px;
    font-family: Arial, sans-serif;
    font-size: 1.8rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
    gap: 40px;
}

.footer-brand h2 {
    font-size: 28px;
    color: #38bdf8;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #94a3b8;
    max-width: 250px;
    line-height: 1.5;
}

.footer-links h3,
.footer-social h3 {
    margin-bottom: 10px;
    color: #fff;
}

.footer-links a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin: 6px 0;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #38bdf8;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #38bdf8;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 0 15px #38bdf8;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    color: #64748b;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 500px) {
    .footer {
        padding: 40px 15px 15px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-brand h2 {
        font-size: 24px;
    }

    .footer-brand p {
        font-size: 14px;
        margin: auto;
    }

    .footer-links a {
        font-size: 14px;
    }

    .social-icons {
        justify-content: center;
    }

    .social-icons a {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .footer-bottom {
        font-size: 13px;
    }
}


@media (max-width: 300px) {
    .footer {
        padding: 30px 10px 10px;
    }

    .footer-brand h2 {
        font-size: 20px;
    }

    .footer-brand p {
        font-size: 12px;
        line-height: 1.4;
    }

    .footer-links h3,
    .footer-social h3 {
        font-size: 14px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .footer-bottom {
        font-size: 11px;
    }
}