
/* ========== FOOTER STYLES ========== */
.gp-child-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 50px 0 40px;
}

.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #4facfe;
    border-radius: 2px;
}

.footer-about {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a0aec0;
}

.footer-icon {
    font-size: 14px;
    min-width: 20px;
}

.footer-contact a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #4facfe;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #4facfe;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn:hover {
    background: #4facfe;
    transform: translateX(5px);
}

.business-hours {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 15px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #a0aec0;
}

.hour-row:last-child {
    border-bottom: none;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 12px;
    color: #a0aec0;
}

.copyright a,
.credits a {
    color: #a0aec0;
    text-decoration: none;
}

.copyright a:hover,
.credits a:hover {
    color: #4facfe;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .header-info {
        display: none;
    }
    
    .top-bar-left {
        justify-content: center;
    }
    
    .top-bar-content {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .gp-child-nav-menu {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-btn {
        justify-content: center;
    }
    
    .top-bar-left,
    .top-bar-right {
        justify-content: center;
    }
    
    .logo-area {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    
    .site-title {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .top-bar-left {
        flex-direction: column;
        gap: 5px;
    }
    
    .top-bar-separator {
        display: none;
    }
}