/**
 * PC端联系我们页面样式
 *
 * @package HiTemp
 * @since 1.0.0
 */

/* ===== 页面基础 ===== */
.contact-page {
    background: #f8fafc;
}

/* ===== 页面头部 ===== */
.contact-page .article-hero {
    background: linear-gradient(135deg, #f66600 0%, #ff8534 50%, #ffa366 100%);
    position: relative;
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
}

.contact-page .article-hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.contact-page .article-hero .hero-content {
    max-width: 600px;
}

.contact-page .article-hero .hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.contact-page .article-hero .hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    min-height: 29px;
}

.contact-page .article-hero .hero-decoration {
    position: relative;
    width: 200px;
    height: 200px;
}

.contact-page .article-hero .deco-icon {
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 30px;
    left: 30px;
    transform: rotate(-8deg);
    backdrop-filter: blur(4px);
}

.contact-page .article-hero .deco-icon i {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-page .article-hero .deco-dots {
    width: 100px;
    height: 100px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.4) 2px, transparent 2px);
    background-size: 12px 12px;
    position: absolute;
    bottom: 0;
    right: 0;
}

/* ===== 内容区块 ===== */
.contact-page .content-section {
    padding: 60px 0;
}

.contact-page .content-section.bg-light {
    background: #fff;
}

.contact-page .section-content {
    width: 100%;
}

.contact-page .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
    text-align: center;
}

/* ===== 联系方式 ===== */
.contact-page .contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-page .contact-info-item {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e2e8f0;
}

.contact-page .contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #f66600;
}

.contact-page .contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f66600, #ff8534);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-page .contact-icon i {
    font-size: 36px;
    color: #fff;
}

.contact-page .contact-label {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.contact-page .contact-value {
    font-size: 16px;
    color: #475569;
    margin: 0;
}

.contact-page .contact-value a {
    color: #f66600;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-page .contact-value a:hover {
    color: #ff8534;
}

/* ===== 地图位置 ===== */
.contact-page .map-container {
    margin-top: 30px;
}

.contact-page .map-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f9;
    position: relative;
}

.contact-page .map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-page .map-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.contact-page .map-fallback-content {
    text-align: center;
    padding: 40px;
}

.contact-page .map-fallback-content i {
    font-size: 64px;
    color: #94a3b8;
    margin-bottom: 20px;
}

.contact-page .map-fallback-content p {
    font-size: 16px;
    color: #64748b;
    margin: 10px 0;
}

.contact-page .map-address {
    font-size: 18px;
    color: #1e293b;
    font-weight: 600;
    margin-top: 20px;
}

.contact-page .map-address-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.contact-page .map-address-display i {
    color: #f66600;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-page .map-address-display span {
    font-size: 16px;
    color: #475569;
    font-weight: 500;
}

/* ===== 工作时间 ===== */
.contact-page .work-time-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.contact-page .work-time-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.contact-page .work-time-item i {
    font-size: 32px;
    color: #f66600;
    flex-shrink: 0;
}

.contact-page .work-time-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.contact-page .work-time-content p {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

/* ===== 温馨提示 ===== */
.contact-page .tips-content {
    margin-top: 30px;
}

.contact-page .tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-page .tips-column {
    width: 100%;
}

.contact-page .tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-page .tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    border-bottom: 1px solid #f1f5f9;
}

.contact-page .tips-list li:last-child {
    border-bottom: none;
}

.contact-page .tips-list li i {
    color: #f66600;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ===== 响应式 ===== */
@media (max-width: 1200px) {
    .contact-page .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-page .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-page .work-time-info {
        grid-template-columns: 1fr;
    }
    
    .contact-page .map-placeholder {
        height: 300px;
    }
    
    .contact-page .tips-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
