body {
    margin: 0;
    font-family: "Poppins", sans-serif;
}

.footer {
    background: linear-gradient(180deg, #161a18, #0f1113);
    color: #e5e5e5;
    padding: 60px 8%;
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}

.footer__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer__col h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
}

.footer__col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 35px;
    height: 2px;
    background: #ff9d00;
    border-radius: 2px;
}

.footer__col p,
.footer__col a {
    color: #bcbcbc;
    font-size: 0.8rem;
    margin: 8px 0;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer__col a:hover,
.footer__col p:hover {
    color: #ff9d00;
    transform: translateX(3px);
}

.footer__credit {
    text-align: center;
    padding-top: 40px;
    font-size: 0.85rem;
    color: #9a9a9a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
}

.footer__credit a {
    color: #ff9d00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__credit a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 6%;
    }

    .footer__col h3 {
        font-size: 1rem;
    }

    .footer__credit {
        font-size: 0.8rem;
    }
}