/* 联系我们页面全新设计 - 科技感层次布局 */

/* 顶部横幅 - 现代科技风格 */
#contact-banner {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(29, 42, 58, 0.98) 100%);
    position: relative;
    padding: 5rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(58, 125, 255, 0.3);
    overflow: hidden;
}

/* 顶部横幅背景效果 */
#contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(58, 125, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        linear-gradient(rgba(58, 125, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(58, 125, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
    z-index: 1;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 0 50px, 0 -50px, 0 0, 0 0; }
}

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

/* 横幅主内容布局 */
#contact-banner .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: center;
}

/* 文字内容区域 */
#contact-banner .contact-header {
    background: rgba(255, 255, 255, 0.02);
    padding: 3.5rem;
    border-radius: 20px;
    border: 1px solid rgba(58, 125, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    width: 100%;
}

#contact-banner .contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(58, 125, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

#contact-banner .contact-header:hover::before {
    left: 100%;
}

/* 标题样式 */
#contact-banner h1.text-primary {
    color: #3A7DFF !important;
    font-weight: 800;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(58, 125, 255, 0.5);
    font-size: 2.8rem;
    line-height: 1.1;
}

#contact-banner h1.text-primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3A7DFF, #00D4FF);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(58, 125, 255, 0.6);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* 副标题样式 */
#contact-banner h3.regular-400 {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 400;
    margin-bottom: 2.5rem;
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

/* 联系信息列表样式 */
#contact-banner .list-unstyled {
    padding-left: 0;
    margin: 0;
}

#contact-banner .list-unstyled li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

#contact-banner .list-unstyled li:hover {
    color: rgba(255, 255, 255, 1) !important;
    transform: translateX(5px);
}

/* 图标样式 */
#contact-banner .list-unstyled i {
    color: #3A7DFF;
    margin-right: 1.25rem;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(58, 125, 255, 0.15), rgba(0, 212, 255, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(58, 125, 255, 0.3);
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(58, 125, 255, 0.2);
}

#contact-banner .list-unstyled li:hover i {
    color: #00D4FF;
    background: linear-gradient(135deg, rgba(58, 125, 255, 0.25), rgba(0, 212, 255, 0.15));
    border-color: rgba(0, 212, 255, 0.6);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(58, 125, 255, 0.4);
}

/* 链接样式 */
#contact-banner .list-unstyled a {
    color: inherit !important;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

#contact-banner .list-unstyled a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3A7DFF, #00D4FF);
    transition: width 0.3s ease;
}

#contact-banner .list-unstyled a:hover {
    color: #3A7DFF !important;
}

#contact-banner .list-unstyled a:hover::after {
    width: 100%;
}

/* 图片区域样式 */
#contact-banner .contact-img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    width: 100%;
}

#contact-banner .contact-img::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(58, 125, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -55%) scale(1.05); }
}

#contact-banner .contact-img img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(58, 125, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(58, 125, 255, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#contact-banner .contact-img img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(58, 125, 255, 0.3);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    /* 横幅布局 */
    #contact-banner .row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    #contact-banner h1.text-primary {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    /* 横幅容器 */
    #contact-banner {
        padding: 3.5rem 0;
    }
    
    /* 文字内容 */
    #contact-banner .contact-header {
        padding: 2.5rem 1.75rem;
    }
    
    #contact-banner h1.text-primary {
        font-size: 2rem;
    }
    
    #contact-banner h3.regular-400 {
        font-size: 1.2rem;
    }
    
    /* 图标大小 */
    #contact-banner .list-unstyled i {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    /* 图片区域 */
    #contact-banner .contact-img {
        padding: 1rem;
    }
    
    #contact-banner .contact-img img {
        border-radius: 15px;
    }
}

/* 主容器 */
.contact-container {
    position: relative;
    padding: 4rem 2rem;
    background: transparent;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    overflow: visible;
}

/* 标题区域 */
.contact-container .contact-header {
    margin-bottom: 4rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-container h1.text-primary {
    color: #3A7DFF !important;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.1;
    width: 100%;
    text-shadow: 0 0 15px rgba(58, 125, 255, 0.4);
    letter-spacing: 0.5px;
}

.contact-container h1.text-primary::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3A7DFF, #00D4FF);
    margin: 1rem auto 0;
    box-shadow: 0 0 10px rgba(58, 125, 255, 0.6);
    border-radius: 2px;
}

