/* ============================================
   2026现代化UI设计系统 - 全新布局
   ============================================ */

/* ============================================
   基础样式
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   现代化导航栏样式 - 2026重新设计
   ============================================ */

.navbar-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(26, 115, 232, 0.08);
    border-bottom: 1px solid rgba(26, 115, 232, 0.1);
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.brand-link:hover {
    transform: translateY(-1px);
}

.brand-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.08), rgba(117, 70, 193, 0.08));
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    display: flex;
    align-items: center;
}

.brand-text img {
    height: 36px;
    width: auto;
    transition: all 0.3s ease;
}

.brand-link:hover .brand-icon {
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.15), rgba(117, 70, 193, 0.15));
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    color: #475569;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-item:hover {
    color: #1a73e8;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.08), rgba(117, 70, 193, 0.08));
}

.nav-indicator {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-indicator,
.nav-item.nav-active .nav-indicator {
    transform: scaleX(1);
}

.nav-item.nav-active {
    color: #1a73e8;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.12), rgba(117, 70, 193, 0.12));
}

.navbar-actions {
    display: flex;
    align-items: center;
}

.navbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 12px 25px rgba(26, 115, 232, 0.25);
    transition: all 0.3s ease;
}

.navbar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(26, 115, 232, 0.35);
}

.navbar-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.navbar-toggle span {
    width: 26px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    transition: all 0.3s ease;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(26, 115, 232, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(26, 115, 232, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 40px;
    max-width: 1400px;
    margin: 0 auto;
    height: 85px;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-seal {
    height: 55px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-text {
    height: 36px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: #475569;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: #1a73e8;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.08), rgba(117, 70, 193, 0.08));
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    transform: scaleX(1);
}

.nav-links a.active {
    color: #1a73e8;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.12), rgba(117, 70, 193, 0.12));
    font-weight: 600;
}

.nav-links a.active::before {
    transform: scaleX(1);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu span {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu:hover span {
    background: #1a73e8;
}

/* ============================================
   通用页面头部样式
   ============================================ */

.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #1a73e8 0%, #7546c1 100%);
    overflow: hidden;
}

.page-hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.page-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb .current {
    color: white;
    font-weight: 600;
}

.page-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.page-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* 详情页面通用样式 */
.about-detail,
.service-detail,
.team-detail,
.case-detail,
.knowledge-detail {
    padding: 100px 0;
    background: white;
}

.about-detail-container,
.service-detail-container,
.team-detail-container,
.case-detail-container,
.knowledge-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-main-content,
.service-main-content,
.team-main-content,
.case-main-content,
.knowledge-main-content {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.about-featured-image img,
.service-featured-image img,
.case-featured-image img,
.knowledge-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text-content,
.service-text-content,
.team-text-content,
.case-text-content,
.knowledge-text-content {
    padding: 50px;
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
}

.about-text-content h1,
.about-text-content h2,
.service-text-content h1,
.service-text-content h2 {
    color: #1e293b;
    font-weight: 700;
    margin: 30px 0 15px;
}

.company-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-box {
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.05), rgba(117, 70, 193, 0.05));
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    border: 1px solid rgba(26, 115, 232, 0.1);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(26, 115, 232, 0.3);
}

.feature-box-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-box-icon svg {
    stroke: white;
}

.feature-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* ============================================
   Hero Section - 英雄区域
   ============================================ */

.hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0fe 50%, #f8fafc 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(80px);
}

.hero-shape-1 {
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.15), transparent);
    animation: float 20s ease-in-out infinite;
}

.hero-shape-2 {
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(117, 70, 193, 0.12), transparent);
    animation: float 25s ease-in-out infinite reverse;
}

.hero-shape-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.08), transparent);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content-new {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.1), rgba(117, 70, 193, 0.1));
    border: 1px solid rgba(26, 115, 232, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #1a73e8;
    width: fit-content;
}

