/* Simple Footer Styles - Celebrato */

.simple-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 2rem 0 1rem;
    margin-top: 3rem;
}

.footer-brand .brand-name {
    color: #333;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-brand .brand-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge-item {
    color: #28a745;
    font-size: 0.85rem;
    font-weight: 500;
}

.footer-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
}

.service-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-areas a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    background-color: #e9ecef;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-areas a:hover {
    color: #007bff;
    background-color: #dee2e6;
}

.contact-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #007bff;
    width: 16px;
}

.social-section {
    margin-top: 1rem;
}

.social-section .footer-title {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-divider {
    border-color: #dee2e6;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.legal-link {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #007bff;
}

.footer-legal-links .mx-2 {
    color: #ccc;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.social-link {
    color: #666;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #007bff;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
}

.scroll-to-top:active {
    transform: translateY(0);
}

.scroll-to-top.show {
    display: flex;
}

/* Footer Logo Responsive Styling */
.simple-footer .logo-responsive {
    height: 40px;
}

@media (max-width: 768px) {
    .simple-footer .logo-responsive {
        height: 35px;
    }
}

@media (max-width: 575.98px) {
    .simple-footer .logo-responsive {
        height: 30px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .simple-footer {
        padding: 1.5rem 0 1rem;
    }
    
    /* Company info section - full width on mobile */
    .simple-footer .row > div:first-child {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    /* Hide Service Areas on mobile */
    .simple-footer .row > div:nth-child(3) {
        display: none;
    }
    
    /* Quick Links and Contact Us - horizontal row */
    .simple-footer .row > div:nth-child(2),
    .simple-footer .row > div:nth-child(4) {
        flex: 1;
        min-width: 0;
        padding: 0.5rem;
        margin-bottom: 0;
    }
    
    .service-areas {
        justify-content: flex-start;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .footer-legal-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.25rem;
        font-size: 0.75rem;
        justify-content: center;
    }
    
    .footer-legal-links .mx-2 {
        display: inline;
        margin: 0 0.25rem;
    }
    
    .legal-link {
        font-size: 0.75rem;
        padding: 0;
        white-space: nowrap;
    }
}
