/* 联系咨询页面样式 */

.contact-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.contact-header h1 {
    color: #f5e6c8;
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-header p {
    color: #b8a890;
    font-size: 18px;
}

/* 联系方式 */
.contact-section {
    padding: 100px 0;
    background-color: #faf8f5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    color: #1a1a1a;
    font-size: 32px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: #f5e6c8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    color: #d4a853;
}

.contact-detail h3 {
    color: #1a1a1a;
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-detail p {
    color: #d4a853;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 4px;
}

.contact-detail span {
    color: #888;
    font-size: 14px;
}

/* 联系表单 */
.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
    color: #1a1a1a;
    font-size: 32px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e4dc;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: #faf8f5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a853;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #d4a853 0%, #b89442 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.4);
}

/* 地图区域 */
.map-section {
    padding: 0 0 100px;
    background-color: #fff;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px;
    color: #fff;
}

.map-overlay h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.map-overlay p {
    color: #ccc;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 36px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .map-overlay {
        padding: 24px;
    }
}
