/* 联系我们页面样式 */
.contact-page {
    padding-top: 64px;
    min-height: calc(100vh - 64px);
    background: #f8f9fa;
}

.contact-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

/* 页面标题 */
.page-header-section {
    text-align: center;
    margin-bottom: 48px;
}

.page-header-section h1 {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.page-header-section p {
    font-size: 16px;
    color: #666;
}

/* 联系信息卡片 */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #b1ce48 0%, #8ab82d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.card-icon i {
    font-size: 28px;
    color: white;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 15px;
    color: #666;
}

/* 表单区域 */
.contact-form-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.form-container h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.form-container > p {
    color: #666;
    margin-bottom: 24px;
}

.contact-form {
    margin-top: 24px;
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b1ce48;
}

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

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

/* 联系信息面板 */
.contact-info-panel {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    height: fit-content;
}

.contact-info-panel h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.work-time {
    margin-bottom: 32px;
}

.time-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.time-item:last-child {
    border-bottom: none;
}

.time-item .day {
    color: #666;
}

.time-item .time {
    color: #333;
    font-weight: 500;
}

/* 社交链接 */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #b1ce48;
    color: white;
}

.social-icon i {
    font-size: 20px;
}

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

@media (max-width: 768px) {
    .page-header-section h1 {
        font-size: 28px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 24px;
    }
}
