/* HomeForm.css */

.contact-form-parent {
    padding: 0px 0px;
    padding-bottom: 40px;
    background-color: #fff;
}

.contact-form {
    background: #325CAA;
    
    padding: 0px 0px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative;
    overflow: hidden;
}

/* LEFT CONTENT */
.contact-left-content {
    position: relative;
    height: 100%;
    width: 55%;
    padding: 40px;
}

.contact-left-content h2 {
    color: white;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: left;
    z-index: 2;
    position: absolute;
    max-width: 400px;
    left: 0;
    top: 0;
}

.contact-girl {
    /* width: auto; */
    z-index: 1;
}

.contact-w {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    z-index: 0;
}

.contact-right-arrow {
    position: absolute;
    right: -10px;
    bottom: 0;
    /* transform: translateY(-50%); */
    /* width: 100px; */
    height: auto;
    z-index: 3;
}


/* RIGHT CONTENT */
.contact-right-content {
    background: transparent;
    padding: 20px 40px;
    height: 100%;
    width: 45%;
    align-items: flex-start !important;
}

.contact-right-content .title {
    color: white;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
}

.contact-right-content .title strong {
    font-weight: 700;
}

/* FORM INPUTS */
.contact-name-input,
.contact-email-input,
.contact-message-input,
.contact-right-content select {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    background: white;
    font-size: 15px;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-name-input::placeholder,
.contact-email-input::placeholder,
.contact-message-input::placeholder {
    color: #999;
    font-size: 15px;
}

.contact-name-input:focus,
.contact-email-input:focus,
.contact-message-input:focus,
.contact-right-content select:focus {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.contact-message-input {
    border-radius: 24px;
    min-height: 140px;
    resize: vertical;
    padding: 20px 24px;
}

/* DROPDOWN STYLING */
.contact-right-content select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 24px center;
    cursor: pointer;
    padding-right: 50px;
}

/* GAP BETWEEN INPUTS */
.contact-right-content > * {
    margin-bottom: 12px;
}

.contact-right-content > *:last-child {
    margin-bottom: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .contact-home-form {
        flex-direction: column !important;
        padding: 40px 20px;
    }

    .contact-left-content,
    .contact-right-content {
        width: 100% !important;
    }

    .contact-left-content {
        min-height: 400px;
        margin-bottom: 40px;
    }

        .contact-left-content h2 {
            font-size: 36px;
        }

    .contact-girl {
        height: 380px;
    }

    .contact-right-arrow {
        display: none;
    }
}

@media (max-width: 576px) {
    .contact-left-content h2 {
        font-size: 28px;
    }

    .contact-right-content .title {
        font-size: 16px;
    }

    .contact-girl {
        height: 320px;
    }
}
