.breadcrumb a:hover {
color: #C9A959;
}

.page-header {
display: none;
}

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

/* 联系信息 */
.contact-info h2 {
color: #1A3A5C;
font-size: 24px;
margin-bottom: 25px;
padding-bottom: 10px;
border-bottom: 3px solid #C9A959;
display: inline-block;
}

.contact-item {
display: flex;
gap: 20px;
margin-bottom: 25px;
padding: 20px;
background: #F5F7FA;
border-radius: 8px;
}

.contact-icon {
font-size: 30px;
flex-shrink: 0;
}

.contact-item h3 {
color: #1A3A5C;
margin-bottom: 8px;
font-size: 16px;
}

.contact-item p {
color: #666;
line-height: 1.6;
}

/* 在线留言表单 */
.contact-form h2 {
color: #1A3A5C;
font-size: 24px;
margin-bottom: 25px;
padding-bottom: 10px;
border-bottom: 3px solid #C9A959;
display: inline-block;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 12px 15px;
border: 1px solid #E0E0E0;
border-radius: 5px;
font-size: 14px;
font-family: inherit;
transition: border-color 0.3s;
}

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

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

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

.btn-submit {
padding: 12px 35px;
background: #1A3A5C;
color: white;
border: none;
border-radius: 5px;
font-size: 16px;
font-weight: 500;
cursor: pointer;
transition: background 0.3s;
}

.btn-submit:hover {
background: #2C5F8D;
}

/* 分支机构 */
.branches {
margin-top: 60px;
}

.branches h2 {
color: #1A3A5C;
font-size: 24px;
margin-bottom: 30px;
text-align: center;
}

.branch-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
}

.branch-card {
background: #fff;
border: 1px solid #E0E0E0;
border-radius: 8px;
padding: 25px;
transition: all 0.3s;
}

.branch-card:hover {
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.branch-card h3 {
color: #1A3A5C;
margin-bottom: 15px;
font-size: 18px;
}

.branch-card p {
color: #666;
margin-bottom: 8px;
font-size: 14px;
}

/* 地图占位 */
.map-section {
margin-top: 60px;
}

.map-section h2 {
color: #1A3A5C;
font-size: 24px;
margin-bottom: 20px;
text-align: center;
}

.map-placeholder {
background: linear-gradient(135deg, #1A3A5C 0%, #2C5F8D 100%);
height: 400px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 20px;
}

/* 表单错误提示 */
.error-message {
display: none;
color: #dc3545;
font-size: 12px;
margin-top: 4px;
}

/* 字符计数 */
.char-count {
display: block;
text-align: right;
font-size: 12px;
color: #6c757d;
margin-top: 4px;
}

/* 成功消息 */
.success-message {
text-align: center;
padding: 40px 20px;
background: #f8f9fa;
border-radius: 10px;
border: 2px solid #28a745;
}

.success-icon {
font-size: 48px;
margin-bottom: 15px;
}

.success-message h3 {
color: #28a745;
margin-bottom: 10px;
}

.success-message p {
color: #6c757d;
}

/* 提交按钮加载状态 */
.btn-submit:disabled {
background: #6c757d;
cursor: not-allowed;
}

.btn-loading {
color: white;
}

@media (max-width: 768px) {
.banner {
height: 200px;
}

.contact-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.form-row {
grid-template-columns: 1fr;
}

.contact-item {
flex-direction: column;
text-align: center;
}

.branch-grid {
grid-template-columns: 1fr;
}

.map-placeholder {
height: 300px;
}

.btn-submit {
width: 100%;
}
}
