.ds-footer {
    background: #000;
    padding: 60px 50px;
    display: flex;
    justify-content: flex-end;
}
.ds-back-to-top {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    font-family: 'Manrope', sans-serif !important;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;
    transition: color 0.3s ease;
}
.ds-footer-arrow {
    width: 50px;
    height: 20px;
    position: relative;
    transform: rotate(-90deg);
}
.ds-footer-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 32px;
    height: 1.5px;
    background: #fff;
    transform: translateY(-50%);
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ds-footer-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    transform: translateY(-50%) rotate(45deg);
}
.ds-back-to-top:hover { color: #df0024; }
.ds-back-to-top:hover .ds-footer-arrow::before { width: 45px; }

.gm-footer {
    background-color: #000000;
    color: #f0f0f0;
    font-family: 'Manrope', sans-serif !important;
    padding: 3rem 1rem 2rem;
    border-top: 1px solid #222;
}
.gm-footer-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 1rem;
}
.gm-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
.gm-footer-heading {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.gm-footer-logo img {
    max-width: 180px;
    height: auto;
}
.gm-footer-about {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
}
.gm-footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.gm-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #1a1a1a;
    border-radius: 50%;
    color: #f0f0f0;
    transition: all 0.2s ease;
}
.gm-footer-social a:hover {
    background-color: #ed1c24;
    transform: translateY(-2px);
}
.gm-footer-menu-list {
    list-style: none;
    padding: 0;
}
.gm-footer-menu-list li {
    margin-bottom: 0.5rem;
}
.gm-footer-menu-list a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.6s ease-out;
}
.gm-footer-menu-list a:hover { color: #ffffff; }
.gm-footer-address, .gm-footer-contact {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}
.gm-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
}
.gm-footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.gm-footer-legal a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    font-size: 0.75rem;
}
.gm-footer-legal a:hover { color: #ed1c24; }
@media (max-width: 768px) {
    .gm-footer-grid { grid-template-columns: 1fr; text-align: center; }
    .gm-footer-social { justify-content: center; }
    .gm-footer-logo img { margin: 0 auto; }
}
@media (min-width: 769px) {
    .gm-footer-container { padding-left: 80px; }
}