.contact-container h2 {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 400;
    width: 100%;
    letter-spacing: 0.3px;
}

.contact-container p {
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 1.1rem;
    max-width: 100%;
}

/* 主要内容区域 */
.contact-container .main-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin: 0;
    position: relative;
    align-items: stretch;
}

/* 确保联系卡片区域与表单区域对齐 */
.contact-container .contact-cards,
.contact-container .contact-form-wrapper {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    height: 100%;
}

/* 确保表单也能拉伸 */
.contact-container .contact-form {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* 表单内容区域 */
.contact-container .contact-form .row {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: start;
}

/* 调整联系卡片区域的内边距，与表单保持一致 */
.contact-container .contact-cards {
    padding: 0;
}

/* 调整表单区域的内边距，与联系卡片保持一致 */
.contact-container .contact-form-wrapper {
    padding: 0;
}

/* 确保联系卡片和表单的顶部对齐 */
.contact-container .contact-cards,
.contact-container .contact-form {
    vertical-align: top;
}

/* 移除任何可能影响对齐的默认样式 */
.contact-container * {
    box-sizing: border-box;
}

/* 装饰元素 - 增强层次感 */
.contact-container .main-content::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(58, 125, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
}

/* 联系卡片区域 */
.contact-container .contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: stretch;
    justify-content: stretch;
    height: 100%;
    min-height: 480px;
}

/* 联系卡片样式 */
.contact-container .contact {
    background: rgba(29, 42, 58, 0.95);
    border: 1px solid rgba(58, 125, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 120px;
    justify-content: center;
    transition: all 0.4s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-grow: 1;
}

/* 卡片装饰边框 */
.contact-container .contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(58, 125, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

/* 卡片悬停效果 */
.contact-container .contact:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(58, 125, 255, 0.7);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(58, 125, 255, 0.2);
}

.contact-container .contact:hover::before {
    left: 100%;
}

/* 联系图标样式 */
.contact-container .contact-icon {
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.contact-container .contact-icon div {
    background: linear-gradient(135deg, rgba(58, 125, 255, 0.2), rgba(0, 212, 255, 0.15)) !important;
    border: 1px solid rgba(58, 125, 255, 0.5) !important;
    border-radius: 12px !important;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 3px 10px rgba(58, 125, 255, 0.2);
    transition: all 0.4s ease;
}

.contact-container .contact:hover .contact-icon div {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(58, 125, 255, 0.3), rgba(0, 212, 255, 0.25)) !important;
    border-color: rgba(0, 212, 255, 0.8) !important;
    box-shadow: 0 10px 30px rgba(58, 125, 255, 0.5);
}

.contact-container .contact-icon i {
    color: #3A7DFF !important;
    font-size: 1.5rem;
    transition: all 0.4s ease;
}

.contact-container .contact:hover .contact-icon i {
    color: #00D4FF !important;
    transform: scale(1.1);
}

/* 联系信息文字样式 */
.contact-container .contact-info {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 2;
}

.contact-container .contact-info .h5 {
    color: #ffffff !important;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.2px;
    text-shadow: 0 0 10px rgba(58, 125, 255, 0.3);
}

.contact-container .contact-info li {
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 0.3rem;
    font-size: 0.88rem;
    line-height: 1.4;
}

/* 表单区域 */
.contact-container .contact-form-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 表单样式 */
.contact-container .contact-form {
    background: rgba(29, 42, 58, 0.95);
    border: 1px solid rgba(58, 125, 255, 0.3);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    width: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* 表单装饰效果 */
.contact-container .contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(58, 125, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
    filter: blur(30px);
}

/* 表单行布局优化 */
.contact-container .contact-form .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: start;
}

/* 全宽列 */
.contact-container .contact-form .row .col-12 {
    grid-column: span 2;
}

/* 半宽列 */
.contact-container .contact-form .row .col-lg-6 {
    grid-column: span 1;
}

/* 按钮容器 */
.contact-container .contact-form .row .col-md-12.col-12.m-auto.text-end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 0.5rem;
    grid-column: span 2;
}

/* 表单响应式设计 */
@media (max-width: 768px) {
    /* 在小屏幕上改为单列布局 */
    .contact-container .contact-form .row {
        grid-template-columns: 1fr;
    }
    
    /* 所有列都占满宽度 */
    .contact-container .contact-form .row .col-12,
    .contact-container .contact-form .row .col-lg-6,
    .contact-container .contact-form .row .col-md-12.col-12.m-auto.text-end {
        grid-column: span 1;
    }
    
    /* 按钮居中 */
    .contact-container .contact-form .row .col-md-12.col-12.m-auto.text-end {
        justify-content: center;
    }
}

