/* Contact Page - Simple Styles */

.contact-us-section {
    /* background: #1a1a1a; */
}

/* Image Background */
.img-background {
    width: 100%;
    /* height: 400px; */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 130px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.img-background:hover {
    /* opacity: 0.9; */
}

.img-background img {
    width: 90%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.img-background:hover img {
    /* transform: scale(1.02); */
}

/* Content Section */
.contact-content-section {
    /* background: #1a1a1a; */
    padding: 60px 0;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding: 0 0px;
    margin-top: -700px;
}

/* Contact Form */
.contact-form-section {
    flex: 1;
    background: var(--color-primary-violet);
    padding: 50px 40px;
    border-radius: 10px;
}

.contact-title {
    color: white;
    font-size: 28px;
    margin-bottom: 40px;
    text-align: right;
}

.contact-form-wrapper {
    width: 100%;
}

/* Contact Buttons */
.contact-buttons-section {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 0px;
    justify-content: center;
    margin-top: 228px;
    align-content: center;
    height: 70px;
    border-radius: 10px;
    margin-top: 600px;
    background: var(--color-secondary-deep);
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--color-secondary-deep);
    padding: 25px 30px;
    /* border-radius: 10px; */
    cursor: pointer;
    height: 70px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.contact-button:hover {
    opacity: 0.9;
}

.contact-button-icon {
    width: 28px;
    height: 28px;
}

.contact-button-text {
    color: white;
    font-size: 18px;
    font-weight: 900;
}

.contact-button-text .phone-prefix {
    color: var(--color-purple);
}

/* Contact Form 7 */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.wpcf7-form label {
    color: white;
    font-size: 16px;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

.wpcf7-text,
.wpcf7-email,
.wpcf7-tel,
.wpcf7-textarea {
    background: var(--color-primary-deep);
    border: none;
    color: white;
    padding: 15px;
    border-radius: 8px;
    width: 100%;
    font-size: 16px;
    direction: rtl;
    text-align: right;
}

.wpcf7-text::placeholder,
.wpcf7-email::placeholder,
.wpcf7-tel::placeholder,
.wpcf7-textarea::placeholder {
    color: var(--color-white);
    font-size: 16px;
    direction: rtl !important;
    text-align: right !important;
}

.wpcf7-textarea {
    min-height: 140px;
    resize: vertical;
}

.wpcf7-submit {
    background: var(--color-purple);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
    .contact-content-section {
        display: flex;
        flex-direction: column;
    }

    .img-background {
        margin-top: 40px;
        order: 3;
    }

    .img-background img {
        width: 100%;
    }

    .contact-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 15px;
        margin-top: 0;
        order: 1;
    }

    .contact-form-section {
        padding: 30px 20px;
        order: 1;
    }

    .contact-buttons-section {
        order: 2;
        margin-top: 0;
        flex-direction: column;
        gap: 15px;
        height: auto;
        align-items: stretch;
    }

    .contact-button {
        padding: 18px 20px;
        width: 100%;
        justify-content: center;
        height: auto;
    }

    .contact-button-icon {
        width: 24px;
        height: 24px;
    }

    .contact-button-text {
        font-size: 16px;
    }

    .contact-title {
        font-size: 22px;
        margin-bottom: 25px;
        text-align: center;
    }

    .wpcf7-form {
        gap: 20px;
    }

    .wpcf7-text,
    .wpcf7-email,
    .wpcf7-tel,
    .wpcf7-textarea {
        padding: 12px;
        font-size: 14px;
    }

    .wpcf7-textarea {
        min-height: 120px;
    }

    .wpcf7-submit {
        padding: 15px 30px;
        font-size: 16px;
        width: 100%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .contact-content-section {
        padding: 30px 0;
    }

    .img-background {
        margin-top: 30px;
    }

    .contact-container {
        padding: 0 10px;
        gap: 25px;
    }

    .contact-form-section {
        padding: 25px 15px;
    }

    .contact-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .contact-button {
        padding: 15px 18px;
    }

    .contact-button-text {
        font-size: 14px;
    }

    .wpcf7-form label {
        font-size: 14px;
    }

    .wpcf7-text,
    .wpcf7-email,
    .wpcf7-tel,
    .wpcf7-textarea {
        padding: 10px;
        font-size: 14px;
    }

    .wpcf7-textarea {
        min-height: 100px;
    }

    .wpcf7-submit {
        padding: 12px 25px;
        font-size: 15px;
    }
}