/* 联系我们页面样式 - 重新设计 */

/* 主内容区域 */
.contact-main {
    padding-top: 0px;
    min-height: 100vh;
    background: #F9F1E4;
}

/* 英雄区域样式 - 已移除 */

/* 联系卡片区域样式 */
.contact-cards-section {
    padding: 80px 0;
    background: #F9F1E4;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 15px;
    text-align: center;
    color: #AA1322;
}

.title-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #707070;
}

.card-title {
    font-size: 1.5rem;
    color: #AA1322;
    margin-bottom: 25px;
    font-weight: 600;
}

.card-content {
    text-align: left;
}

.info-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.info-label {
    font-weight: 600;
    color: #333;
    min-width: 80px;
}

.info-text {
    color: #666;
    flex: 1;
}

.info-link {
    color: #AA1322;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: #d32f2f;
    text-decoration: underline;
}

.highlight {
    color: #AA1322;
    font-weight: 600;
    font-size: 1.1rem;
}

.qrcode-group {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.qrcode-item {
    text-align: center;
}

.qrcode-item img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.qrcode-item p {
    font-size: 0.9rem;
    color: #666;
}

/* 地图区域样式 */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.map-info {
    padding-right: 40px;
}

.map-title {
    font-size: 2.2rem;
    color: #AA1322;
    margin-bottom: 15px;
    font-weight: 600;
}

.map-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-icon {
    font-size: 1.2rem;
    color: #707070;
}

.location-text {
    color: #333;
    font-size: 1rem;
}

.map-visual {
    position: relative;
}

.map-placeholder {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.map-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    text-align: center;
}

.map-overlay h3 {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
}

.map-overlay p {
    margin: 0;
    opacity: 0.9;
}

/* 合作优势区域样式 */
.advantages-section {
    padding: 80px 0;
    background: #F9F1E4;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #707070;
}

.advantage-item h3 {
    font-size: 1.3rem;
    color: #AA1322;
    margin-bottom: 15px;
    font-weight: 600;
}

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

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .map-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-info {
        padding-right: 0;
        text-align: center;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .qrcode-group {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .advantage-item {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .map-title {
        font-size: 1.8rem;
    }
}