/* 输入框样式 */
.contact-container .form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(58, 125, 255, 0.3) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    padding: 1rem 1.25rem !important;
    margin-bottom: 0 !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
    width: 100% !important;
    max-width: none !important;
}

/* 表单浮动容器 */
.contact-container .form-floating {
    margin-bottom: 1.5rem;
    width: 100%;
}

/* 输入框聚焦效果 */
.contact-container .form-control:focus {
    border-color: rgba(58, 125, 255, 0.8) !important;
    box-shadow: 0 0 15px rgba(58, 125, 255, 0.4), inset 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    transform: translateY(-2px);
}

/* 浮动标签样式 */
.contact-container .form-floating label {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-container .form-control:focus + label {
    color: #3A7DFF !important;
    transform: translateY(-1.2rem) scale(0.85);
}

/* 文本域样式 */
.contact-container .form-control[rows] {
    min-height: 120px;
    resize: vertical;
}

/* 大尺寸输入框样式 */
.contact-container .form-control-lg {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 1.25rem !important;
    line-height: 1.5 !important;
    border-radius: 12px !important;
}

/* 确保输入框在所有容器中都能占据全部宽度 */
.contact-container .form-floating .form-control,
.contact-container .form-floating .form-control-lg {
    width: 100% !important;
    max-width: 100% !important;
}

/* 移除任何可能限制输入框宽度的父容器样式 */
.contact-container .row > div {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
}

/* 确保所有输入框和文本域都能占据全部宽度 */
.contact-container input[type="text"],
.contact-container input[type="email"],
.contact-container input[type="tel"],
.contact-container textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* 增强选择器特异性，确保样式生效 */
.contact-container .contact-form .row > div > .form-floating > .form-control,
.contact-container .contact-form .row > div > .form-floating > .form-control-lg {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

/* 按钮样式 */
.contact-container .btn-secondary {
    background: linear-gradient(135deg, #3A7DFF, #00D4FF) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 1rem 3rem !important;
    font-weight: 700 !important;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(58, 125, 255, 0.4);
    font-size: 1.1rem;
    min-width: 200px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    float: right;
}

/* 按钮悬停效果 */
.contact-container .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(58, 125, 255, 0.6);
    background: linear-gradient(135deg, #2a6fe6, #00b8e6) !important;
}

/* 按钮点击效果 */
.contact-container .btn-secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(58, 125, 255, 0.5);
}

/* 共享科技风格样式 - 应用于公司介绍、联系banner、软件著作权和公司愿景 */
/* 定位公司介绍section */
section.bg-light.w-100,
section#contact-banner.bg-light,
section.bg-light.w-100:nth-of-type(3),
section.why-us.banner-bg.bg-light {
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(58, 125, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #0a1128 0%, #1a1a2e 50%, #16213e 100%) !important;
}

/* 企业文化section透明背景 */
section.banner-bg.bg-white.py-5 {
    background: transparent !important;
    position: relative;
    padding: 8rem 0;
    border-top: 1px solid rgba(58, 125, 255, 0.2);
    border-bottom: 1px solid rgba(58, 125, 255, 0.2);
    overflow: hidden;
}

/* 核心团队区域单独设置透明背景 */
section.container.py-5 {
    background: transparent !important;
    position: relative;
    padding: 2rem 0;
    box-shadow: none;
    border-top: none;
    border-bottom: none;
    overflow: visible;
}

/* 背景动态网格效果 */
section.bg-light.w-100::before,
section#contact-banner.bg-light::before,
section.bg-light.w-100:nth-of-type(3)::before,
section.why-us.banner-bg.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(58, 125, 255, 0.03) 2px,
            rgba(58, 125, 255, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(58, 125, 255, 0.03) 2px,
            rgba(58, 125, 255, 0.03) 4px
        );
    background-size: 50px 50px;
    z-index: 1;
    animation: gridMove 20s linear infinite;
}

/* 背景发光点效果 */
section.bg-light.w-100::after,
section#contact-banner.bg-light::after,
section.bg-light.w-100:nth-of-type(3)::after,
section.why-us.banner-bg.bg-light::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(58, 125, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite;
}

/* 主内容容器 */
section.bg-light.w-100 .container,
section#contact-banner.bg-light .container,
section.bg-light.w-100:nth-of-type(3) .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

/* 联系banner区域特定样式 */
section#contact-banner.bg-light {
    padding: 6rem 0;
}

/* 联系banner内容行布局 */
section#contact-banner.bg-light .row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    margin: 0;
    width: 100%;
    flex-wrap: nowrap;
}

