/* Site footer + floating actions */
.site-footer {
    background: #0a0a0a;
    color: #fff;
    padding: 56px 0 0;
    margin-top: 0;
}

.site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px 40px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}

.footer-logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: #111;
}

.footer-logo span {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.55;
    max-width: 280px;
}

.footer-social {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
    padding: 0;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #fff;
}

.footer-social .ico {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.footer-social .ico.fb { background: #1877f2; }
.footer-social .ico.pin { background: #e60023; }
.footer-social .ico.ig {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c9a45c;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.45;
}

.footer-contact .mark {
    color: #c9a45c;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
    margin-top: 1px;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 28px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}

/* Floating WhatsApp + back to top */
.float-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1050;
    display: flex;
    align-items: center;
    gap: 10px;
}

.float-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 18px;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.float-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.float-wa svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.float-top {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #e8e8e8;
    color: #111;
    cursor: pointer;
    font-size: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    line-height: 1;
}

.float-top.visible {
    display: inline-flex;
}

.float-top:hover {
    background: #ddd;
}

@media (max-width: 900px) {
    .site-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .site-footer-inner {
        grid-template-columns: 1fr;
        padding: 0 20px 32px;
    }

    .footer-bottom {
        padding: 16px 20px 24px;
        flex-direction: column;
    }

    .float-actions {
        right: 14px;
        bottom: 14px;
    }

    .float-wa span {
        display: none;
    }

    .float-wa {
        width: 52px;
        height: 52px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .float-wa svg {
        width: 26px;
        height: 26px;
    }
}
