/* ============================================
   Builders Footer Styling
   ============================================ */

.builders-footer {
    background: #0a0c0d;
    padding: 80px 40px 40px;
    color: #ffffff;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.builders-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--builders-primary), transparent);
    opacity: 0.3;
}

.builders-footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.builders-footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
}

.builders-footer-brand {
    max-width: 300px;
}

.builders-footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.builders-footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.builders-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 32px;
}

.builders-footer-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.builders-footer-menu a:hover {
    color: var(--builders-primary);
}

.builders-footer-social {
    display: flex;
    gap: 16px;
}

.builders-footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.builders-footer-social a:hover {
    background: var(--builders-primary);
    border-color: var(--builders-primary);
    transform: translateY(-3px);
}

.builders-footer-social .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* Bottom Bar */
.builders-footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.builders-footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.builders-footer-legal {
    display: flex;
    gap: 24px;
}

.builders-footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.builders-footer-legal a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .builders-footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    
    .builders-footer-menu {
        flex-direction: column;
        gap: 16px;
    }
    
    .builders-footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}
