/* 深色主题基础样式 - Figma设计稿校对版本 */

/* 确保深色主题样式优先级高于原有样式 */
body.dark-theme {
    background-color: #0a0a0a !important;
    color: #e8d5a7 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
}

/* 导航栏深色样式优化 */
.navbar-dark {
    background-color: transparent !important;
    padding: 25px 0 !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: none !important;
    margin: 0 !important;
    border-top: none !important;
    box-shadow: none !important;
}

.navbar-dark .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1280px;
    padding: 0 40px;
}

.navbar-dark .container > :first-child {
    margin-right: auto;
}

.logo-dark {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon img {
    height: 60px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text-zh,
.logo-text-en {
    height: 25px;
    width: auto;
}

.nav-links-dark {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links-dark a {
    text-decoration: none;
    color: #e8d5a7;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links-dark a:hover,
.nav-links-dark a.active {
    color: #b8860b;
}

.nav-separator {
    color: rgba(218, 197, 166, 0.5);
    margin: 0 20px;
    font-size: 14px;
}

.language-switcher-dark {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    padding: 8px 16px;
    border: 1px solid rgba(232, 213, 167, 0.3);
    border-radius: 6px;
    background-color: transparent;
    color: #e8d5a7;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    border-color: #b8860b;
    color: #b8860b;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #0a0a0a;
    border: 1px solid rgba(232, 213, 167, 0.3);
    border-radius: 8px;
    margin-top: 8px;
    min-width: 100px;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dropdown-menu.show {
    display: block !important;
}

.dropdown-menu .language-btn-dark {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 0;
    background-color: transparent;
    color: #e8d5a7;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.dropdown-menu .language-btn-dark:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-menu .language-btn-dark:last-child {
    border-radius: 0 0 8px 8px;
}

.dropdown-menu .language-btn-dark:hover {
    background-color: rgba(218, 197, 166, 0.15);
    color: #b8860b;
}

.dropdown-menu .language-btn-dark.active {
    background-color: rgba(184, 134, 11, 0.2);
    color: #b8860b;
}

/* 英雄区域新样式 - Figma设计稿 */
.hero-new {
    position: relative;
    height: 75vh;
    min-height: 650px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

.hero-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/home0.jpg') center/cover;
    border-radius: 0;
    width: 100%;
    height: 100%;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-new {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1100px;
    padding: 0 40px;
}

.hero-text {
    font-size: 34px;
    font-weight: 400;
    color: #e8d5a7;
    line-height: 1.7;
    margin-bottom: 45px;
}

.btn-know-us {
    display: inline-block;
    padding: 16px 48px;
    background-color: transparent;
    color: #b8860b;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #b8860b;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-know-us:hover {
    background-color: #b8860b;
    color: #0a0a0a;
}

/* 成就卡片新样式 - Figma设计稿 */
.achievements-section {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.achievement-card-new {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(232, 213, 167, 0.1);
    border-radius: 37px;
    padding: 70px 50px;
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-card-new:hover {
    border-color: rgba(184, 134, 11, 0.3);
    background-color: rgba(184, 134, 11, 0.05);
    transform: translateY(-5px);
}

.achievement-number-new {
    font-size: 56px;
    font-weight: 700;
    color: #DAC5A6;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.achievement-details-new .achievement-label {
    font-size: 18px;
    font-weight: 500;
    color: #DAC5A6;
    margin-bottom: 20px;
    line-height: 1.5;
}

.achievement-details-new .achievement-source {
    font-size: 13px;
    color: rgba(232, 213, 167, 0.5);
    margin-bottom: 30px;
}

.btn-detail-new {
    display: inline-block;
    padding: 12px 36px;
    background-color: #DAC5A6;
    color: #0a0a0a;
    font-size: 15px;
    font-weight: 600;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-detail-new:hover {
    background-color: #E8D5A7;
    transform: scale(1.02);
}

/* 图片画廊新样式 - Figma设计稿 */
.gallery-section-new {
    height: 650px;
    background-color: #0a0a0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    position: relative;
}

.gallery-columns {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    width: 100%;
    column-gap: 20px;
    padding: 0;
    align-items: start;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-dot {
    width: 100%;
    margin: 0;
    padding: 0;
}

.gallery-dot-filled {
    border-radius: 0 0 20px 20px;
    background-color: rgba(230, 230, 230, 0.03);
}

.gallery-dot-empty {
    background-color: transparent;
    /* 空div使用最小高度占位 */
    min-height: 1px;
}

.gallery-dot.gallery-dot-h90 {
    aspect-ratio: 156/90;
}

.gallery-dot.gallery-dot-h170 {
    aspect-ratio: 156/170;
}

.gallery-dot.gallery-dot-h210 {
    aspect-ratio: 156/210;
}

.gallery-dot-bottom {
    aspect-ratio: 156/210;
    background-color: rgba(230, 230, 230, 0.03);
    border-radius: 20px;
    background-image: url('/images/pic01-1-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-dot-bottom:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
    border: 2px solid rgba(184, 134, 11, 0.5);
}

.gallery-dot-bottom.gallery-dot-bottom-2-3 {
    background-image: url('/images/pic01-1-2.jpg');
}

.gallery-dot-bottom.gallery-dot-bottom-3-2 {
    background-image: url('/images/pic01-2-1.jpg');
}

.gallery-dot-bottom.gallery-dot-bottom-3-3 {
    background-image: url('/images/pic01-2-2.jpg');
}

.gallery-dot-bottom.gallery-dot-bottom-4-2 {
    background-image: url('/images/pic01-3-1.jpg');
}

.gallery-dot-bottom.gallery-dot-bottom-5-2 {
    background-image: url('/images/pic01-4-1.jpg');
}

.gallery-dot-bottom.gallery-dot-bottom-6-2 {
    background-image: url('/images/pic01-5-1.jpg');
}

.gallery-dot-bottom.gallery-dot-bottom-7-2 {
    background-image: url('/images/pic01-6-1.jpg');
}

.gallery-dot-bottom.gallery-dot-bottom-8-2 {
    background-image: url('/images/pic01-7-1.jpg');
}

.gallery-dot-bottom.gallery-dot-bottom-9-2 {
    background-image: url('/images/pic01-8-1.jpg');
}

.gallery-dot-bottom.gallery-dot-bottom-9-3 {
    background-image: url('/images/pic01-8-2.jpg');
}

.gallery-dot-bottom.gallery-dot-bottom-10-2 {
    background-image: url('/images/pic01-9-1.jpg');
}

.gallery-dot-bottom.gallery-dot-bottom-10-3 {
    background-image: url('/images/pic01-9-2.jpg');
}

.gallery-left-new,
.gallery-right-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-row-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-item-new {
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    min-height: 150px;
    transition: all 0.3s ease;
    border: 1px solid rgba(232, 213, 167, 0.05);
}

.gallery-item-new:hover {
    background-color: rgba(184, 134, 11, 0.08);
    border-color: rgba(184, 134, 11, 0.15);
}

.gallery-item-large {
    min-height: 280px;
}

.gallery-item-medium {
    min-height: 200px;
}

.gallery-item-small {
    min-height: 140px;
}

.gallery-center-new {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    max-width: 90%;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.gallery-center-new p {
    font-size: 18px;
    font-weight: 400;
    color: #e8d5a7;
    margin: 0;
    line-height: 1.5;
    white-space: nowrap;
}

/* 渐变文字区域 */
.gradient-text-section {
    min-height: clamp(60px, 15vw, 200px);
    height: auto;
    background-color: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.gradient-text {
    font-size: clamp(60px, 15vw, 200px);
    line-height: 1;
    font-weight: 400;
    background: linear-gradient(180deg, rgba(255, 218, 165, 0.3) 0%, rgba(116, 105, 88, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: 6px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* 服务板块新样式 - Figma设计稿 */
.services-section-new {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
}

.service-card-new {
    background-color: #0a0a0a;
    border: 1px solid rgba(184, 134, 11, 0.15);
    border-radius: 37px;
    padding: 70px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card-new:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 134, 11, 0.4);
    background-color: #0a0a0a;
}

.service-icon-new {
    width: 126px;
    height: 126px;
    margin: 0 auto 28px;
    color: #b8860b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-new svg,
.service-icon-new img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-title-new {
    font-size: 20px;
    font-weight: 600;
    color: #DAC5A6;
    line-height: 1.4;
    margin-bottom: 8px;
}

.service-subtitle-new {
    font-size: 15px;
    font-weight: 400;
    color: rgba(218, 197, 166, 0.8);
    line-height: 1.4;
    margin-bottom: 20px;
}

.service-desc-new {
    font-size: 11px;
    color: rgba(218, 197, 166, 0.7);
    line-height: 1.5;
    margin: 4px 0;
}

/* 无限滚动横幅 - Figma设计稿 */
.banner-section {
    padding: 35px 0;
    background-color: #DAC5A6;
    overflow: hidden;
    border-radius: 0;
    margin: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative;
    left: calc(-50vw + 50%) !important;
}

.banner-content {
    display: flex;
    gap: 100px;
    animation: scrollBanner 25s linear infinite;
    padding: 0 !important;
    margin: 0 !important;
    width: max-content;
    max-width: none !important;
}

@keyframes scrollBanner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.banner-text {
    font-size: 28px;
    font-weight: 700;
    color: #0a0a0a;
    white-space: nowrap;
    letter-spacing: 1px;
}

/* 案例展示区域 - Figma设计稿 */
.cases-section {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
}

.case-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(232, 213, 167, 0.08);
    transition: all 0.3s ease;
}

.case-card:hover {
    border-color: rgba(184, 134, 11, 0.2);
    transform: translateY(-5px);
}

.case-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.btn-case {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 45px;
    background-color: #DAC5A6;
    color: #0a0a0a;
    font-size: 15px;
    font-weight: 600;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-case:hover {
    background-color: #E8D5A7;
    transform: translateX(-50%) scale(1.05);
}

/* 联系信息区域 - Figma设计稿 */
.contact-section {
    padding: 100px 0;
    background-color: #181716;
}

.contact-content {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
    gap: 15px;
}

.contact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
}

.contact-title {
    font-size: 65px;
    font-weight: normal;
    color: #DAC5A6;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.contact-subtitle {
    font-size: 18px;
    color: #DAC5A6;
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 680px;
}

.contact-button-wrapper {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.contact-button {
    padding: 10px 60px;
    background: linear-gradient(180deg, #E8D5A7 0%, #DAC5A6 50%, #B8A386 100%);
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(218, 197, 166, 0.5);
    box-shadow: 0 4px 20px rgba(218, 197, 166, 0.2);
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: linear-gradient(180deg, #F2E1B3 0%, #E8D5A7 50%, #C8B396 100%);
    box-shadow: 0 6px 25px rgba(218, 197, 166, 0.3);
    transform: translateY(-2px);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    max-width: 100%;
    margin: 15px 0 0 0;
}

.contact-card {
    text-align: center;
    padding: 50px 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(218, 197, 166, 0.15);
    border-radius: 50px;
    transition: all 0.3s ease;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card:hover {
    border-color: rgba(218, 197, 166, 0.3);
    transform: translateY(-5px);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-card-label {
    font-size: 18px;
    font-weight: 600;
    color: #DAC5A6;
    margin-bottom: 12px;
}

.contact-card-value {
    font-size: 16px;
    color: rgba(218, 197, 166, 0.8);
    line-height: 1.5;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
    max-width: 100%;
    margin: 40px auto 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(218, 197, 166, 0.15);
    border-radius: 60px;
    text-decoration: none;
    color: #DAC5A6;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: rgba(218, 197, 166, 0.3);
    transform: translateY(-3px);
}

.social-link img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.social-link span {
    font-size: 15px;
    font-weight: 500;
}

.social-link svg {
    width: 18px;
    height: 18px;
    color: #DAC5A6;
}

/* 合作伙伴区域 - 深色主题适配 */
.partners-new {
    background-color: #0a0a0a;
    padding: 80px 0;
    display: none;
}

.partners-new .section-title {
    color: #e8d5a7;
}

/* 页脚新样式 - Figma设计稿 */
.footer-new {
    padding: 70px 0 40px;
    background-color: #050505;
    border-top: 1px solid rgba(232, 213, 167, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.footer-info-new {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon img {
    width: 80px;
    height: auto;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo-text-zh,
.footer-logo-text-en {
    height: 20px;
    width: auto;
}

.footer-info-new h3 {
    font-size: 24px;
    font-weight: 400;
    color: #DAC5A6;
    margin-bottom: 8px;
}

.footer-info-new p {
    font-size: 14px;
    color: rgba(218, 197, 166, 0.7);
    margin: 0;
}

.footer-links-new h4 {
    font-size: 16px;
    font-weight: 600;
    color: #DAC5A6;
    margin-bottom: 20px;
}

.footer-links-new ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.footer-links-new a {
    color: rgba(218, 197, 166, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links-new a:hover {
    color: #DAC5A6;
}

.footer-funds-new h4 {
    font-size: 16px;
    font-weight: 600;
    color: #DAC5A6;
    margin-bottom: 20px;
}

.footer-funds-new ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.footer-funds-new a {
    color: rgba(218, 197, 166, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-funds-new a:hover {
    color: #DAC5A6;
}

.footer-contact-new h4 {
    font-size: 16px;
    font-weight: 600;
    color: #DAC5A6;
    margin-bottom: 20px;
}

.footer-contact-new p {
    font-size: 14px;
    color: rgba(218, 197, 166, 0.7);
    margin-bottom: 10px;
}

.footer-bottom-new {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(232, 213, 167, 0.1);
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom-new p {
    font-size: 14px;
    color: rgba(218, 197, 166, 0.5);
    margin-bottom: 5px;
}

.footer-bottom-new p:last-child {
    margin-bottom: 0;
}

.footer-bottom-new a {
    color: rgba(218, 197, 166, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-new a:hover {
    color: rgba(218, 197, 166, 0.8);
    text-decoration: underline;
}

/* 隐藏的旧服务板块 - 暂时保留 */
.services-section-legacy {
    display: none;
}

.mission-section-new {
    display: none;
}

/* 响应式设计优化 - Figma设计稿适配 */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .navbar-dark .container {
        padding: 0 30px;
    }

    .nav-links-dark {
        gap: 25px;
    }

    .hero-text {
        font-size: 24px;
    }

    .achievements-grid {
        gap: 30px;
    }

    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-wrapper-new {
        grid-template-columns: 1fr;
    }

    .gallery-left-new,
    .gallery-right-new {
        display: none;
    }

    .gallery-center-new {
        max-width: 100%;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .navbar-dark .container {
        flex-wrap: wrap;
        gap: 20px;
        padding: 0 20px;
        position: relative;
    }

    .navbar-dark {
        overflow: visible;
    }

    .nav-links-dark {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #0a0a0a;
        padding: 20px;
        gap: 0;
        z-index: 999;
        border-bottom: 1px solid rgba(232, 213, 167, 0.2);
    }

    .nav-links-dark.active {
        display: flex !important;
    }

    .nav-links-dark li {
        width: 100%;
    }

    .nav-links-dark a {
        display: block;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(232, 213, 167, 0.1);
    }

    .nav-links-dark li:last-child a {
        border-bottom: none;
    }

    .nav-separator {
        display: none;
    }

    .language-switcher-dark {
        order: 1;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
        padding: 5px;
        position: relative;
    }

    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero-text {
        font-size: 20px;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .services-grid-new {
        grid-template-columns: 1fr;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .contact-title {
        font-size: 36px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-links-new ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* ========== 移动端画廊优化 ========== */
    .gallery-section-new {
        height: auto;
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    /* 添加装饰性背景光晕 */
    .gallery-section-new::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(218, 197, 166, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    /* 隐藏复杂的11列画廊 */
    .gallery-columns {
        display: none;
    }

    /* 画廊中心文本优化 - 移到中间，分行显示 */
    .gallery-center-new {
        position: static;
        transform: none;
        max-width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
        z-index: 1;
    }

    .gallery-center-new p {
        font-size: 15px;
        line-height: 1.8;
        white-space: pre-line;
        text-align: center;
        letter-spacing: 0.5px;
    }

    /* ========== 移动端渐变文字优化 ========== */
    .gradient-text-section {
        min-height: auto;
        padding: 40px 20px;
    }

    .gradient-text {
        font-size: clamp(36px, 10vw, 60px);
        letter-spacing: 2px;
        padding: 0;
        line-height: 1.2;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* 超小屏画廊优化 */
    .gallery-section-new {
        padding: 40px 15px;
    }

    /* 超小屏画廊中心文本适配 */
    .gallery-center-new {
        gap: 12px;
    }

    .gallery-center-new p {
        font-size: 13px;
        line-height: 1.7;
    }

    /* 超小屏渐变文字适配 */
    .gradient-text-section {
        padding: 30px 15px;
    }

    .gradient-text {
        font-size: clamp(28px, 9vw, 45px);
        letter-spacing: 1px;
    }
}

/* 监管资质卡片新样式 */
.regulatory-card {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #252424;
    border-radius: 40px;
    padding: 40px 60px;
    border: 1px solid #49443E;
}

.company-intro {
    position: relative;
}

.company-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 60px;
    right: 60px;
    height: 1px;
    background-color: #DAC5A6;
    opacity: 0.3;
}

.regulatory-image {
    flex-shrink: 0;
}

.license-image {
    width: 187px;
    height: auto;
    border-radius: 8px;
}

.regulatory-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.regulatory-text {
    font-size: 28px;
    font-weight: 400;
    color: #DAC5A6;
    line-height: 1.6;
    margin-bottom: 40px;
}

.regulatory-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.regulatory-license-id {
    font-size: 16px;
    color: #DAC5A6;
}

.regulatory-link {
    font-size: 16px;
    color: #DAC5A6;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}

.regulatory-link:hover {
    color: #DAC5A6;
}

@media (max-width: 1024px) {
    .regulatory-card {
        flex-direction: column;
        gap: 40px;
        padding: 30px 40px;
    }

    .company-intro::after {
        left: 40px;
        right: 40px;
    }

    .license-image {
        width: 147px;
    }

    .regulatory-text {
        font-size: 22px;
        text-align: center;
    }

    .regulatory-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* 页面标题 section 样式 - 深色主题适配 */
.page-header {
    background-color: #0a0a0a !important;
    color: #e8d5a7 !important;
    padding: 80px 0 !important;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 60px;
    right: 60px;
    height: 1px;
    background-color: #DAC5A6;
    opacity: 0.3;
}

.page-header h1 {
    font-size: 60px !important;
    font-weight: 400 !important;
    color: #DAC5A6 !important;
    margin-bottom: 20px !important;
    line-height: 1.2;
}

.page-header p {
    font-size: 18px !important;
    color: #DAC5A6 !important;
    opacity: 1 !important;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* 业绩 section 样式 - 深色主题适配 */
.performance {
    padding: 80px 0 !important;
    background-color: #0a0a0a !important;
}

.performance .section-title {
    font-size: 40px;
    font-weight: 400;
    color: #DAC5A6;
    margin-bottom: 40px;
    text-align: center;
}

@media (max-width: 1024px) {
    .page-header {
        padding: 60px 0 !important;
    }
    
    .page-header::after {
        left: 40px;
        right: 40px;
    }
    
    .page-header h1 {
        font-size: 48px !important;
    }
    
    .page-header p {
        font-size: 16px !important;
    }
    
    .performance {
        padding: 60px 0 !important;
    }
    
    .performance .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 !important;
    }
    
    .page-header::after {
        left: 20px;
        right: 20px;
    }
    
    .page-header h1 {
        font-size: 36px !important;
    }
    
    .page-header p {
        font-size: 14px !important;
    }
    
    .performance {
        padding: 40px 0 !important;
    }
    
    .performance .section-title {
        font-size: 24px;
    }
}