.hero-badge svg {
    stroke: #1a73e8;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #1e293b;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #64748b;
    max-width: 560px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-stats .stat-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-stats .stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.hero-stats .stat-label {
    color: #475569;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(26, 115, 232, 0.3), transparent);
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    color: white;
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(26, 115, 232, 0.4);
}

.hero-btn-primary svg {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover svg {
    transform: translateX(4px);
}

.hero-btn-secondary {
    background: white;
    color: #1a73e8;
    border-color: rgba(26, 115, 232, 0.2);
}

.hero-btn-secondary:hover {
    border-color: #1a73e8;
    background: rgba(26, 115, 232, 0.05);
}

.hero-visual {
    position: relative;
    height: 500px;
}

.visual-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(26, 115, 232, 0.1);
    animation: cardFloat 6s ease-in-out infinite;
}

.visual-card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.visual-card-2 {
    top: 45%;
    right: 25%;
    animation-delay: 2s;
}

.visual-card-3 {
    bottom: 10%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.visual-card .card-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(26, 115, 232, 0.15);
    border-radius: 12px;
}

.card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-title {
    font-weight: 600;
    font-size: 16px;
    color: #1e293b;
}

.card-subtitle {
    font-size: 13px;
    color: #64748b;
}

/* ============================================
   About Section - 关于我们
   ============================================ */

.about-page-new {
    padding: 120px 0 110px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 60%, #f8fafc 100%);
}

.about-top {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-top-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-title {
    font-size: 52px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    letter-spacing: -1px;
}

.about-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    max-width: 560px;
}

.about-motto {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(26, 115, 232, 0.08);
    border: 1px solid rgba(26, 115, 232, 0.15);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #1a73e8;
    width: fit-content;
}

.about-highlights {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 22px 0 10px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.highlight-number {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.highlight-divider {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, transparent, rgba(26, 115, 232, 0.3), transparent);
}

.about-image-card {
    background: white;
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(26, 115, 232, 0.12);
}

.about-image-card img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.about-content-card {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 115, 232, 0.1);
    font-size: 16px;
    line-height: 1.9;
    color: #334155;
    margin-bottom: 50px;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-feature-card {
    background: white;
    border-radius: 22px;
    padding: 28px 24px;
    border: 1px solid rgba(26, 115, 232, 0.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.about-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(26, 115, 232, 0.3);
}

.about-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.about-feature-icon svg {
    stroke: white;
}

.about-feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px;
}

.about-feature-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.about-new {
    padding: 120px 0;
    background: white;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.about-image-section {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-slider {
    position: relative;
    border-radius: inherit;
    overflow: hidden;
    background: #f1f5f9;
}

.about-slider-track {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
}

.about-slide {
    min-width: 100%;
    flex: 0 0 100%;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.about-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.48);
    color: #ffffff;
    cursor: pointer;
    z-index: 2;
    transition: all 0.25s ease;
}

.about-slider-btn:hover {
    background: rgba(15, 23, 42, 0.68);
}

.about-slider-btn span {
    font-size: 30px;
    line-height: 1;
    margin-top: -2px;
}

.about-slider-prev {
    left: 16px;
}

.about-slider-next {
    right: 16px;
}

.about-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.about-slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.52);
    cursor: pointer;
    transition: all 0.25s ease;
}

.about-slider-dot.active {
    width: 24px;
    border-radius: 999px;
    background: #ffffff;
}

.about-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    font-size: 18px;
    color: #1a73e8;
}

.about-badge svg {
    stroke: #1a73e8;
}

.about-content-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.1), rgba(117, 70, 193, 0.1));
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #1a73e8;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.section-title-new {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #1e293b;
    letter-spacing: -1px;
}

.section-description {
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.03), rgba(117, 70, 193, 0.03));
    border-radius: 16px;
    border: 1px solid rgba(26, 115, 232, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    border-color: rgba(26, 115, 232, 0.3);
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    stroke: white;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    color: #64748b;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    width: fit-content;
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.3);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(26, 115, 232, 0.4);
}

.about-btn svg {
    transition: transform 0.3s ease;
}

