/* VRGoo Custom Footer */

/* Hide B2 theme's original footer content */
.site-footer .footer-widget,
.site-footer .widget-area,
.site-footer .footer-nav,
.b2-footer .footer-widget,
footer .widget_text,
.site-footer .footer-menu,
.site-footer-nav .footer-bottom,
.site-footer-nav {
    display: none !important;
}

.vrgoo-custom-footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 50px 0 0;
    margin-top: 40px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.vrgoo-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid Layout */
.vrgoo-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* About Column */
.vrgoo-footer-about h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
}

.vrgoo-footer-about p {
    font-size: 13px;
    line-height: 1.7;
    color: #ddd;
    margin: 0 0 16px;
}

.vrgoo-footer-contact span {
    font-size: 13px;
    color: #bbb;
}

/* Link Columns */
.vrgoo-footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #6c5ce7;
    display: inline-block;
}

.vrgoo-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vrgoo-footer-col ul li {
    margin-bottom: 10px;
}

.vrgoo-footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s, padding-left 0.2s;
}

.vrgoo-footer-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

/* Bottom Bar */
.vrgoo-footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.vrgoo-footer-bottom p {
    font-size: 12px;
    color: #aaa;
    margin: 0 0 6px;
    line-height: 1.6;
}

.vrgoo-footer-disclaimer {
    font-size: 11px !important;
    color: #888 !important;
}

/* ===== DARK MODE (already dark, but ensure compatibility) ===== */
.dark-theme .vrgoo-custom-footer,
.dark .vrgoo-custom-footer {
    background: #0d0d1a;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .vrgoo-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .vrgoo-footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .vrgoo-footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .vrgoo-custom-footer {
        padding: 35px 0 0;
    }
}