/* 联系banner文字内容区域 */
section#contact-banner.bg-light .contact-header {
    background: rgba(255, 255, 255, 0.01);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(58, 125, 255, 0.15);
    box-shadow: 
        0 15px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 40px rgba(58, 125, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 40%;
    min-width: 0;
}

/* 公司愿景section标题样式 */
section.why-us.banner-bg.bg-light h2.h2.pb-3 {
    color: #ffffff !important;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(58, 125, 255, 0.5);
    margin-bottom: 2rem;
}

/* 公司愿景section文本样式 */
section.why-us.banner-bg.bg-light p.text-muted.pb-5.light-100 {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
}

/* 公司愿景section图片样式 */
section.why-us.banner-bg.bg-light img.rounded.img-fluid {
    border-radius: 24px !important;
    box-shadow: 0 12px 40px rgba(58, 125, 255, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 450px;
}

section.why-us.banner-bg.bg-light img.rounded.img-fluid:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 50px rgba(58, 125, 255, 0.4);
}

/* 企业文化section图标卡片样式 */
section.banner-bg.bg-white.py-5 .objective-icon.card.m-auto.py-4.mb-2.mb-sm-4.bg-secondary.shadow-lg {
    background: linear-gradient(135deg, rgba(58, 125, 255, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%) !important;
    border: 1px solid rgba(58, 125, 255, 0.3);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(58, 125, 255, 0.3), 0 0 20px rgba(58, 125, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

/* 图标卡片脉冲动画 */
@keyframes pulse {
    0% {
        box-shadow: 0 8px 32px rgba(58, 125, 255, 0.3), 0 0 20px rgba(58, 125, 255, 0.2);
    }
    50% {
        box-shadow: 0 12px 40px rgba(58, 125, 255, 0.4), 0 0 30px rgba(58, 125, 255, 0.3);
    }
    100% {
        box-shadow: 0 8px 32px rgba(58, 125, 255, 0.3), 0 0 20px rgba(58, 125, 255, 0.2);
    }
}

/* 图标卡片悬停效果 */
section.banner-bg.bg-white.py-5 .objective-icon.card.m-auto.py-4.mb-2.mb-sm-4.bg-secondary.shadow-lg:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 16px 50px rgba(58, 125, 255, 0.5), 0 0 40px rgba(58, 125, 255, 0.4);
    border-color: rgba(58, 125, 255, 0.7);
    animation: none;
}

/* 图标卡片内部发光效果 */
section.banner-bg.bg-white.py-5 .objective-icon.card.m-auto.py-4.mb-2.mb-sm-4.bg-secondary.shadow-lg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(58, 125, 255, 0.1) 0%, transparent 70%);
    animation: rotate 8s linear infinite;
}