.about-btn:hover svg {
    transform: translateX(4px);
}

/* ============================================
   Services Section - 服务领域
   ============================================ */

.services-new {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0fe 100%);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-new {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(26, 115, 232, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(26, 115, 232, 0.3);
}

.service-icon-new {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.1), rgba(117, 70, 193, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card-new:hover .service-icon-new {
    background: linear-gradient(135deg, #1a73e8, #7546c1);
}

.service-icon-new svg {
    stroke: #1a73e8;
    transition: stroke 0.3s ease;
}

.service-card-new:hover .service-icon-new svg {
    stroke: white;
}

.service-card-new h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.service-card-new p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    flex: 1;
}

.service-image-thumb {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin: 10px 0;
}

.service-image-thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.service-card-new:hover .service-image-thumb img {
    transform: scale(1.05);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a73e8;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(4px);
}

.service-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ============================================
   Services Page - 服务领域页面
   ============================================ */

.services-page {
    padding: 90px 0 120px;
    background: #f6f8fc;
}

.services-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.services-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 40px;
}

.services-intro-text {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(26, 115, 232, 0.08);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.services-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #64748b;
}

.services-breadcrumb a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
}

.services-breadcrumb .divider {
    color: #94a3b8;
}

.services-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin: 16px 0 18px;
}

.services-desc {
    font-size: 16px;
    line-height: 1.9;
    color: #475569;
    max-width: 560px;
}

.services-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 26px;
}

.metric-item {
    background: #f1f5ff;
    border: 1px solid rgba(26, 115, 232, 0.12);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-value {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}

.metric-label {
    font-size: 12px;
    color: #64748b;
}

.services-intro-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services-panel-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(26, 115, 232, 0.1);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

.services-panel-card h3 {
    font-size: 20px;
    margin: 0 0 16px;
    color: #0f172a;
}

.services-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.services-steps li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #334155;
    font-weight: 600;
}

.services-steps li span {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.services-panel-card--accent {
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    color: white;
    border: none;
}

.services-panel-card--accent p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 18px;
    line-height: 1.7;
}

.services-panel-meta {
    display: flex;
    gap: 16px;
}

.services-panel-meta div {
    background: rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.services-panel-meta strong {
    font-size: 18px;
    font-weight: 700;
}

.services-panel-meta span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.service-card-modern {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.service-card-main {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
}

.services-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 4px;
}

.services-list-header h2 {
    margin: 0;
    font-size: 28px;
    color: #0f172a;
}

.services-list-header p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

.service-icon-chip {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #f1f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(26, 115, 232, 0.16);
    transition: all 0.3s ease;
}

.service-icon-chip svg {
    stroke: #1a73e8;
    transition: stroke 0.3s ease;
}

.service-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.service-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.service-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-meta span {
    padding: 5px 10px;
    border-radius: 10px;
    background: #f1f5ff;
    color: #1e40af;
    font-size: 11px;
    font-weight: 600;
}


.services-bottom-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.services-cta-btn {
    min-height: 46px;
    border-radius: 12px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.services-cta-btn--primary {
    color: white;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    box-shadow: 0 10px 24px rgba(26, 115, 232, 0.28);
}

.services-cta-btn--ghost {
    color: #1a73e8;
    background: #ffffff;
    border: 1px solid rgba(26, 115, 232, 0.2);
}

.services-cta-btn:hover {
    transform: translateY(-2px);
}

/* ============================================
   Team Page - 律师团队页面
   ============================================ */

.team-page {
    padding: 90px 0 120px;
    background: #fafbfc;
}

.team-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.team-page-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.team-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
}

.team-breadcrumb a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
}

.team-breadcrumb .divider {
    color: #94a3b8;
}

.team-page-title {
    font-size: 46px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 18px;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-page-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin: 0 0 30px;
}

.team-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.stat-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: white;
    border: 1px solid rgba(26, 115, 232, 0.15);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #1a73e8;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.stat-chip svg {
    stroke: #1a73e8;
}

