
.thdr-ftr-wrap {
    /* background-color: var(--th-bg-dark, #0f0f0f);  */
    background-color: #000000;
    padding: 70px 5% 30px;
    border-top: 1px solid #222;
    color: #ffffff;
    font-family: 'Cairo', sans-serif; 
    direction: ltr; 
    
}

.thdr-ftr-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.thdr-ftr-title {
    color: var(--th-gold, #FFD700);
    font-size: 1.6rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.thdr-ftr-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--th-red-primary, #800000);
    bottom: -8px;
    left: 0;
}

.thdr-ftr-desc {
    color: var(--th-gray, #a1a1a1);
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 300px;
}

.thdr-ftr-contact-list {
    list-style: none;
    padding: 0;
}

.thdr-ftr-contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--th-gray, #a1a1a1);
    font-size: 1rem;
}

.thdr-ftr-icon-red { color: var(--th-red-primary, #800000); }
.thdr-ftr-icon-gold { color: var(--th-gold, #FFD700); }
.thdr-ftr-icon-white { color: #ffffff; }

.thdr-ftr-social-grid {
    display: flex;
    gap: 15px;
}

.thdr-ftr-social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.thdr-ftr-social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.thdr-ftr-social-btn.facebook:hover { background-color: #1877F2; border-color: #1877F2; }
.thdr-ftr-social-btn.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; }
.thdr-ftr-social-btn.tiktok:hover { background-color: #000000; border-color: #ffffff; text-shadow: 2px 2px 0px #ff0050; }
.thdr-ftr-social-btn.x-twitter:hover { background-color: #000000; border-color: #ffffff; }

.thdr-ftr-copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 0.9rem;
}

.thdr-ftr-copyright span {
    color: var(--th-gold, #FFD700);
    font-weight: bold;
}

@media (max-width: 768px) {
    .thdr-ftr-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .thdr-ftr-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .thdr-ftr-desc {
        margin: 0 auto;
    }

    .thdr-ftr-contact-list li {
        justify-content: center;
    }

    .thdr-ftr-social-grid {
        justify-content: center;
    }
}