.footer {
    box-shadow: 0px 0px 50px 5px rgba(0, 0, 0, 0.25);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-bottom: 30px;

    background:
/* إضاءة من اليمين (برتقالي) */
        linear-gradient(
            to top left,
            rgba(255, 186, 108, 0.185),
            transparent 55%
        ),
        /* إضاءة من الشمال (موف) */
        linear-gradient(to right, rgba(131, 121, 184, 0.35), transparent 40%),
        /* اللون الأساسي */ #000000;
}

.footer-film-strip {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: transparent;
    overflow: hidden;
    padding: 8px 1%;
}
.footer-film-strip img {
    width: 100%;
    display: block;
}
.footer-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 60px 15px 30px;
}
@media (max-width: 1440px) {
    .footer-container {
        max-width: 1220px;
    }
}
@media (max-width: 1400px) {
    .footer-container {
        max-width: 1140px;
    }
}
@media (max-width: 1200px) {
    .footer-container {
        max-width: 960px;
    }
}
@media (max-width: 992px) {
    .footer-container {
        max-width: 720px;
        padding: 50px 20px 30px;
    }
}
@media (max-width: 768px) {
    .footer-container {
        max-width: 540px;
        padding: 40px 15px 20px;
    }
}
@media (max-width: 576px) {
    .footer-container {
        max-width: 100%;
        padding: 40px 20px 20px;
    }
}
@media (max-width: 380px) {
    .footer-container {
        padding: 30px 15px 15px;
    }
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.footer-logo img {
    height: auto;
    width: clamp(150px, 14vw, 310px);
}
@media (max-width: 380px) {
    .footer-logo img {
        width: clamp(120px, 15vw, 150px);
    }
}
.footer-about {
    flex: 1;
    max-width: 380px;
}
.footer-about p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    max-width: 90%;
}
@media (max-width: 992px) {
    .footer-about {
        max-width: 100%;
    }
}
.footer-links {
    display: flex;
    flex-direction: column;
    margin-top: 53px;
}
.footer-links h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    position: relative;
    padding-bottom: 10px;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links ul li {
    margin-bottom: 12px;
}
.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    display: inline-block;
    position: relative;
    padding-left: 0;
}
.footer-links ul li a:hover {
    color: #fff;
}
.footer-links.footer-discover ul li a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 0;
    background-color: #f8992c;
    transition: width 0.3s ease;
}
.footer-links.footer-discover ul li a:hover {
    color: #f8992c;
}
.footer-links.footer-discover ul li a:hover:after {
    width: 100%;
}
.footer-links.footer-support ul li a.active {
    color: #44bda4;
}
.footer-links.footer-support ul li a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 0;
    background-color: #44bda4;
    transition: width 0.3s ease;
}
.footer-links.footer-support ul li a:hover {
    color: #44bda4;
}
.footer-links.footer-support ul li a:hover:after {
    width: 100%;
}
.footer-links.footer-support ul li a.active {
    color: #44bda4;
}
.footer-links ul li a.active:after {
    width: 100%;
}
.footer-discover h3 {
    color: #f8992c;
}
.footer-support h3 {
    color: #44bda4;
}
.footer-contact {
    flex: 1;
    max-width: 380px;
    margin-top: 45px;
}
.footer-contact h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #8379b8;
    position: relative;
    padding-bottom: 10px;
}
.footer-contact p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    max-width: 90%;
}
.footer-contact .footer-form {
    display: flex;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.footer-contact .footer-form input {
    flex: 1;
    height: 42px;
    padding: 0 20px;
    border: none;
    border-radius: 50px;
    outline: none;
    font-size: 14px;
    background-color: transparent;
}
.footer-contact .footer-form input::placeholder {
    color: #999;
    font-size: 14px;
}
.footer-contact .footer-form button {
    min-width: 100px;
    height: 42px;
    padding: 0 25px;
    border: none;
    border-radius: 50px;
    background-color: #f05271;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.footer-contact .footer-form button:hover {
    background-color: #f8992c;
}
@media (max-width: 576px) {
    .footer-contact .footer-form {
        gap: 10px;
    }
    .footer-contact .footer-form input {
        border-radius: 22px;
        width: 100%;
    }
    .footer-contact .footer-form button {
        border-radius: 22px;
    }
}
@media (max-width: 992px) {
    .footer-contact {
        max-width: 100%;
    }
}
.footer-colored-bar {
    height: 8px;
    width: 100%;
    margin: 10px 0 0px;
    background: linear-gradient(
        to right,
        #44bda4 33%,
        #f8992c 33%,
        #f8992c 67%,
        #8379b8 67%
    );
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}
.footer-bottom .footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}
.footer-bottom .footer-links-bottom {
    display: flex;
    gap: 30px;
}
.footer-bottom .footer-links-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}
.footer-bottom .footer-links-bottom a:hover {
    color: #fff;
}
.footer-bottom .footer-links-bottom a:not(:last-child):after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
}
html[dir="rtl"] .footer-bottom .footer-links-bottom a:not(:last-child):after {
    right: auto;
    left: -15px;
}
@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-bottom .footer-links-bottom {
        justify-content: center;
    }
}

[dir="rtl"] .footer-links h3:after {
    left: auto;
    right: 0;
}
[dir="rtl"] .footer-links ul li a {
    padding-left: 0;
    padding-right: 0;
}
[dir="rtl"] .footer-links ul li a:hover {
    padding-left: 0;
}
[dir="rtl"] .footer-links ul li a:after {
    left: auto;
    right: 0;
}
[dir="rtl"] .footer-contact h3:after {
    left: auto;
    right: 0;
}
[dir="rtl"] .footer-form input {
    border-radius: 50px;
}
[dir="rtl"] .footer-form button {
    border-radius: 50px;
}

/*# sourceMappingURL=footer.css.map */