.team-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lawyer-card {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 30px 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

.lawyer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
    border-color: rgba(26, 115, 232, 0.2);
}

.lawyer-avatar {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #6b9fff, #a78bfa) border-box;
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.15);
}

.lawyer-avatar img,
.lawyer-avatar-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.lawyer-avatar-placeholder svg {
    stroke: #94a3b8;
}

.lawyer-card:hover .lawyer-avatar {
    border-color: transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #1a73e8, #7546c1) border-box;
}

.lawyer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.lawyer-name {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.lawyer-title {
    font-size: 14px;
    color: #1a73e8;
    font-weight: 600;
}

.lawyer-specialty {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
    padding: 0 10px;
}

/* ============================================
   Team Section - 律师团队
   ============================================ */

.team-new {
    padding: 120px 0;
    background: white;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.team-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.team-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

.team-card-new {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(26, 115, 232, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
}

.team-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26, 115, 232, 0.15);
    border-color: rgba(26, 115, 232, 0.2);
}

.team-image-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid rgba(26, 115, 232, 0.2);
    flex-shrink: 0;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card-new:hover .team-image-wrapper img {
    transform: scale(1.08);
}

.team-overlay-new {
    display: none;
}

.team-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon svg {
    stroke: #1a73e8;
}

.team-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.1), rgba(117, 70, 193, 0.1));
    color: #1a73e8;
    border: 1px solid rgba(26, 115, 232, 0.3);
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.team-call-btn:hover {
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
}

.team-info-new {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.team-info-new h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.team-position {
    font-size: 13px;
    color: #7546c1;
    font-weight: 600;
}

.team-view-all {
    display: flex;
    justify-content: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 40px;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(26, 115, 232, 0.4);
}

/* ============================================
   Cases Section - 案例展示
   ============================================ */

.cases-new {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0fe 100%);
}
.cases-new .team-view-all {
    margin-top: 32px;
}

.cases-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.cases-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.cases-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-card-new {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(26, 115, 232, 0.1);
    transition: all 0.3s ease;
}

.case-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.case-image-new {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.case-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-card-new:hover .case-image-new img {
    transform: scale(1.1);
}

.case-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #1a73e8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.case-content-new {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.case-category-tag {
    display: inline-flex;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.1), rgba(117, 70, 193, 0.1));
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #1a73e8;
    width: fit-content;
}

.case-content-new h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.case-content-new p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a73e8;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.3s ease;
    margin-top: 10px;
}

.case-link:hover {
    gap: 12px;
}

.case-link svg {
    transition: transform 0.3s ease;
}

.case-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   Knowledge Section - 法律知识库
   ============================================ */

.knowledge-new {
    padding: 120px 0;
    background: white;
}

.knowledge-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.knowledge-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.knowledge-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.knowledge-card-new {
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.03), rgba(117, 70, 193, 0.03));
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(26, 115, 232, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.knowledge-card-new:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.knowledge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.knowledge-icon svg {
    stroke: white;
}

.knowledge-card-new h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
}

.knowledge-card-new p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    flex: 1;
}

.knowledge-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a73e8;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.knowledge-link:hover {
    gap: 12px;
}

.knowledge-link svg {
    transition: transform 0.3s ease;
}

.knowledge-link:hover svg {
    transform: translateX(4px);
}

.knowledge-meta {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 14px;
    padding-top: 15px;
    border-top: 1px solid rgba(26, 115, 232, 0.15);
}

.meta-label {
    color: #64748b;
    font-weight: 600;
}

.meta-value {
    color: #1a73e8;
    font-weight: 600;
    flex: 1;
}

/* ============================================
   Contact Section - 联系我们重新设计
   ============================================ */

.contact-redesign {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0fe 100%);
}

.contact-header-section {
    text-align: center;
    margin-bottom: 60px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* 区域标签样式 */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    color: white;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(26, 115, 232, 0.25);
}

.section-label svg {
    stroke: white;
}