/* 旋转动画 */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 企业文化section图标样式 */
section.banner-bg.bg-white.py-5 .objective-icon.card.m-auto.py-4.mb-2.mb-sm-4.bg-secondary.shadow-lg i {
    color: #ffffff !important;
    font-size: 2.5rem;
    text-shadow: 0 2px 10px rgba(58, 125, 255, 0.5);
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

/* 图标悬停效果 */
section.banner-bg.bg-white.py-5 .objective-icon.card.m-auto.py-4.mb-2.mb-sm-4.bg-secondary.shadow-lg:hover i {
    transform: scale(1.2);
    text-shadow: 0 4px 20px rgba(58, 125, 255, 0.8);
}

/* 企业文化section标题样式 */
section.banner-bg.bg-white.py-5 h2.objective-heading.h3.mb-2.mb-sm-4.light-300 {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.8rem;
    margin-top: 1.5rem;
    text-shadow: 0 2px 10px rgba(58, 125, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

/* 标题悬停效果 */
section.banner-bg.bg-white.py-5 h2.objective-heading.h3.mb-2.mb-sm-4.light-300:hover {
    color: #3A7DFF !important;
    text-shadow: 0 4px 20px rgba(58, 125, 255, 0.6);
    transform: translateY(-2px);
}

/* 企业文化section文本样式 */
section.banner-bg.bg-white.py-5 p.light-300 {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
    transition: all 0.3s ease;
    opacity: 0.8;
}

/* 文本悬停效果 */
section.banner-bg.bg-white.py-5 .objective.col-lg-4:hover p.light-300 {
    opacity: 1;
    color: rgba(255, 255, 255, 0.95) !important;
    transform: translateY(-2px);
}

/* 企业文化section列布局 */
section.banner-bg.bg-white.py-5 .objective.col-lg-4 {
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* 渐入动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 为不同列设置延迟动画 */
section.banner-bg.bg-white.py-5 .objective.col-lg-4:nth-child(1) {
    animation-delay: 0.1s;
}

section.banner-bg.bg-white.py-5 .objective.col-lg-4:nth-child(2) {
    animation-delay: 0.3s;
}

section.banner-bg.bg-white.py-5 .objective.col-lg-4:nth-child(3) {
    animation-delay: 0.5s;
}

/* 企业文化section列悬停效果 */
section.banner-bg.bg-white.py-5 .objective.col-lg-4:hover {
    transform: translateY(-10px) scale(1.03);
    filter: brightness(1.1);
}

/* 社交媒体图标样式 */
.footer-icons .social-icon img {
    width: 50px !important;
    height: 50px !important;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.8;
}

/* 社交媒体图标悬停效果 */
.footer-icons .social-icon:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* 关注我们区域样式 */
.footer-col h3.h4.pb-lg-3.text-light.footer-title {
    margin-bottom: 1rem;
    position: relative;
    text-align: left;
}

/* 二维码容器样式 */
.qr-code-wrapper {
    text-align: left;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

/* 二维码链接样式 */
.qr-link {
    display: inline-block;
    margin: 0;
}

/* 二维码图片样式 */
.qr-code-img {
    width: 150px !important;
    height: 150px !important;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* 二维码图片悬停效果 */
.qr-code-img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* 二维码文字样式 */
.qr-text {
    margin-top: 0.8rem !important;
    font-size: 0.9rem;
    opacity: 0.9;
    text-align: left;
}

/* 联系banner标题样式 */
section#contact-banner.bg-light h1.h2.pb-3.text-primary {
    color: #3A7DFF !important;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(58, 125, 255, 0.5);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-top: 0;
    background: linear-gradient(135deg, #3A7DFF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 联系banner副标题样式 */
section#contact-banner.bg-light h3.h4.regular-400 {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

/* 联系banner列表样式 */
section#contact-banner.bg-light ul.list-unstyled.light-300 {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0;
    margin: 0;
}

/* 联系banner列表项样式 */
section#contact-banner.bg-light ul.list-unstyled.light-300 li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* 联系banner链接样式 */
section#contact-banner.bg-light ul.list-unstyled.light-300 li a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

section#contact-banner.bg-light ul.list-unstyled.light-300 li a:hover {
    color: #3A7DFF !important;
    text-shadow: 0 0 10px rgba(58, 125, 255, 0.6);
}

/* 联系banner图片区域 */
section#contact-banner.bg-light .contact-img {
    width: 50%;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* 联系banner图片样式 */
section#contact-banner.bg-light .contact-img img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    border: 1px solid rgba(58, 125, 255, 0.3);
    box-shadow: 
        0 15px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(58, 125, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
}

/* 联系banner图片悬停效果 */
section#contact-banner.bg-light .contact-img img:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 20px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(58, 125, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.6);
}

/* 软件著作权卡片布局优化 */
section.bg-light.w-100:nth-of-type(3) .container > div {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 2rem;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    align-items: flex-start;
}

/* 软件著作权左侧标题区域 */
section.bg-light.w-100:nth-of-type(3) .col-lg-3 {
    width: 100%;
    max-width: 300px;
    padding: 1rem;
}

/* 软件著作权卡片容器 */
section.bg-light.w-100:nth-of-type(3) .col-lg-9.row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1rem;
    margin: 0;
    width: calc(100% - 300px - 3rem);
    max-width: 100%;
    overflow: visible;
    justify-content: flex-start;
    flex-shrink: 0;
}

/* 软件著作权卡片样式 */
section.bg-light.w-100:nth-of-type(3) .team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: calc(33.333% - 1rem);
    margin: 0;
    margin-bottom: 2.5rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.01) !important;
    border-radius: 20px;
    border: 1px solid rgba(58, 125, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    min-height: 550px;
    flex-shrink: 0;
    overflow: visible;
    flex: 0 0 calc(33.333% - 1rem);
}

/* 软件著作权卡片图片 */
section.bg-light.w-100:nth-of-type(3) .team-member-img {
    width: 100%;
    height: 360px;
    max-height: 360px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: block;
    border: none;
    padding: 0;
    background: transparent;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(58, 125, 255, 0.1);
    transform: translateZ(0);
}

/* 核心团队布局优化 */
section.container.py-5 .pt-5.pb-3.d-lg-flex.align-items-center.gx-5 {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 2rem;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    align-items: flex-start;
}

/* 核心团队左侧标题区域 */
section.container.py-5 .col-lg-3 {
    width: 100%;
    max-width: 300px;
    padding: 1rem;
}

/* 核心团队左侧标题样式 */
section.container.py-5 h1.h2.py-5.text-primary.typo-space-line {
    color: #3A7DFF !important;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(58, 125, 255, 0.5);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-top: 0;
    background: linear-gradient(135deg, #3A7DFF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 核心团队左侧描述样式 */
section.container.py-5 p.text-muted.light-300 {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
    letter-spacing: 0.3px;
    font-weight: 300;
    text-align: left;
}

/* 核心团队卡片容器 */
section.container.py-5 .col-lg-9.row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1rem;
    margin: 0;
    width: calc(100% - 300px - 3rem);
    max-width: 100%;
    overflow: visible;
    justify-content: flex-start;
    flex-shrink: 0;
}

/* 核心团队卡片样式 */
section.container.py-5 .team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: calc(33.333% - 1.333rem);
    margin: 0;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.01) !important;
    border-radius: 20px;
    border: 1px solid rgba(58, 125, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    min-height: 450px;
    flex-shrink: 0;
    overflow: visible;
    flex: 0 0 calc(33.333% - 1.333rem);
}

/* 核心团队成员图片 */
section.container.py-5 .team-member-img {
    width: 100%;
    height: 200px;
    max-height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: block;
    border: 3px solid rgba(58, 125, 255, 0.3);
    padding: 0;
    background: linear-gradient(135deg, rgba(58, 125, 255, 0.1), rgba(0, 212, 255, 0.1));
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(58, 125, 255, 0.2);
    transform: translateZ(0);
}

/* 核心团队成员标题 */
section.container.py-5 .team-member-caption {
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
}

section.container.py-5 .team-member-caption li {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
    padding: 0 0.5rem;
    margin: 0;
    word-wrap: break-word;
    hyphens: auto;
    white-space: normal;
    overflow: visible;
}

section.container.py-5 .team-member-caption li:first-child {
    color: #3A7DFF !important;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(58, 125, 255, 0.5);
}

/* 核心团队卡片悬停效果 */
section.container.py-5 .team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(58, 125, 255, 0.4);
}

/* 核心团队图片悬停效果 */
section.container.py-5 .team-member:hover .team-member-img {
    transform: scale(1.05);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(58, 125, 255, 0.3);
}

/* 核心团队响应式调整 */
@media (max-width: 1200px) {
    section.container.py-5 .pt-5.pb-3.d-lg-flex.align-items-center.gx-5 {
        flex-direction: column;
        align-items: center;
    }
    
    section.container.py-5 .col-lg-3 {
        width: 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    section.container.py-5 .col-lg-9.row {
        width: 100%;
    }
    
    section.container.py-5 .team-member {
        width: calc(33.333% - 1.333rem);
        flex: 0 0 calc(33.333% - 1.333rem);
    }
}

@media (max-width: 992px) {
    section.container.py-5 .team-member {
        width: calc(50% - 1rem);
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    section.container.py-5 .team-member {
        width: 100%;
        flex: 0 0 100%;
    }
}

/* 关于我们 · 合作伙伴（Logo 墙，与全站深色科技风统一） */
.about-partners-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(58, 125, 255, 0.18), transparent 55%),
        linear-gradient(180deg, #0c1018 0%, #121a26 48%, #0e141f 100%);
    border-top: 1px solid rgba(58, 125, 255, 0.22);
    border-bottom: 1px solid rgba(58, 125, 255, 0.12);
}

.about-partners-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(58, 125, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(58, 125, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    opacity: 0.5;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
}

.about-partners-header {
    position: relative;
    z-index: 1;
    max-width: 36rem;
    margin-bottom: 2.5rem !important;
}

.about-partners-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0, 212, 255, 0.85);
    font-weight: 600;
}

.about-partners-title {
    color: #f1f5ff !important;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 0 40px rgba(58, 125, 255, 0.25);
}

.about-partners-lead {
    color: rgba(210, 220, 240, 0.98) !important;
    font-size: 0.95rem;
    line-height: 1.65;
}

.about-partners-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 991.98px) {
    .about-partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .about-partners-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
}

