.sp-footer {
    background: linear-gradient(180deg, #1c1c1c 0%, #181818 100%);
    color: #a8a8a8;
    direction: rtl;
    text-align: right;
    margin-top: auto;
    flex-shrink: 0;
    font-size: 13px;
    line-height: 1.8;
    position: relative;
}
.sp-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,164,90,.4), transparent);
}
.sp-footer .text-muted {
    font-size: 12px;
    color: #6b6b6b;
}
.sp-footer-back-to-top {
    text-align: center;
    padding: 16px 0;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #6b6b6b;
    transition: color .35s ease;
    position: relative;
}
.sp-footer-back-to-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: rgba(200,164,90,.25);
    transition: width .35s ease;
}
.sp-footer-back-to-top:hover {
    color: #C8A45A;
}
.sp-footer-back-to-top:hover::after {
    width: 80px;
    background: rgba(200,164,90,.6);
}
.sp-footer-back-to-top span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.sp-footer-main {
    padding: 52px 0 44px;
    width: 100%;
}
.sp-footer-content {
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
    padding: 0 24px;
}
.sp-footer-section h3 {
    font-size: 12px;
    font-weight: 700;
    color: #d4d4d4;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: .02em;
    position: relative;
    padding-bottom: 12px;
}
.sp-footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 2px;
    background: #C8A45A;
    border-radius: 1px;
}
.sp-footer-section h3 i {
    font-size: 12px;
    color: #C8A45A;
    opacity: .8;
}
.sp-footer-links,
.sp-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sp-footer-links li,
.sp-footer-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}
.sp-footer-list li i {
    font-size: 9px;
    color: #C8A45A;
    opacity: .5;
    transition: opacity .25s ease;
}
.sp-footer-list li:hover i {
    opacity: 1;
}
.sp-footer-section a {
    color: #8a8a8a;
    text-decoration: none;
    transition: color .3s ease, padding-right .3s ease;
    padding: 6px 0;
    display: inline-block;
    position: relative;
}
.sp-footer-section a::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 2px;
    width: 0;
    height: 1px;
    background: #C8A45A;
    transition: width .35s ease;
}
.sp-footer-section a:hover {
    color: #C8A45A;
    padding-right: 4px;
}
.sp-footer-section a:hover::before {
    width: 100%;
}
.sp-footer-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sp-footer-trust-badge {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .3s ease, background .3s ease;
}
.sp-footer-trust-badge:hover {
    border-color: rgba(200,164,90,.3);
    background: rgba(200,164,90,.05);
}
.sp-footer-trust-badge img {
    max-width: 80px;
    height: auto;
    display: block;
}
.sp-footer-trust-badge a {
    display: block;
    padding: 0;
}
.sp-footer-trust-badge a::before { display: none; }
.sp-footer-trust-badge a:hover { padding-right: 0; }
.sp-footer-section p {
    color: #8a8a8a;
    line-height: 1.9;
    margin-bottom: 12px;
    font-size: 13px;
}
.sp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.05);
    padding: 24px 0;
}
.sp-footer-bottom-content {
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}
.sp-footer-logo a {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d4d4d4;
    font-weight: 700;
    text-decoration: none;
    padding: 0;
}
.sp-footer-logo a::before { display: none; }
.sp-footer-logo a i {
    color: #C8A45A;
    font-size: 16px;
}
.sp-footer-copyright {
    font-size: 12px;
    color: #6b6b6b;
}
@media (max-width: 1024px) {
    .sp-footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .sp-footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        padding: 0 20px;
    }
    .sp-footer-main {
        padding: 40px 0 32px;
    }
    .sp-footer-bottom-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .sp-footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
