.site-footer {
    background: #0f1722;
    color: #e5e7eb;
    padding: 3rem 0 1rem;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.85fr 1fr 0.85fr;
    gap: 1.2rem;
}

/* FOLLOW US */
.follow-us {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
    align-self: start;
    justify-self: end;
    text-align: right;
}

.follow-us h3 {
    margin-bottom: 0;
    color: #fff;
}

/* BRAND */
.footer-logo {
    font-size: 1.25rem;
    color: #fff;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.footer-logo-image {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid #2a3648;
    background: #fff;
}

.footer-text {
    color: #98a3b4;
}

/* LINKS */
.site-footer h3 {
    margin-bottom: 0.6rem;
    color: #fff;
}

.site-footer ul {
    list-style: none;
    display: grid;
    gap: 0.35rem;
}

.site-footer li a {
    color: #a7b0bf;
    text-decoration: none;
}

.site-footer li a:hover,
.site-footer li a:focus-visible {
    color: #fff;
}

/* Social grid */
.social-row {
    margin-top: 0.7rem;
    display: grid;
    grid-template-columns: repeat(2, 2.65rem);
    gap: 0.6rem;
    justify-content: flex-end;
}

.follow-us .social-row {
    margin-top: 0;
}

/* ICON BOX */
.social-row a {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 12px;
    border: 1px solid #2a3648;
    color: #d2d8e2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* 🔥 ICON FIX (IMPORTANT) */
.social-row .ico {
    width: 20px;
    height: 20px;
    display: block;
}

.social-glyph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1;
}

/* Instagram outline */
.social-row a[aria-label="Instagram"] .ico {
    fill: none;
    stroke: currentColor;
}

.social-row a[aria-label="Pinterest"] .ico,
.social-row a[aria-label="Twitter"] .ico,
.social-row a[aria-label="Facebook"] .ico {
    fill: currentColor;
    stroke: none;
}

.social-row .ico-twitter path,
.social-row .ico-facebook path {
    fill: currentColor;
    stroke: none;
}

.social-row a[aria-label="Instagram"] {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
    color: #ffffff;
}

.social-row a[aria-label="Pinterest"] {
    background: #e60023;
    color: #ffffff;
}

.social-row a[aria-label="Twitter"] {
    background: #111111;
    color: #ffffff;
}

.social-row a[aria-label="Facebook"] {
    background: #1877f2;
    color: #ffffff;
}

.social-row a[aria-label="Facebook"] .social-glyph {
    font-size: 16px;
    text-transform: lowercase;
    letter-spacing: 0;
}

/* HOVER */
.social-row a:hover,
.social-row a:focus-visible {
    color: #fff;
    border-color: #3b4a62;
    transform: translateY(-3px);
}

/* COPYRIGHT */
.copyright {
    margin-top: 2rem;
    text-align: center;
    color: #95a0b2;
    border-top: 1px solid #1b2534;
    padding-top: 1rem;
    font-size: 0.9rem;
}

/* FLOAT BUTTONS */
.to-top,
.whatsapp-float {
    position: fixed;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 120;
}

/* SCROLL TOP */
.to-top {
    bottom: 1rem;
    border: 1px solid #d4dae5;
    background: #fff;
    color: #1f2937;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.to-top.show {
    opacity: 1;
    transform: translateY(0);
}

/* WHATSAPP */
.whatsapp-float {
    bottom: 3.9rem;
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.34);
    transition: transform 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-2px);
}

.whatsapp-float .ico {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* RESPONSIVE */
@media (max-width: 1080px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .follow-us {
        align-items: flex-start;
        justify-self: start;
        text-align: left;
    }

    .social-row {
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}