/* 页面标题 */
.page-header {
    background: linear-gradient(rgba(26, 58, 95, 0.85), rgba(26, 58, 95, 0.9)), url('/pc/img/contact-ad.jpeg') center/cover no-repeat;
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 1rem 0;
}

.breadcrumb li {
    margin: 0 0.5rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb li:not(:last-child):after {
    content: '>';
    margin-left: 1rem;
    color: rgba(255,255,255,0.8);
}

/* 联系区域 */
.contact-container {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

/* 联系信息卡片 */
.contact-card {
    background: white;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: var(--transition);
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(243, 156, 18, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent);
    font-size: 2rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-card a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
    transition: var(--transition);
}

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

/* 联系表单 */
.contact-form-section {
    background: white;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin-top: 2rem;
}

.section-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--accent);
}

.form-description {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.submit-button:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* 地图区域 */
.map-section {
    margin-top: 4rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

#map-container {
    height: 500px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.map-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

/* 常见问题 */
.faq-section {
    margin: 5rem auto;
    max-width: 1400px;
    padding: 0 5%;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    background: var(--primary);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    padding: 1.5rem;
    color: var(--gray);
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
