/* 联系我们页面样式 */
.contact-hero {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #0a1929 0%, #1a2b3f 50%, #0d47a1 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/contact/01.png');
    background-position: center;
    background-size: cover;
    opacity: 1;
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-align: center;
    display: none;
}

/* 联系我们模块 */
.contact-info-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.contact-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 60px 0;
}

.contact-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
}

.contact-card-left {
    flex: 0 0 60%;
    background: #f0f0f0;
    position: relative;
    min-height: 400px;
}

.contact-card-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.contact-card-right {
    flex: 1;
    padding: 50px 60px;
}

.contact-company-info {
    margin-bottom: 40px;
}

.company-name-en {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.company-name-zh {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-detail-row {
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.contact-label {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    min-width: 60px;
    flex-shrink: 0;
}

.contact-value {
    font-size: 15px;
    color: #666;
    flex: 1;
}

.contact-social {
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.linkedin-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    color: #000;
    transition: all 0.3s;
}

.linkedin-icon:hover {
    color: #0077b5;
    transform: scale(1.1);
}

.linkedin-icon svg {
    width: 100%;
    height: 100%;
}

/* 响应式 */
@media (max-width: 992px) {
    .contact-card {
        flex-direction: column;
    }
    
    .contact-card-left {
        flex: none;
        height: 300px;
    }
    
    .contact-card-right {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 150px;
    }
    
    .contact-info-section {
        padding: 60px 0;
    }
    
    .contact-section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .contact-card-left {
        height: 200px;
    }
    
    .contact-card-right {
        padding: 30px 20px;
    }
    
    .company-name-en {
        font-size: 16px;
    }
    
    .company-name-zh {
        font-size: 14px;
    }
    
    .contact-label,
    .contact-value {
        font-size: 14px;
    }
}
