/* --- React Modern Footer Styles --- */

.gp-modern-footer {
    background: #0F172A !important;
    /* Premium Midnight Navy */
    color: #ffffff !important;
    padding: 100px 0 60px !important;
    font-family: 'Roboto', sans-serif;
    position: relative;
    z-index: 10;
    border-top: 4px solid var(--gp-primary);
    /* Vepa Red Accent Line */
}

.gp-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.gp-footer-brand {
    flex: 1;
    min-width: 250px;
}

.gp-footer-logo-wrap {
    margin-bottom: 30px;
}

.gp-footer-logo-text {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.gp-footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.gp-footer-socials .social-box {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    /* Transparent glassmorphism box */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.gp-footer-socials .social-box:hover {
    background: var(--gp-primary);
    /* Vepa Red accent */
    transform: translateY(-3px);
    border-color: transparent;
}

.gp-footer-column {
    flex: 1;
    min-width: 200px;
}

.column-title {
    font-family: 'Roboto', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px !important;
    position: relative;
    padding-bottom: 12px;
}

.column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gp-primary);
    /* Vepa Red underline */
    opacity: 1;
}

.footer-links {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-links li {
    margin-bottom: 12px !important;
}

.footer-links a {
    color: #ffffff !important;
    /* High contrast white links */
    text-decoration: none !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gp-primary) !important;
    transform: translateX(5px);
}

.gp-footer-bottom {
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 30px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8) !important;
    /* Brighter copyright text for readability */
    letter-spacing: 0.5px;
}

.gp-footer-bottom p {
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .gp-modern-footer {
        padding: 60px 0 100px !important;
        /* Extra padding for bottom nav */
        text-align: center;
    }

    .gp-footer-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .gp-footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gp-footer-socials {
        justify-content: center;
    }

    .column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .gp-footer-bottom {
        text-align: center;
        margin-top: 40px;
    }
}