/* Footer Base Styles */
.footer-cta-bg-area {
    background-color: #4a453d;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.vl-footer1-section-area {
    padding: 60px 0;
}

.footer-row {
    direction: rtl;
}

/* Newsletter Section */
.footer-title {
    color: #c4b896;
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
}

.footer-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: end;
    max-width: 500px;
    margin-left: auto;
}

.footer-input {
    padding: 18px 30px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 35px;
    background-color:  #ffffff;
    font-size: 16px;
    text-align: right;
    width: 100%;
    margin-bottom: 15px;
}

.footer-btn {
    background-color: #c4b896;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 35px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    min-width: 150px;
}

/* Section Titles */
.section-title {
    color: #c4b896;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Footer Links */
.footer-links {
    margin-bottom: 20px;
}

.footer-link {
    display: block;
    margin-bottom: 12px;
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 30px 0;
}

.footer-bottom-row {
    direction: rtl;
    align-items: center;
}

.copyright-text {
    font-size: 16px;
    margin: 0;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: #c4b896;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Mobile Styles */
@media (max-width: 767px) {
    .vl-footer1-section-area {
        padding: 30px 0;
    }

    .footer-row {
        direction: ltr;
        display: flex;
        flex-direction: column;
    }

    .newsletter-section {
        order: 1;
        text-align: center;
        margin-bottom: 40px;
    }

    .menu-section {
        order: 2;
        margin-bottom: 30px;
    }

    .company-section {
        order: 3;
        margin-bottom: 30px;
    }

    .newsletter-form {
        align-items: center;
        margin: 0 auto;
        max-width: 90%;
    }

    .footer-input {
        text-align: center;
        font-size: 14px;
        padding: 15px 20px;
        margin-bottom: 20px;
    }

    .footer-btn {
        font-size: 16px;
        padding: 15px 30px;
        min-width: 120px;
    }

    .footer-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-subtitle {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-link {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-bottom-row {
        direction: ltr;
        flex-direction: column;
        text-align: center;
    }

    .copyright-section {
        order: 2;
        text-align: center;
        margin-top: 20px;
    }

    .social-section {
        order: 1;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon svg {
        width: 16px;
        height: 16px;
    }

    .copyright-text {
        font-size: 14px;
    }
}
