/* SalekSport — site footer */

.sf-footer {
    --sf-bg: #0b0d12;
    --sf-bg-soft: #12151c;
    --sf-border: rgba(255, 255, 255, 0.08);
    --sf-text: rgba(255, 255, 255, 0.88);
    --sf-muted: rgba(255, 255, 255, 0.58);
    --sf-subtle: rgba(255, 255, 255, 0.38);
    --sf-accent: #059dff;
    --sf-accent-soft: rgba(5, 157, 255, 0.14);
    --sf-green: #22c55e;
    --sf-radius: 16px;
    --sf-radius-sm: 12px;
    background: var(--sf-bg);
    color: var(--sf-text);
    border-top: 1px solid var(--sf-border);
    position: relative;
    overflow: hidden;
}

.sf-footer::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 220px;
    background:
        radial-gradient(600px 180px at 85% 0%, rgba(5, 157, 255, 0.12), transparent 70%),
        radial-gradient(500px 160px at 10% 0%, rgba(251, 83, 67, 0.08), transparent 65%);
    pointer-events: none;
}

body.active-light-mode .sf-footer {
    --sf-bg: #f3f6f9;
    --sf-bg-soft: #ffffff;
    --sf-border: #e5e9ef;
    --sf-text: #101828;
    --sf-muted: #667085;
    --sf-subtle: #98a2b3;
    --sf-accent-soft: rgba(5, 157, 255, 0.1);
}

.sf-footer__main {
    position: relative;
    z-index: 1;
    padding: 72px 0 48px;
}

.sf-footer__brand-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
}

.sf-footer__brand-logo img {
    max-height: 46px;
    width: auto;
}

.sf-footer__brand-title {
    margin: 0 0 10px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sf-text);
}

.sf-footer__brand-text {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.85;
    color: var(--sf-muted);
    max-width: 340px;
}

.sf-footer__heading {
    margin: 0 0 18px;
    font-size: 15px;
    font-weight: 700;
    color: var(--sf-text);
    letter-spacing: -0.01em;
}

.sf-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sf-footer__links li + li {
    margin-top: 10px;
}

.sf-footer__links a {
    color: var(--sf-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sf-footer__links a:hover {
    color: var(--sf-accent);
}

.sf-footer__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.sf-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--sf-muted);
}

.sf-footer__contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--sf-accent-soft);
    color: var(--sf-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
}

.sf-footer__contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sf-footer__contact-item a:hover {
    color: var(--sf-accent);
}

.sf-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.sf-footer__social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--sf-border);
    background: var(--sf-bg-soft);
    color: var(--sf-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.sf-footer__social a:hover {
    transform: translateY(-2px);
    border-color: rgba(5, 157, 255, 0.45);
    background: var(--sf-accent-soft);
    color: var(--sf-accent);
}

.sf-footer__trust {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: var(--sf-radius-sm);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.sf-footer__trust img {
    display: block;
    max-width: 90px;
    height: auto;
}

.sf-footer__map-card {
    background: var(--sf-bg-soft);
    border: 1px solid var(--sf-border);
    border-radius: var(--sf-radius);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.sf-footer__map-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--sf-border);
}

.sf-footer__map-head h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--sf-text);
}

.sf-footer__map-link {
    font-size: 12px;
    color: var(--sf-accent);
    text-decoration: none;
    white-space: nowrap;
}

.sf-footer__map-link:hover {
    text-decoration: underline;
}

.sf-footer__map {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    min-height: 220px;
    background: #111;
}

.sf-footer__map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.sf-footer__bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--sf-border);
    padding: 18px 0;
    background: rgba(0, 0, 0, 0.18);
}

body.active-light-mode .sf-footer__bottom {
    background: rgba(255, 255, 255, 0.65);
}

.sf-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.sf-footer__copyright {
    margin: 0;
    font-size: 13px;
    color: var(--sf-subtle);
}

.sf-footer__bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sf-footer__bottom-links a {
    font-size: 13px;
    color: var(--sf-muted);
    text-decoration: none;
}

.sf-footer__bottom-links a:hover {
    color: var(--sf-accent);
}

@media (max-width: 991px) {
    .sf-footer__main {
        padding-top: 56px;
    }

    .sf-footer__map {
        min-height: 260px;
    }
}

@media (max-width: 767px) {
    .sf-footer__main {
        padding: 48px 0 36px;
    }

    .sf-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
