/* 联系我们页面样式 */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

/* 联系信息 */
.contact-info {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.contact-info-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 32px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: #fff;
}

.contact-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}

.contact-value a {
    color: var(--primary-color);
}

.contact-value a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

.qr-placeholder {
    width: 120px;
    height: 120px;
    background: var(--bg-gray);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
}

.qr-placeholder i {
    font-size: 40px;
    color: var(--text-lighter);
    margin-bottom: 8px;
}

.qr-placeholder span {
    font-size: 12px;
    color: var(--text-lighter);
}

/* 营业时间 */
.business-hours {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.hours-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.hours-day {
    color: var(--text-color);
}

.hours-time {
    color: var(--text-light);
}

/* 询价表单 */
.contact-form-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.contact-form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.contact-form-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-color);
    background: #fff;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    padding: 10px 16px;
    background: var(--bg-gray);
    cursor: pointer;
}

.file-hint {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 8px;
}

.btn-block {
    width: 100%;
}

/* 地图 */
.map-section {
    padding: 40px 0;
    background: var(--bg-gray);
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.map-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-lighter);
}

.map-placeholder i {
    font-size: 48px;
    margin-bottom: 16px;
}

.map-placeholder span {
    font-size: 16px;
    margin-bottom: 8px;
}

.map-placeholder p {
    font-size: 14px;
}

/* 常见问题 */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.faq-q {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.faq-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.faq-answer {
    padding-left: 52px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* 响应式 */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 24px;
    }
}
