/* Contact Form Section */
.contact_form_section {
    width: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 80px 0;
    font-family: poppins, sans-serif;
}

.contact_form_wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact_form_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 20px;
}

.contact_form_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact_section_title {
    font-size: 42px;
    font-weight: 700;
    color: #191919;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact_section_subtitle {
    font-size: 16px;
    color: #666666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form_group {
    display: flex;
    flex-direction: column;
}

.form_group.full_width {
    grid-column: 1 / -1;
}

.form_input,
.form_textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: poppins, sans-serif;
    color: #333333;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.form_input:focus,
.form_textarea:focus {
    outline: none;
    border-color: #e05306;
    box-shadow: 0 0 0 3px rgba(224, 83, 6, 0.1);
}

.form_input::placeholder,
.form_textarea::placeholder {
    color: #999999;
}

.form_textarea {
    resize: vertical;
    min-height: 150px;
}

.form_submit_wrapper {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
}

.submit_btn {
    background-color: #e05306;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: poppins, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit_btn:hover {
    background-color: #c93f00;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(224, 83, 6, 0.3);
}

.submit_btn:active {
    transform: translateY(0);
}

/* Contact Info Container */
.contact_info_container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact_info_title {
    font-size: 28px;
    font-weight: 700;
    color: #191919;
    margin-bottom: 10px;
}

.contact_info_item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #e05306;
    transition: all 0.3s ease;
}

.contact_info_item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.info_icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #e05306;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
}

.info_content {
    flex: 1;
}

.info_content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #191919;
    margin: 0 0 8px 0;
}

.info_content p,
.info_content a {
    font-size: 15px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

.info_content a {
    color: #e05306;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info_content a:hover {
    color: #c93f00;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact_form_container {
        gap: 40px;
    }

    .contact_section_title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .contact_form_section {
        padding: 60px 0;
    }

    .contact_form_container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form_row {
        grid-template-columns: 1fr;
    }

    .contact_section_title {
        font-size: 32px;
    }

    .contact_section_subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .contact_info_title {
        font-size: 24px;
    }

    .submit_btn {
        width: 100%;
        text-align: center;
    }

    .contact_info_item {
        gap: 15px;
        padding: 15px;
    }

    .info_icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .info_content h3 {
        font-size: 16px;
    }

    .info_content p,
    .info_content a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact_form_container {
        padding: 0 15px;
    }

    .contact_section_title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .contact_section_subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .form_input,
    .form_textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .submit_btn {
        padding: 14px 30px;
        font-size: 14px;
    }

    .contact_info_container {
        gap: 20px;
    }

    .contact_info_item {
        flex-direction: column;
        align-items: flex-start;
    }

    .info_icon {
        align-self: center;
    }
}
