.footer-new {
    background-color: #0B0F19;
    /* Very dark background matching the image */
    padding: 80px 0 30px;
    color: #ffffff;
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
}

.footer-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 15px;
}

.footer-list li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-list li a:hover {
    opacity: 1;
    color: #C8A24B;
    transform: translateX(5px);
}

.social-icons-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon-link {
    color: #ffffff;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.social-icon-link:hover {
    color: #C8A24B;
    transform: scale(1.2);
    opacity: 1;
}

.footer-bottom-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 60px 0 25px;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: #ffffff;
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsiveness */
@media (max-width: 991px) {
    .footer-new {
        padding: 60px 0 30px;
    }

    .footer-col {
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .footer-new {
        text-align: center;
    }

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

    .footer-list li a:hover {
        transform: none;
    }
}