.footer {
    background-color: #100901;
    color: #ffffff;
    font-family: var(--default-font);
    font-size: 1.05rem;
    line-height: 1.6;
}

.footer-top {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.footer-title {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.text-accent {
    color: #f87500 !important;
}

.contact-icon {
    width: 38px;
    height: 38px;
    background: rgba(248, 117, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f87500;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: #f87500;
    color: #ffffff;
    transform: scale(1.1);
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 12px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: #f87500;
    color: #ffffff;
    transform: translateY(-3px);
}

.help-box {
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.help-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(248, 117, 0, 0.3) !important;
}

.help-box a {
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.help-box a:hover {
    color: #f87500;
    padding-left: 5px;
}

.help-box p {
    color: rgba(255, 255, 255, 0.7);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.sitename {
    font-family: var(--heading-font);

    font-weight: 800;
    color: #f87500;
}