/* 浅色铭牌底：深色 Logo/黑字在 PNG 里也能看清，外圈仍落在深色区块上 */
.about-partner-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 108px;
    padding: 1.25rem 1.5rem;
    text-decoration: none !important;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f5f9 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 10px 28px rgba(0, 0, 0, 0.28),
        0 1px 0 rgba(255, 255, 255, 0.06);
    transition:
        transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.about-partner-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(58, 125, 255, 0.35);
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 16px 40px rgba(58, 125, 255, 0.22),
        0 0 0 1px rgba(0, 212, 255, 0.2);
}

.about-partner-tile:focus-visible {
    outline: 2px solid rgba(0, 212, 255, 0.85);
    outline-offset: 3px;
}

.about-partner-tile img {
    width: 100%;
    max-width: 148px;
    height: auto;
    max-height: 72px;
    object-fit: contain;
    object-position: center;
    filter: none !important;
    opacity: 1;
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.about-partner-tile:hover img {
    transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
    .about-partner-tile,
    .about-partner-tile:hover,
    .about-partner-tile img,
    .about-partner-tile:hover img {
        transition: none !important;
        transform: none !important;
    }
}

/* 软件著作权卡片标题 */
section.bg-light.w-100:nth-of-type(3) .team-member-caption {
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
}

section.bg-light.w-100:nth-of-type(3) .team-member-caption li {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    padding: 0 0.5rem;
    margin: 0;
    word-wrap: break-word;
    hyphens: auto;
    white-space: normal;
    overflow: visible;
}

/* 卡片悬停效果 */
section.bg-light.w-100:nth-of-type(3) .team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(58, 125, 255, 0.3);
}

