.footer {
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.95),
        rgba(20, 20, 20, 0.9)
    );

    color: #fff;
    padding: 70px 10% 20px;
    border-radius: 24px 24px 0 0;

    position: relative;
    overflow: hidden;

    box-shadow:
        0 -10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.footer::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;

    background: radial-gradient(
        circle at center,
        rgba(212, 175, 55, 0.08),
        transparent 60%
    );

    pointer-events: none;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer h3 {
    margin-bottom: 15px;
    color: #ed945c;
}

.footer-brand img {
    width: 60px;
    margin-bottom: 15px;
}

.footer-links a,
.footer-contact a {
    display: block;
    color: #bbb;
    margin-bottom: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.footer-social .social-icons a {
    color: #fff;
    margin-right: 12px;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social .social-icons a:hover {
    color: #d4af37;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links,
    .footer-contact {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 50px 20px 20px;
    }

    .footer h3 {
        font-size: 1.2rem;
    }

    .footer-brand img {
        width: 40px;
    }

    .footer-links a,
    .footer-contact a {
        font-size: 0.9rem;
    }

    .footer-social .social-icons a {
        font-size: 16px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}



