.custom-footer {
    background-image: url('../img/home/footer.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 60px 20px 20px;
    position: relative;
    overflow: hidden;
}

.custom-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(75, 0, 130, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.custom-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.custom-grid {
    display: grid;
    grid-template-columns: 1fr 0.5fr 0.5fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.custom-logo-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.custom-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.custom-logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.custom-logo-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.custom-logo-subtext {
    font-size: 11px;
    color: #a0a0c0;
    letter-spacing: 1px;
    margin-top: -5px;
}

.custom-description {
    font-size: 18px;
    line-height: 1.8;
    color: #b8b8d4;
    max-width: 400px;
}

.custom-section-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.custom-section-title i {
    margin-right: 8px;
    color: #8b5cf6;
}

.custom-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-left: 0;
}

.custom-menu-item {
    position: relative;
}

.custom-menu-link {
    color: #b8b8d4;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.custom-menu-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transition: width 0.3s ease;
}

.custom-menu-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.custom-menu-link:hover::after {
    width: 100%;
}

.custom-menu-link.active {
    color: #ff0000;
    font-weight: 600;
}
/* 
.custom-menu-link.active::after {
    width: 100%;
} */

.custom-contact-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custom-contact-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.custom-contact-title i {
    margin-right: 8px;
    color: #8b5cf6;
}

.custom-company-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.custom-address {
    font-size: 18px;
    line-height: 1.8;
    color: #b8b8d4;
    margin-bottom: 15px;
}

.custom-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: #b8b8d4;
}

.custom-contact-icon {
    font-size: 16px;
    color: #8b5cf6;
}

.custom-contact-link {
    color: #b8b8d4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-contact-link:hover {
    color: #ffffff;
}

.custom-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 184, 212, 0.2), transparent);
    margin: 30px 0;
}

.custom-copyright {
    text-align: center;
    font-size: 18px;
    color: #a0a0c0;
    padding: 20px 0;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .custom-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .custom-logo-section {
        grid-column: 1 / -1;
        max-width: 600px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .custom-footer {
        padding: 40px 20px 20px;
    }

    .custom-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .custom-logo-section {
        grid-column: 1;
    }

    .custom-description {
        max-width: 100%;
    }

    .custom-section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .custom-menu-list {
        gap: 12px;
    }

    .custom-copyright {
        font-size: 18px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .custom-footer {
        padding: 30px 15px 15px;
    }

    .custom-grid {
        gap: 30px;
    }

    .custom-logo-text {
        font-size: 24px;
    }

    .custom-logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .custom-description {
        font-size: 18px;
    }

    .custom-address {
        font-size: 18px;
    }
}