/* --- Codomax Plugin Footer Style --- */
.codomax-plugin-footer {
    background: #020617 !important;
    color: #94a3b8 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Inter', sans-serif;
    padding: 80px 0 40px;
    width: 100%;
}

.codomax-plugin-footer .footer-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.codomax-plugin-footer .footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 10px;
}

.codomax-plugin-footer .footer-tagline {
    color: #2563eb !important;
    margin-bottom: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    font-size: 0.85rem;
}

.codomax-plugin-footer .footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #94a3b8;
}

.codomax-plugin-footer .footer-heading {
    color: #ffffff !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    position: relative;
    padding-bottom: 12px !important;
    font-size: 1.25rem !important;
    margin-top: 0;
}

.codomax-plugin-footer .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
}

/* Links */
.codomax-plugin-footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.codomax-plugin-footer .footer-links-list li {
    margin-bottom: 6px !important;
}

.codomax-plugin-footer a {
    color: #94a3b8 !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease;
    font-weight: 500;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.codomax-plugin-footer a:hover {
    color: #2563eb !important;
    padding-left: 5px;
}

.footer-social-links a:hover {
    padding-left: 0px;
}

/* Social Icons */
.codomax-plugin-footer .footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.codomax-plugin-footer .social-icon {
    background: rgba(255, 255, 255, 0.05);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    transition: all 0.3s ease;
}

.codomax-plugin-footer .social-icon:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

.codomax-plugin-footer .social-icon svg {
    fill: #94a3b8;
    transition: fill 0.3s ease;
}

.codomax-plugin-footer .social-icon:hover svg {
    fill: #ffffff;
}

/* Contact Items */
.codomax-plugin-footer .footer-contact-item {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    padding: 12px 20px !important;
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: all 0.3s ease;
}

.codomax-plugin-footer .footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    border-color: #2563eb !important;
}

.codomax-plugin-footer .contact-icon {
    color: #ffffff !important;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.codomax-plugin-footer .contact-text {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
}

/* Bottom Bar */
.codomax-plugin-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1340px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.codomax-plugin-footer .copyright {
    color: #94a3b8;
    font-size: 0.85rem;
}

.codomax-plugin-footer .footer-legal {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-self: center;
    align-items: center;
}

.codomax-plugin-footer .footer-legal a {
    color: #94a3b8;
    font-size: 0.85rem;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}


.codomax-plugin-footer .footer-legal a:hover {
    color: #2563eb;
    padding-left: 0;
}

@media (max-width: 1024px) {
    .codomax-plugin-footer .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .codomax-plugin-footer .footer-container {
        grid-template-columns: 1fr;
    }

    .codomax-plugin-footer .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .codomax-plugin-footer .footer-container {
        gap: 20px;
    }

    .codomax-plugin-footer .footer-heading {
        margin-bottom: 10px !important;
    }

    .codomax-plugin-footer {
        padding: 40px 0 40px;
    }

    .codomax-plugin-footer .footer-bottom {
        padding-top: 20px;
        margin-top: 30px;
    }
}