
/* footer  */
.site-footer {
    background-color: var(--maincolor) !important;
    padding: 20px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-subtitle {
    font-size: 1.07rem;
    margin-bottom: 15px;
    border-right: 4px solid var(--thirdcolor);
    padding-right: 8px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ffffffcc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}
.footer-contact
{
    padding-right: 0;
}
.footer-contact li {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: #ffffffcc;
}
.footer-contact i {

    color: var(--thirdcolor);
    font-size: 1.2rem;
    margin-left: .3rem;
}

.footer-social a {
    color: #fff;
    margin-right: 10px;
    font-size: 1.2rem;
    display: inline-block;
    transition: 0.3s;
}

.footer-bottom {
    font-size: 0.9rem;
}

/* ==== الروابط: تأثير انزلاق لليمين عند المرور ==== */
.footer-links a {
    position: relative;
    color: #ffffffcc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a::after {
    content: '›';
    position: absolute;
    right: -15px;
    /* opacity: 0; */
    transition: all 0.3s ease;
    font-size: 20px;
}

.footer-links a:hover {
    color: #fff;
    padding-right: 10px;
}

.footer-links a:hover::after {
    opacity: 1;
    right: 0;
}

/* ==== أيقونات السوشيال ميديا: تكبير خفيف وتغيير لون ==== */
.footer-social a {
    color: #fff;
    margin-right: 10px;
    font-size: 1.2rem;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.2);
}

/* ==== زر الاشتراك: تغيير لون وتكبير خفيف ==== */
.input-subscribe
{
    border-radius: 0;
    background-color: transparent;
}
.btn-subscribe {
    background-color: var(--thirdcolor);
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-subscribe:hover {
    /* background-color: var(--maincolor); */
    background-color: var(--thirdcolor);
    /* opacity: .8; */
    transform: scale(1.08);
    /* padding: ; */
}
