/* 覆盖全局section样式，调整留白 */
.section.bg-gradient-1 {
    padding: 80px 60px;
}

.section.bg-gradient-1 .section-content {
    max-width: 1400px;
    margin: 0 auto;
}

.section.bg-gradient-1 .section-title {
    margin-bottom: 14px;
}

.section.bg-gradient-1 .section-subtitle {
    margin-bottom: 36px;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 0;
    align-items: stretch;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0;
}

.contact-card {
    flex: 1;
    background-color: #ffffff;
    padding: 32px 40px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 50%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.contact-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.left-card {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-person-section {
    background: linear-gradient(135deg, #F9F5E9 0%, #F5EFE0 100%);
    padding: 40px 36px 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
}

.person-avatar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.person-details {
    flex: 1;
}

.person-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.person-phone,
.person-zip {
    font-size: 15px;
    color: #444;
    margin: 5px 0;
    font-weight: 400;
}

.contact-info-section {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.address-card,
.email-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.address-card .info-icon-wrapper,
.email-card .info-icon-wrapper {
    margin-bottom: 12px;
}

.address-card .info-label,
.email-card .info-label {
    margin-bottom: 8px;
}

.info-card {
    background: linear-gradient(145deg, #f8f9fa 0%, #f1f3f4 100%);
    padding: 24px 28px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.info-card:hover {
    background: linear-gradient(145deg, #f0f1f3 0%, #e9ecef 100%);
    transform: translateX(4px);
}

.info-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-text-wrapper {
    flex: 1;
}

.info-label {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-size: 15px;
    color: #333;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

.right-card {
    display: flex;
    flex-direction: column;
}

.form-header {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 28px 0;
    letter-spacing: -0.02em;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background-color: #fafafa;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #0066cc;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    margin-top: 8px;
    letter-spacing: 0.02em;
}

.submit-button:hover {
    background: linear-gradient(135deg, #0077ed 0%, #0066cc 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    display: none;
    padding: 12px;
    border-radius: 6px;
}

@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        padding: 0 16px;
        gap: 32px;
    }
    
    .contact-card {
        width: 100%;
        min-width: auto;
        padding: 32px;
    }
    
    .contact-person-section {
        flex-direction: column;
        text-align: center;
    }
}