/**
 * About Us - Company Profile Section Styles
 * 公司简介区块样式
 */

.company-profile-section {
    padding: 80px 0;
    background-color: #1a1d29;
    color: #ffffff;
    overflow: hidden;
}

/* 与页眉页脚对齐 */
.company-profile-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}

.company-profile-section .section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.company-profile-section .section-title {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
}

/* 内容区域 — 左60% 右40% */
.company-profile-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.company-profile-left {
    flex: 0 0 60%;
    max-width: 60%;
}

.company-profile-text {
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 18px;
    color: #e0e0e0;
}

.company-profile-text:last-child { margin-bottom: 0; }
.company-profile-text p { margin: 0 0 15px 0; }
.company-profile-text p:last-child { margin-bottom: 0; }

/* 右侧图片 — 40%，无圆角 */
.company-profile-right {
    flex: 0 0 40%;
    max-width: 40%;
}

.company-profile-image {
    width: 100%;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.company-profile-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 底部图标区域 — 无背景、无hover、文字不换行 */
.company-profile-icons {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.company-profile-icon-item {
    text-align: center;
}

.company-profile-icon-item .icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border-radius: 0;
}

.company-profile-icon-item .icon-wrapper img {
    max-width: 70px;
    max-height: 70px;
    width: auto;
    height: auto;
    /* 不加 filter，保留原始颜色 */
}

.company-profile-icon-item .icon-text {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

/* ============ 响应式 ============ */
@media (max-width: 1024px) {
    .company-profile-section { padding: 60px 0; }
    .company-profile-section .section-title { font-size: 40px; }
    .company-profile-content { gap: 40px; margin-bottom: 60px; }
    .company-profile-icons { grid-template-columns: repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
    .company-profile-section { padding: 40px 0; }
    .company-profile-section .section-title { font-size: 32px; letter-spacing: 1px; }
    .company-profile-content { flex-direction: column; gap: 30px; margin-bottom: 40px; }
    .company-profile-left,
    .company-profile-right { flex: 0 0 100%; max-width: 100%; }
    .company-profile-text { font-size: 15px; }
    .company-profile-icons { grid-template-columns: repeat(3, 1fr); gap: 20px; padding-top: 40px; }
    .company-profile-icon-item .icon-wrapper { width: 60px; height: 60px; }
    .company-profile-icon-item .icon-wrapper img { max-width: 40px; max-height: 40px; }
    .company-profile-icon-item .icon-text { font-size: 12px; white-space: normal; }
}

@media (max-width: 480px) {
    .company-profile-section { padding: 30px 0; }
    .company-profile-section .section-title { font-size: 24px; }
    .company-profile-icons { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .company-profile-icon-item .icon-wrapper { width: 50px; height: 50px; }
    .company-profile-icon-item .icon-wrapper img { max-width: 30px; max-height: 30px; }
    .company-profile-icon-item .icon-text { font-size: 11px; }
}
