/* Shared floating buttons & footer */
.site-footer {
    text-align: center;
    padding: 1.25rem 1rem;
    background-color: whitesmoke;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    border-top: 1px solid #e0e0e0;
}

.site-footer a {
    color: #007BFF;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.site-footer .heart {
    color: red;
}

.site-footer-corporate {
    background: linear-gradient(180deg, #f8fbff 0%, #f4f8fc 100%);
    color: #5e6d7e;
    border-top: 1px solid #e7edf4;
    padding: 0;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.site-footer-corporate a {
    color: #516173;
    text-decoration: none;
}

.site-footer-corporate a:hover {
    color: #4db6ac;
    text-decoration: none;
}

.site-footer-corporate::before,
.site-footer-corporate::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(77, 182, 172, 0.12) 0%, rgba(77, 182, 172, 0) 72%);
    pointer-events: none;
}

.site-footer-corporate::before {
    left: -80px;
    bottom: -120px;
}

.site-footer-corporate::after {
    right: -100px;
    top: 40px;
}

.site-footer-cta {
    max-width: 860px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 2.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.site-footer-cta-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #607d8b 0%, #4db6ac 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 12px 26px rgba(96, 125, 139, 0.18);
}

.site-footer-cta h3 {
    margin: 0 0 0.75rem;
    font-size: 2.15rem;
    line-height: 1.15;
    color: #1f2d3a;
    font-weight: 700;
}

.site-footer-cta p {
    margin: 0 auto 1.4rem;
    max-width: 620px;
    line-height: 1.7;
    font-size: 0.98rem;
}

.site-footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    justify-content: center;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #607d8b 0%, #4db6ac 100%);
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(77, 182, 172, 0.22);
}

.site-footer-cta-btn:hover {
    color: #fff !important;
    transform: translateY(-1px);
}

.site-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem 2.5rem;
    display: grid;
    grid-template-columns: 1.4fr repeat(4, minmax(150px, 1fr));
    gap: 2rem 2.2rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 1100px) {
    .site-footer-inner {
        grid-template-columns: minmax(240px, 1.6fr) repeat(4, minmax(120px, 1fr));
        align-items: start;
    }
}

.site-footer-brand h3,
.site-footer-col h4 {
    margin: 0 0 0.9rem;
    color: #1f2d3a;
    font-weight: 700;
}

.site-footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.site-footer-col a {
    font-size: 0.92rem;
    line-height: 1.45;
}

.site-footer-contact-col a,
.site-footer-address {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.site-footer-contact-col i,
.site-footer-address i {
    width: 1rem;
    margin-top: 0.12rem;
    color: #4db6ac;
}

.site-footer-address {
    font-size: 0.92rem;
    line-height: 1.55;
}

.site-footer-bottom {
    border-top: 1px solid #e7edf4;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem 1.4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.65rem 1.5rem;
    font-size: 0.82rem;
    position: relative;
    z-index: 1;
}

.site-footer-bottom p {
    margin: 0;
}

.site-footer-credit {
    margin: 0;
    text-align: center;
}

.site-footer-credit a {
    font-weight: 600;
    color: #4db6ac;
}

.site-footer-credit a:hover {
    color: #607d8b;
}

.site-footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.fab-dock {
    position: fixed;
    bottom: 85px;
    right: 20px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.whatsapp-fab {
    position: fixed;
    bottom: 85px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
    z-index: 1001;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.fab-dock .whatsapp-fab {
    position: static;
    bottom: auto;
    right: auto;
}

.whatsapp-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
    color: white;
}

.quote-fab {
    position: fixed;
    bottom: 155px;
    right: 20px;
    background: linear-gradient(135deg, #607D8B 0%, #455a64 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 22px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(96, 125, 139, 0.4);
    z-index: 1001;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Roboto', sans-serif;
    white-space: nowrap;
}

.quote-fab:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(96, 125, 139, 0.5);
    color: white;
}

.appointment-fab {
    background: linear-gradient(135deg, #4db6ac 0%, #3a9087 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 22px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(77, 182, 172, 0.4);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Roboto', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}

.appointment-fab:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(77, 182, 172, 0.5);
    color: white;
}

@media (max-width: 768px) {
    .site-footer-cta {
        padding: 2.7rem 1.2rem 2rem;
    }

    .site-footer-cta h3 {
        font-size: 1.75rem;
    }

    .site-footer-inner {
        grid-template-columns: 1fr 1fr;
        padding: 0.75rem 1.2rem 1.75rem;
        gap: 1.4rem 1.25rem;
    }

    .site-footer-bottom {
        flex-direction: column;
        padding: 1rem 1.2rem 1.25rem;
    }

    .fab-dock {
        bottom: 70px;
        right: 15px;
        gap: 10px;
    }

    .whatsapp-fab {
        bottom: 70px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .quote-fab {
        bottom: 130px;
        right: 15px;
        padding: 12px 16px;
        font-size: 0.85em;
    }

    .appointment-fab {
        padding: 12px 16px;
        font-size: 0.85em;
    }
}

@media (max-width: 576px) {
    .site-footer-cta h3 {
        font-size: 1.45rem;
    }

    .site-footer-inner {
        grid-template-columns: 1fr;
    }

    .site-footer-bottom-links {
        gap: 0.7rem 1rem;
        flex-direction: column;
    }

    .quote-fab span {
        display: none;
    }

    .quote-fab {
        bottom: 130px;
        padding: 12px 14px;
        border-radius: 50%;
    }

    .appointment-fab span {
        display: none;
    }

    .appointment-fab {
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
}
