/* Schuberts Footer Builder Styles */
.schuberts-footer-builder {
    padding: 60px 20px 30px;
    margin-top: 80px;
}

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

.schuberts-footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}

.schuberts-footer-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.schuberts-footer-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.schuberts-footer-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media (min-width: 768px) {
    .schuberts-footer-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .schuberts-footer-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .schuberts-footer-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.schuberts-footer-column {
    text-align: center;
}

.footer-column-heading {
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Text Content */
.footer-text {
    line-height: 1.6;
}

.footer-text p {
    margin-bottom: 10px;
}

/* Menu Styles */
.footer-menu {
    margin-top: 15px;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-menu-list li {
    margin-bottom: 10px;
}

.footer-menu-list a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu-list a:hover {
    transform: translateX(0);
}

/* Social Icons */
.footer-social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
    justify-content: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon svg {
    transition: all 0.3s ease;
}

/* Address Styles */
.footer-address {
    font-style: normal;
    line-height: 1.8;
    text-align: center;
}

.footer-address > div {
    margin-bottom: 8px;
}

.address-company {
    font-weight: 600;
    margin-bottom: 12px;
}

.address-phone a,
.address-email a {
    text-decoration: none;
}

.address-phone a:hover,
.address-email a:hover {
    text-decoration: underline;
}

/* Copyright Section */
.footer-copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    line-height: 1.6;
    font-family: sans-serif;
}

.footer-copyright p {
    margin: 5px 0;
}

.footer-copyright a {
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.footer-copyright a:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 767px) {
    .schuberts-footer-builder {
        padding: 40px 15px 20px;
        margin-top: 60px;
    }
    
    .schuberts-footer-grid {
        gap: 30px;
    }
    
    .footer-column-heading {
        font-size: 18px !important;
    }
}