/* 在线咨询表单区域 */
.consultation-section {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #334155;
}

.form-group .required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 15px;
    color: #1e293b;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 5px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.checkbox-text a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 115, 232, 0.4);
}

.btn-submit svg {
    stroke: white;
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(4px);
}

/* 联系方式信息区域 */
.contact-info-section {
    position: sticky;
    top: 100px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    gap: 18px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(26, 115, 232, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.15);
}

.card-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    stroke: white;
}

.card-content {
    flex: 1;
}

.card-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px;
}

.card-content p {
    font-size: 15px;
    color: #64748b;
    margin: 4px 0;
    line-height: 1.6;
}

.card-content .sub-info {
    font-size: 14px;
    color: #94a3b8;
}

.service-badge {
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.08), rgba(117, 70, 193, 0.08));
    border: 2px solid rgba(26, 115, 232, 0.2);
    border-radius: 16px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #1a73e8;
}

.service-badge svg {
    flex-shrink: 0;
    stroke: #1a73e8;
}

/* 旧版样式保留以防其他页面使用 */
.info-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    backdrop-filter: blur(10px);
}

.info-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin: 0 0 8px;
}

.info-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.item-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-icon svg {
    stroke: white;
}

.item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.item-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-value {
    font-size: 15px;
    color: white;
    font-weight: 500;
    line-height: 1.5;
}

.item-value-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.info-cta {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    color: white;
    backdrop-filter: blur(10px);
}

.cta-badge svg {
    stroke: white;
}

/* 首页在线咨询表单卡片 */
.consultation-form-card {
    background: white;
    border-radius: 24px;
    padding: 35px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.form-field .required {
    color: #e74c3c;
}

.form-field input,
.form-field textarea {
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    color: #1e293b;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.form-privacy {
    padding: 16px;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.05), rgba(117, 70, 193, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.privacy-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.privacy-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkmark {
    display: none;
}

.privacy-text {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

.privacy-text a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
}

.privacy-text a:hover {
    text-decoration: underline;
}

.consultation-form .submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.3);
}

.consultation-form .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 115, 232, 0.4);
}

.consultation-form .submit-btn svg {
    transition: transform 0.3s ease;
}

.consultation-form .submit-btn:hover svg {
    transform: translateX(4px);
}

.contact-form-card {
    background: white;
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.contact-form-card h3,
.contact-form-card h4 {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 35px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #334155;
}

.form-group .required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #1e293b;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.privacy-checkbox {
    margin: 25px 0;
}

.privacy-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
}

.privacy-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.privacy-checkbox span {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.privacy-checkbox a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
}

.privacy-checkbox a:hover {
    text-decoration: underline;
}

.submit-btn,
.btn.btn-full {
    width: 100%;
    padding: 18px 35px;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.3);
}

.submit-btn:hover,
.btn.btn-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 115, 232, 0.4);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(4px);
}

.map-section {
    padding: 100px 0;
    background: white;
}

.map-section h3 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 50px;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.map-placeholder {
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.05), rgba(117, 70, 193, 0.05));
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    border: 2px dashed rgba(26, 115, 232, 0.2);
}

.map-info h4 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.map-info p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin: 10px 0;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.3);
}

.btn-map:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 115, 232, 0.4);
}

/* ============================================
   响应式设计 - Responsive Design
   ============================================ */

