/* ==========================================================================
   Contact Page Styles (contact.psd design specifications)
   Theme: Power Packaging
   Author: Gemini CLI
   ========================================================================== */

.contact-section-container {
    width: 100%;
    padding: 8.125rem 0;
    background-color: #ffffff;
}

.contact-section-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 5.625rem;
}

/* 左侧：宣传大图包装 */
.contact-section-left {
    width: 45rem;
    height: 38.1875rem;
    border-radius: 0.75rem;
    overflow: hidden;
    /*background-color: #f6f6f6;*/
    /*box-shadow: 0 0.25rem 1.25rem rgba(0,0,0,0.01);*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-side-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.contact-section-left:hover .contact-side-image {
    transform: scale(1.02);
}

/* 右侧：表单详情 */
.contact-section-right {
    width: 39.375rem;
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-size: 2.8125rem;
    font-weight: bold;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-size: 0.9375rem;
    color: #000000;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

/* 联系信息表单 */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    width: 100%;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 0.625rem;
    padding-left: 0.75rem;
    text-align: left;
}

.form-label span{
    color: #6fa032;
}

.form-control {
    width: 100%;
    height: 3.5rem;
    padding: 0 1.5rem;
    font-size: 0.8125rem;
    font-weight: bold;
    color: #000000;
    border: 1px solid #bebebe;
    border-radius: 1.75rem;
    background-color: #ffffff;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s;
}

.form-control::-webkit-input-placeholder {
    color: #bebebe;
    font-weight: normal;
}
.form-control:-ms-input-placeholder {
    color: #bebebe;
    font-weight: normal;
}
.form-control::placeholder {
    color: #bebebe;
    font-weight: normal;
}

.form-control:focus {
    border-color: #6fa032;
    background-color: #ffffff;
    box-shadow: 0 0 0 0.25rem rgba(111,160,50,0.1);
}

.form-row {
    display: flex;
    flex-direction: row;
    gap: 0.875rem;
    width: 100%;
}

.form-row .col-6 {
    width: 50%;
}

.form-control.textarea {
    height: 10rem;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    resize: none;
    font-family: inherit;
    line-height: 1.6;
}

.btn-submit-requirements {
    width: 100%;
    height: 3.5rem;
    background-color: #6fa032;
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: bold;
    border: none;
    border-radius: 1.75rem;
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
    box-shadow: 0 0.25rem 0.9375rem rgba(111,160,50,0.2);
    margin-top: 0.625rem;
}

.btn-submit-requirements:hover {
    background-color: #4c7d21;
    box-shadow: 0 0.375rem 1.25rem rgba(111,160,50,0.3);
}

.btn-submit-requirements:active {
    transform: scale(0.99);
}