/* 图片悬停效果 */
section.bg-light.w-100:nth-of-type(3) .team-member:hover .team-member-img {
    transform: scale(1.05);
}

/* 响应式调整 */
@media (max-width: 1200px) {
    section.bg-light.w-100:nth-of-type(3) .container > div {
        flex-direction: column;
        align-items: center;
    }
    
    section.bg-light.w-100:nth-of-type(3) .col-lg-3 {
        width: 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    section.bg-light.w-100:nth-of-type(3) .col-lg-9.row {
        width: 100%;
    }
    
    section.bg-light.w-100:nth-of-type(3) .team-member {
        width: calc(33.333% - 1rem);
        flex: 0 0 calc(33.333% - 1rem);
    }
}

@media (max-width: 992px) {
    section.bg-light.w-100:nth-of-type(3) .team-member {
        width: calc(50% - 1rem);
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    section.bg-light.w-100:nth-of-type(3) .team-member {
        width: 100%;
        flex: 0 0 100%;
    }
}

/* 公司介绍区域特定样式 */
section.bg-light.w-100 {
    /* 共享样式已在上方定义 */
}

/* 背景发光点效果（保持一个版本即可） */
section.bg-light.w-100::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(58, 125, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* 主内容容器 */
section.bg-light.w-100 .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

/* 内容行布局 - 确保横向并排 */
section.bg-light.w-100 .row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    margin: 0;
    width: 100%;
    flex-wrap: nowrap;
}

/* 文字内容区域 - 现代卡片设计 */
section.bg-light.w-100 .col-lg-6.text-start {
    background: rgba(255, 255, 255, 0.01);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(58, 125, 255, 0.15);
    box-shadow: 
        0 15px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 40px rgba(58, 125, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 50%;
    min-width: 0;
    transform: none;
    display: block;
    float: none;
}

/* 卡片悬停效果 */
section.bg-light.w-100 .col-lg-6.text-start:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 60px rgba(58, 125, 255, 0.1);
    border-color: rgba(58, 125, 255, 0.3);
}

/* 文字区域动态背景效果 */
section.bg-light.w-100 .col-lg-6.text-start::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(58, 125, 255, 0.15), transparent);
    transition: left 1s ease;
}

