/* 基础变量 */
:root {
    --gold-color: #C5A367;
    --bg-color: #FAF6ED;
    --text-dark: #333;
    --border-color: #D1B88A;
}

.contact-container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
    font-family: 'Playfair Display', serif; /* 建议引入该字体更符合SPA风格 */
    color: var(--text-dark);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* 表单样式 */
.contact-form {
    flex: 2;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    background: transparent;
    border-radius: 8px;
    margin-bottom: 15px;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: var(--gold-color);
    box-shadow: 0 0 5px rgba(197, 163, 103, 0.2);
}

.btn-send {
    background-color: var(--gold-color);
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-send:hover {
    background-color: #b08f56;
    transform: translateY(-2px);
}

/* 右侧信息卡片 */
.contact-info {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.contact-info h3 {
    margin-top: 0;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-item .icon {
    color: var(--gold-color);
    font-size: 1.2rem;
}

/* --- 手机适配 (Responsive) --- */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form, .contact-info {
        width: 100%;
    }

    .contact-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-info {
        order: 2; /* 手机端让表单先显示 */
    }
}