/* Shared site footer — loaded on every public page (including service detail pages) */

.site-footer {
    background: #F8F8F8;
    color: #000000;
    padding: 4rem 0 1.5rem;
    margin-top: 0;
}

.site-footer h3 {
    color: #000000;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.site-footer p {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.7;
}

.site-footer a {
    color: #000000;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #333333;
    text-decoration: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.footer-section p:last-child {
    margin-bottom: 0;
}

.social-media-icons {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-media-icons h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.social-icons-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-icon:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #000000;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #333333;
    text-decoration: none;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.contact-info li {
    margin-bottom: 0.75rem;
}

.contact-info a {
    color: #000000;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #333333;
    text-decoration: none;
}

.address {
    margin-top: 1rem;
}

.address p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333333;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-policies {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-policies a {
    color: #000000;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-policies a:hover {
    color: #333333;
    text-decoration: none;
}

.copyright {
    color: #666666;
    font-size: 0.9rem;
    margin: 0;
}

.copyright p {
    margin: 0;
    color: #666666;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1d1d1f;
    color: #ffffff;
    padding: 1rem 0;
    z-index: 10001;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-consent-text {
    margin: 0;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
}

.cookie-consent-accept {
    flex-shrink: 0;
    padding: 0.625rem 1.5rem;
    background: #ffffff;
    color: #1d1d1f;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.cookie-consent-accept:hover {
    background: #f5f5f7;
    transform: translateY(-1px);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1a1a1a;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.whatsapp-float svg {
    fill: #ffffff;
}

.mobile-sticky-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 998;
    padding: 0.75rem 1rem;
}

.mobile-sticky-footer .sticky-buttons {
    display: flex;
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-sticky-footer .sticky-btn {
    flex: 1;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.mobile-sticky-footer .sticky-btn-whatsapp {
    background: #000000;
    color: #ffffff;
    font-weight: 600;
    border: 2px solid #000000;
}

.mobile-sticky-footer .sticky-btn-whatsapp:hover {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.mobile-sticky-footer .sticky-btn-whatsapp svg {
    fill: #ffffff;
}

.mobile-sticky-footer .sticky-btn-call {
    background: #0071e3;
    color: #ffffff;
    border: 2px solid #0071e3;
}

.mobile-sticky-footer .sticky-btn-call:hover {
    background: #005bb5;
    color: #ffffff;
}

.mobile-sticky-footer .call-text-mobile {
    display: none;
}

.mobile-sticky-footer .call-text-desktop {
    display: inline;
}

.mobile-sticky-footer .sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-sticky-footer .sticky-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 1rem;
    }

    .cookie-consent-accept {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        display: none;
    }

    .mobile-sticky-footer {
        display: block;
    }

    .mobile-sticky-footer .sticky-btn-whatsapp {
        display: flex;
    }

    .mobile-sticky-footer .call-text-mobile {
        display: inline;
    }

    .mobile-sticky-footer .call-text-desktop {
        display: none;
    }

    body {
        padding-bottom: 70px;
    }
}