section.bg-light.w-100 .col-lg-6.text-start:hover::before {
    left: 100%;
}

/* 标题样式 - 优化排版 */
section.bg-light.w-100 h1.h2.py-5.text-primary.typo-space-line {
    color: #3A7DFF !important;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(58, 125, 255, 0.5);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-top: 0;
    background: linear-gradient(135deg, #3A7DFF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 标题装饰线 - 动态效果 */
section.bg-light.w-100 h1.h2.py-5.text-primary.typo-space-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #3A7DFF, #00D4FF);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(58, 125, 255, 0.8);
    animation: linePulse 3s ease-in-out infinite;
}

@keyframes linePulse {
    0%, 100% { transform: scaleX(1); opacity: 1; }
    50% { transform: scaleX(1.2); opacity: 0.8; }
}

/* 段落样式 - 优化可读性 */
section.bg-light.w-100 p.light-300 {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
    font-weight: 300;
    text-align: left;
    position: relative;
    word-wrap: break-word;
    hyphens: auto;
    display: block;
    width: 100%;
    clear: both;
}

/* 移除首字母放大效果 */
section.bg-light.w-100 p.light-300::first-letter {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    float: none;
    margin: 0;
    text-shadow: none;
}

/* 图片区域样式 - 优化布局 */
section.bg-light.w-100 .col-lg-6 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    width: 50%;
    min-width: 0;
    transform: none;
    transition: all 0.3s ease;
}

section.bg-light.w-100 .col-lg-6:hover {
    transform: translateY(-5px);
}

/* 图片区域高级装饰效果 */
section.bg-light.w-100 .col-lg-6::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: 
        radial-gradient(circle, rgba(58, 125, 255, 0.2) 0%, transparent 70%),
        conic-gradient(from 0deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: 
        float 8s ease-in-out infinite,
        rotate 20s linear infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    33% { transform: translate(-50%, -55%) scale(1.05); }
    66% { transform: translate(-50%, -45%) scale(0.95); }
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* 图片样式 - 现代玻璃态效果 */
section.bg-light.w-100 img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    border: 1px solid rgba(58, 125, 255, 0.3);
    box-shadow: 
        0 20px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(58, 125, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
}

/* 图片悬停高级效果 */
section.bg-light.w-100 img:hover {
    transform: 
        translateY(-12px) 
        scale(1.05) 
        rotate(1deg);
    box-shadow: 
        0 30px 120px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(58, 125, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.6);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    /* 主内容布局 */
    .contact-container .main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* 标题样式 */
    .contact-container h1.text-primary {
        font-size: 2.5rem;
    }
    
    /* 公司介绍布局 */
    section.bg-light.w-100 .row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* 公司介绍标题 */
    section.bg-light.w-100 h1.h2.py-5.text-primary.typo-space-line {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    /* 容器样式 */
    .contact-container {
        padding: 3rem 1.5rem;
    }
    
    /* 标题样式 */
    .contact-container h1.text-primary {
        font-size: 2rem;
    }
    
    .contact-container h2 {
        font-size: 1.25rem;
    }
    
    /* 卡片和表单内边距 */
    .contact-container .contact {
        padding: 1.5rem;
    }
    
    .contact-container .contact-form {
        padding: 2rem 1.5rem;
    }
    
    /* 按钮大小 */
    .contact-container .btn-secondary {
        padding: 0.875rem 2rem !important;
        font-size: 1rem;
        width: 100%;
    }
    
    /* 图标大小 */
    .contact-container .contact-icon div {
        width: 75px;
        height: 75px;
    }
    
    .contact-container .contact-icon i {
        font-size: 2rem;
    }
    
    /* 公司介绍容器 */
    section.bg-light.w-100 {
        padding: 4rem 0;
    }
    
    /* 公司介绍文字区域 */
    section.bg-light.w-100 .col-lg-6.text-start {
        padding: 2.5rem 1.75rem;
    }
    
    /* 公司介绍标题 */
    section.bg-light.w-100 h1.h2.py-5.text-primary.typo-space-line {
        font-size: 2rem;
    }
    
    /* 公司介绍段落 */
    section.bg-light.w-100 p.light-300 {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* 公司介绍图片 */
    section.bg-light.w-100 .col-lg-6 {
        padding: 1rem;
    }
    
    section.bg-light.w-100 img {
        border-radius: 15px;
    }
}