/* 平板设备 */
@media (max-width: 1200px) {
    .navbar-modern .navbar-container,
    .navbar .container {
        padding: 0 30px;
    }
    
    .brand-icon,
    .logo-seal {
        width: 50px;
        height: 50px;
    }
    
    .brand-text img,
    .logo-text {
        height: 32px;
    }
    
    .nav-item,
    .nav-links a {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .hero-container,
    .about-container,
    .services-container,
    .team-container,
    .cases-container,
    .knowledge-container,
    .services-page-container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .section-title-new {
        font-size: 40px;
    }
    
    .services-grid-new,
    .cases-grid-new,
    .knowledge-grid-new,
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .navbar-modern .navbar-container,
    .navbar .container {
        padding: 0.8rem 25px;
        height: 75px;
    }
    
    .brand-icon,
    .logo-seal {
        width: 45px;
        height: 45px;
    }
    
    .brand-text img,
    .logo-text {
        height: 28px;
    }
    
    .navbar-menu,
    .nav-links {
        display: none;
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        gap: 5px;
        z-index: 999;
    }
    
    .navbar-menu.active,
    .nav-links.active {
        display: flex;
    }
    
    .nav-item,
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
    
    .navbar-actions {
        display: none;
    }
    
    .navbar-toggle,
    .mobile-menu {
        display: flex;
    }
    
    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-visual {
        order: -1;
        height: 400px;
    }
    
    .services-grid-new,
    .cases-grid-new,
    .knowledge-grid-new,
    .services-grid-modern {
        grid-template-columns: 1fr;
    }

    .services-intro {
        grid-template-columns: 1fr;
    }
    
    .team-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .company-features {
        grid-template-columns: 1fr;
    }
}

/* 手机设备 */
@media (max-width: 768px) {
    .navbar-modern .navbar-container,
    .navbar .container {
        padding: 0.6rem 20px;
        height: 70px;
    }
    
    .brand-icon,
    .logo-seal {
        width: 40px;
        height: 40px;
    }
    
    .brand-text img,
    .logo-text {
        height: 26px;
    }
    
    .brand-link,
    .logo-link {
        gap: 10px;
    }
    
    .navbar-menu,
    .nav-links {
        top: 70px;
    }
    
    .hero-new,
    .about-new,
    .services-new,
    .team-new,
    .cases-new,
    .knowledge-new,
    .services-page,
    .team-page {
        padding: 80px 0;
    }
    
    .hero-container,
    .about-container,
    .services-container,
    .team-container,
    .cases-container,
    .knowledge-container,
    .services-page-container,
    .team-page-container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title-new {
        font-size: 32px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .team-grid-new,
    .team-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .about-image-section {
        order: -1;
    }

    .about-slider-btn {
        width: 36px;
        height: 36px;
    }

    .about-slider-btn span {
        font-size: 24px;
    }

    .about-slider-prev {
        left: 10px;
    }

    .about-slider-next {
        right: 10px;
    }

    .about-slider-dots {
        bottom: 12px;
    }

    .about-badge {
        top: 16px;
        right: 16px;
        padding: 10px 16px;
        font-size: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-card {
        padding: 35px 30px;
    }
    
    .page-hero {
        padding: 140px 0 80px;
    }
    
    .page-title {
        font-size: 42px;
    }

    .services-title {
        font-size: 34px;
    }

    .team-page-title {
        font-size: 34px;
    }

    .services-intro-text {
        padding: 32px;
    }

    .services-panel-meta {
        flex-direction: column;
    }

    .services-list-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .services-list-header h2 {
        font-size: 24px;
    }

    .service-card-modern {
        padding: 16px;
        min-height: 112px;
    }

    .service-icon-chip {
        width: 44px;
        height: 44px;
    }

    .service-content h3 {
        font-size: 17px;
    }

    .service-meta span {
        font-size: 10px;
    }

    .services-bottom-cta {
        flex-direction: column;
    }

    .services-cta-btn {
        width: 100%;
    }

    .service-cover img {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .navbar-modern .navbar-container,
    .navbar .container {
        padding: 0.5rem 15px;
        height: 65px;
    }
    
    .brand-icon,
    .logo-seal {
        width: 36px;
        height: 36px;
    }
    
    .brand-text img,
    .logo-text {
        height: 24px;
    }
    
    .brand-link,
    .logo-link {
        gap: 8px;
    }
    
    .navbar-menu,
    .nav-links {
        top: 65px;
    }
    
    .navbar-toggle span,
    .mobile-menu span {
        width: 24px;
        height: 2.5px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title-new {
        font-size: 26px;
    }

    .services-title {
        font-size: 28px;
    }

    .services-list-header h2 {
        font-size: 22px;
    }

    .team-page-title {
        font-size: 28px;
    }

    .lawyer-card {
        padding: 25px 18px 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .visual-card {
        padding: 15px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 30px 25px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .map-section h3 {
        font-size: 32px;
    }
}

/* ============================================
   Footer - 现代化页脚样式 2026重新设计
   ============================================ */

.footer-modern {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 0 30px;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
}

.footer-wave::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><defs><linearGradient id="wave-grad" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0.05)"/></linearGradient></defs><path d="M0,50 Q250,20 500,50 T1000,50 L1000,100 L0,100 Z" fill="url(%23wave-grad)"/></svg>');
    background-size: cover;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-top: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
    padding: 12px 20px 12px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-brand-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-brand-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 12px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
}

.footer-brand-text {
    display: flex;
    align-items: center;
}

.footer-brand-text img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.footer-stats {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(26, 115, 232, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(26, 115, 232, 0.15);
}

.footer-stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0;
    padding-bottom: 15px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    border-radius: 3px;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.footer-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.footer-nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.footer-nav-link svg {
    stroke: rgba(26, 115, 232, 0.6);
    transition: all 0.3s ease;
}

.footer-nav-link:hover svg {
    stroke: #60a5fa;
    transform: translateX(3px);
}

.footer-contact-modern {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-card {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.footer-contact-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(26, 115, 232, 0.3);
    transform: translateY(-2px);
}

.contact-card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.15), rgba(117, 70, 193, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    stroke: #60a5fa;
}

.contact-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-card-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-weight: 500;
}

.footer-bottom-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-copyright p {
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.3);
}

/* 旧footer样式兼容 */
footer.footer {
    background: linear-gradient(135deg, #1a73e8, #7546c1);
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="1000" height="1000" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover {
    transform: scale(1.05);
}

.footer-logo-image {
    max-height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo p {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links h4,
.footer-contact h4,
.footer-extra h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-extra h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-links ul li:hover {
    transform: translateX(5px);
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
    font-size: 15px;
}

.footer-links ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffffff;
}

.footer-links ul li a:hover::before {
    opacity: 1;
    left: -10px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
    fill: none;
}

.contact-text p {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

/* 响应式页脚 */
@media (max-width: 1200px) {
    .footer-content {
        padding: 0 30px;
        gap: 35px;
    }
    
    .footer-main {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 25px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-stats {
        flex-wrap: wrap;
    }
    
    /* 联系区域响应式 */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .contact-info-section {
        position: static;
    }

    .about-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    footer.footer {
        padding: 50px 0 25px;
    }
    
    .footer-modern {
        padding: 60px 0 25px;
    }
    
    .footer-content {
        padding: 0 20px;
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .footer-main {
        gap: 35px;
    }
    
    .footer-logo-image {
        max-height: 50px;
    }
    
    .footer-bottom-modern {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    /* 联系区域响应式 */
    .contact-redesign {
        padding: 70px 0;
    }
    
    .consultation-section {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 20px;
    }

    .about-page-new {
        padding: 90px 0 80px;
    }

    .about-title {
        font-size: 40px;
    }

    .about-content-card {
        padding: 35px;
    }

    .about-feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    footer.footer {
        padding: 40px 0 20px;
    }
    
    .footer-modern {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        padding: 0 15px;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.1rem;
    }
    
    .footer-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    /* 联系区域响应式 */
    .contact-redesign {
        padding: 50px 0;
    }
    
    .consultation-section {
        padding: 25px 20px;
    }
    
    .contact-card {
        padding: 18px;
        gap: 15px;
    }
    
    .card-icon {
        width: 48px;
        height: 48px;
    }
    
    .service-badge {
        padding: 16px 20px;
        font-size: 14px;
    }

    .about-page-new {
        padding: 70px 0 60px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-highlights {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .highlight-divider {
        display: none;
    }

    .about-content-card {
        padding: 28px 22px;
    }
}
