@charset "utf-8";

/* CSS Document */
.direct-footer-inc {
    direction: rtl;
    text-align: right
}

.contentfooter {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
}

.top-contact-bar-footer {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 15px;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    font-family: var(--font-family-manrope);
    border-bottom: solid 1px #2f2f2f
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.contact-item-footer i {
    font-size: 26px;
    color: #1e90ff;
}

.contact-item-footer i.whatsapp-footer {
    color: #25D366;
}

.contact-item i.mail-footer {
    color: #1e90ff;
}

.contact-item i.call-footer {
    color: #1e90ff;
}

.contact-item-footer span {
    font-size: 16px;
    color: #bbb;
}

.contact-item-footer strong {
    font-size: 15px;
    font-weight: 600;
    display: block;
    margin-top: 2px;
}

/* 🔹 Responsive */
@media (max-width: 992px) {
    .top-contact-bar-footer {
        justify-content: center;
        text-align: left;
    }

    .contact-item-footer {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .top-contact-bar-footer {
        padding: 20px;
        flex-direction: column;
    }

    .contact-item-footer {
        width: 100%;
        justify-content: flex-start;
    }
}

.footer {
    background-image: url(../my-images/bg-04-free-img.jpg), linear-gradient(180deg, #110F0F 0%, #110F0F 100%);
    background-size: cover;
    background-repeat: no-repeat;
    color: #000000;
    padding: 20px 0 0px;
    direction: var(--direction);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    padding-top: 0;
    padding-right: 5%;
    padding-left: 5%;
    padding-bottom: 0;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    font-family: var(--font-family-inter);
    font-weight: 400;
    /* normal text */
    font-size: 16px
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-family: var(--font-family-manrope);
    font-weight: 600;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.footer-section-ar {
    flex: 1;
    min-width: 250px;
    font-family: var(--font-family-inter);
    font-weight: 400;
    /* normal text */
    font-size: 16px
}

.footer-section-ar h3 {
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-family: var(--font-family-manrope);
    font-weight: 600;
    text-align: right
}

.footer-section-ar h3:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.footer-about p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000000;
}

.footer-links ul {
    list-style: none;
    padding: 0px
}

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

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

.footer-links a .fa-chevron-right {
    margin-right: 10px;
    font-size: 12px
}

.footer-links a .fa-chevron-left {
    margin-left: 10px;
    font-size: 12px
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 0px;
}

.contact-info {
    list-style: none;
    padding: 0px
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    /* Optional: fine-tune vertical alignment */
}

.instagram-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.instagram-post {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    height: 80px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.instagram-post:hover {
    transform: scale(1.05);
}

.instagram-post img {
    width: 100%;
    height: 80px
}

.copyright {
    text-align: center;
    /*            padding: 20px 0;*/
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #000000;
    font-size: 14px;
}

.copyright p {
    float: left;
    margin-left: 10px
}

.copyright img {
    float: right;
    margin-right: 50px;
    margin-top: 7px
}

.logofooter {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;

}

.tagline {
    color: #000000;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 20px
}

.logofooter .image {
    width: 140px;
    height: 100px;
    /*	  filter:brightness(0) invert(1);*/
}

.footer-about .fab {
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 10px
}

.footer-about .fab:hover {
    color: #000000;

}

@media (max-width: 768px) {
    .copyright {
        text-align: center;
        /*            padding: 20px 0;*/
        margin-top: 100px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #e6e6e6;
        font-size: 14px;
        padding-bottom: 5px
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-section {
        min-width: 100%;
    }

    .footer-section-ar {
        min-width: 100%;
    }

    .copyright p {
        float: none;
        margin-left: 2px
    }

    .copyright img {
        float: left;
        margin-left: 10px
    }
}