/* ── SugarPros — Site Footer ───────────────────────────────────────────── */

.site-footer {
    background: #133a59;
    color: #e2e8f0;
    border-top: 3px solid #2889aa;
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px 24px 0;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
}
@media (max-width: 900px) {
    .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
    .footer-container { grid-template-columns: 1fr; text-align: center; padding: 36px 20px 0; }
}

/* brand */
.footer-brand img { height: 38px; margin-bottom: 16px; }
@media (max-width: 560px) {
    .footer-brand img { margin-left: auto; margin-right: auto; }
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #9fb3c8;
    max-width: 320px;
    margin: 0;
}
@media (max-width: 560px) {
    .footer-brand p { margin-left: auto; margin-right: auto; }
}

/* columns */
.footer-column h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    margin: 0 0 16px;
}

.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: #9fb3c8;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.15s, padding-left 0.15s;
}
.footer-links a:hover { color: #fff; }
@media (min-width: 561px) {
    .footer-links a:hover { padding-left: 4px; color: #6cc5e0; }
}

/* contact */
.footer-contact { list-style: none; margin: 0 0 18px; padding: 0; }
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}
@media (max-width: 560px) {
    .footer-contact li { justify-content: center; }
}
.footer-contact i {
    width: 32px; height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(40, 137, 170, 0.18);
    border-radius: 9px;
    color: #f97316;
    flex-shrink: 0;
}
.footer-contact a { color: #cbd5e1; text-decoration: none; transition: color 0.15s; }
.footer-contact a:hover { color: #fff; }

/* social */
.footer-social { display: flex; gap: 10px; }
@media (max-width: 560px) {
    .footer-social { justify-content: center; }
}
.footer-social a {
    width: 38px; height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    font-size: 0.95rem;
    transition: background 0.18s, color 0.18s, transform 0.18s;
}
.footer-social a:hover {
    background: #2889aa;
    color: #fff;
    transform: translateY(-3px);
}

/* bottom bar */
.footer-bottom {
    max-width: 1180px;
    margin: 40px auto 0;
    padding: 18px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.84rem;
    color: #9fb3c8;
}
@media (max-width: 560px) {
    .footer-bottom { flex-direction: column; text-align: center; }
}
.footer-bottom .footer-legal { display: flex; gap: 20px; }
.footer-bottom .footer-legal a { color: #9fb3c8; text-decoration: none; transition: color 0.15s; }
.footer-bottom .footer-legal a:hover { color: #fff; }
