
/* Banner */
.contact-banner {
    width: 100%;
    padding: 40px 0;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.banner-text h1 {
    font-weight: 900;
    font-size: 50px;
    color: #0F172B;
}

.banner-text p {
    font-size: 16px;
    color: #45556C;
}

/* Form Container */
.contact-form {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px !important;
    max-width: 100%;
    margin: 0 auto;
}

.left-form {
    position: relative;
    /* width: 700px; */
    max-width: 100%;
    height: auto;
    min-height: 800px;
    background: #fff;
    color: #314158;
    padding: 30px;
    border-radius: 35px;
    overflow: hidden;
    border-top: 1px solid #F1F5F9;
    box-shadow: 0px 25px 50px -12px #1C398E0D;
}

.input-group,
.input-group input,
.input-group label,
.input-group textarea,
.left-form form, 
.left-form form div {
    background-color: transparent;
}
.left-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2B7FFF 0%, #615FFF 100%);
}

.row {
    display: flex;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
    width: 100%;
    flex: 1;
}

.input-group label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 6px;
    color: #314158;
}

.input-box {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    height: 52px;
    padding: 0 16px;
    background: #F8FAFC;
    overflow: hidden;
}

.input-box input,
.input-box select,
.input-box textarea {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-family: "Cairo", sans-serif;
    font-size: 14px;
    color: #0F172B;
    text-align: left;
    padding-right: 30px;
    padding-left: 0;
}

.icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.textarea-box {
    height: auto;
    align-items: flex-start;
    padding-top: 10px;
}

.textarea-box textarea {
    height: 120px;
    resize: none;
    padding-top: 5px;
}

.left-form button {
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 12px;
    background: #155DFC;
    color: #fff;
    box-shadow: 0px 4px 6px 2px #155DFC4D;
    font-size: 18px;
    font-weight: 700;
    font-family: "Cairo", sans-serif;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.left-form button:hover {
    background: rgba(21, 93, 252, 0.9);
}

.btn-icon {
    width: 18px;
}

/* cards */
.right-cards {
    display: flex;
    flex-direction: column;
    gap: 35px;
    width: 350px;
    min-width: 300px;
}

.right-cards .card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.right-cards .card h4 {
    font-weight: 700;
    font-size: 16px;
    color: #0F172B;
}

.right-cards .card p {
    font-size: 12px;
    color: #62748E;
}

.right-cards .card button {
    width: 100%;
    border: none;
    font-family: "Cairo", sans-serif;
    font-weight: bold;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.right-cards .first-card {
    box-shadow: 0px 10px 15px -3px #00C9501A;
    background: radial-gradient(circle at top right, #F0FDF4 0%, transparent 30%), #FFFFFF;
}

.right-cards .first-card p {
    color: #00A63E;
}

.right-cards .card .first-btn {
    background: #F0FDF4;
    border-top: 1px solid #B9F8CF;
    color: #008236;
}

.right-cards .card .first-btn:hover {
    background-color: #008236;
    color: #ffffff;
}

.right-cards .second-card {
    box-shadow: 0px 10px 15px -3px #2B7FFF1A;
    background: radial-gradient(circle at top right, #EFF6FF 0%, transparent 30%), #FFFFFF;
}

.right-cards .card .second-btn {
    background: #EFF6FF;
    border-top: 1px solid #BEDBFF;
    color: #1447E6;
}

.right-cards .card .second-btn:hover {
    background-color: #1447E6;
    color: #ffffff;
}

.right-cards .third-card {
    box-shadow: 0px 10px 15px -3px #0000001A;
}

.right-cards .card .third-btn {
    background: #F1F5F9;
    height: 70px;
    cursor: default;
}

/* FAQ Section */
.faq-section {
    direction: rtl;
    padding: 50px 20px;
    background-color: #F8FAFC;
    font-family: "Cairo", sans-serif;
}

.faq-title {
    text-align: center;
    font-weight: 800;
    font-size: 32px;
    color: #0F172B;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    box-shadow: 0px 10px 25px -5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-header {
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 20px;
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #1D293D;
    margin: 0;
    line-height: 1.5;
}

.faq-icon-wrapper {
    width: 44px;
    height: 44px;
    background: #F1F5F9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.faq-icon-wrapper img {
    background-color: transparent;
}
.arrow-icon {
    width: 20px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.faq-item.active {
    border-color: #155DFC;
    box-shadow: 0px 15px 30px -10px rgba(21, 93, 252, 0.1);
}

.faq-item.active .faq-icon-wrapper {
    background: #155DFC;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 32px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: #64748B;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid #F8FAFC;
}

/* CTA Section */
.cta-section {
    padding: 0 20px 50px 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.cta-container {
    width: 100%;
    max-width: 1200px;
    background: linear-gradient(90deg, #155DFC 0%, #432DD7 100%);
    border-radius: 40px;
    padding: 80px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0px 25px 50px -12px rgba(43, 127, 255, 0.25);
}

.cta-content {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

.cta-title {
    font-family: "Cairo", sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 40px;
    color: #FFFFFF;
    background-color: transparent;
}

.cta-button {
    background-color: #FFFFFF;
    color: #193CB8;
    text-decoration: none;
    padding: 16px 45px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-family: "Cairo", sans-serif;
    box-shadow: 0px 8px 10px -6px #0000001A;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
    background-color: #fcfcfc;
}

.cta-btn-icon {
    width: 20px;
    height: 20px;
}

/* Media Queries */
@media (max-width: 1140px) and (min-width: 993px) {
    .left-form {
        width: 600px;
    }

    .form-container {
        gap: 20px !important;
    }
}

@media (max-width: 992px) {
    .cta-title {
        font-size: 36px;
    }

    .cta-container {
        padding: 60px 30px;
    }

    .form-container {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
    }

    .left-form {
        width: 100%;
        min-height: auto;
        order: 1;
    }

    .right-cards {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        order: 2;
    }

    .right-cards .card {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 15px;
    }

    .cta-container {
        border-radius: 30px;
        padding: 50px 20px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    /* body {
        padding: 20px;
    } */

    .right-cards {
        flex-direction: column;
        width: 100%;
        min-width: auto;
    }

    .banner-text h1 {
        font-size: 28px;
    }

    .row {
        flex-direction: column;
        gap: 0;
    }

    .faq-header {
        padding: 20px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-icon-wrapper {
        width: 38px;
        height: 38px;
    }

    .arrow-icon {
        width: 16px;
    }

    .left-form {
    padding: 20px;
}
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 24px;
    }

    .cta-content {
        gap: 25px;
    }
}