/* ========== Contact 页面独有样式 ========== */
.contact-hero {
    background: linear-gradient(135deg, #0A2647 0%, #1E3A5F 100%);
    color: white;
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-hero .gold {
    color: #D4AF37;
}

/* 联系卡片容器 */
.contact-card {
    background: white;
    border-radius: 48px;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0 auto;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
}

/* 左侧联系信息区域 */
.contact-info {
    flex: 1;
    padding: 48px;
    background: #FFFFFF;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 32px;
    color: #0A2647;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 32px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: #F1F5F9;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #D4AF37;
}

.info-detail h4 {
    font-weight: 600;
    margin-bottom: 6px;
    color: #0A2647;
}

.info-detail p,
.info-detail a {
    color: #475569;
    line-height: 1.5;
}

.info-detail a:hover {
    color: #D4AF37;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #F1F5F9;
    border-radius: 50%;
    font-size: 1.3rem;
    color: #0A2647;
    transition: 0.2s;
}

.social-links a:hover {
    background: #D4AF37;
    color: white;
    transform: translateY(-3px);
}

/* 右侧二维码区域 */
.qr-section {
    flex: 1;
    background: #F8FAFC;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
    text-align: center;
}

.qr-code {
    max-width: 260px;
    width: 100%;
    background: white;
    padding: 20px;
    border-radius: 32px;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.qr-code img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.qr-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0A2647;
    margin-bottom: 8px;
}

.qr-desc {
    color: #64748b;
    font-size: 0.9rem;
}

.qr-note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.qr-note i {
    color: #D4AF37;
}

@media (max-width: 900px) {
    .contact-grid {
        flex-direction: column;
    }
    .contact-info {
        padding: 32px;
    }
    .qr-section {
        padding: 48px 32px;
    }
}

@media (max-width: 480px) {
    .info-item {
        gap: 12px;
    }
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}