/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #fafafa;
    width: 100%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 头部导航 - 极简风格 */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

.navbar {
    padding: 16px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 28px;
}

.nav-menu a:hover {
    color: #2563eb;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.wa-icon a {
    color: #25d366;
    font-size: 28px;
    transition: transform 0.3s ease;
}

.wa-icon a:hover {
    transform: scale(1.15);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Banner区域 - 现代渐变风格 */
.banner {
    margin-top: 68px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 100%);
    z-index: 1;
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 410px;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.banner-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.banner-text h1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.banner-text h2 {
    font-size: 1.5rem;
    color: #fbbf24;
    margin-bottom: 24px;
    font-weight: 600;
}

.banner-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 410px;
    min-height: 600px;
}

.contact-form h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 700;
}

/* 移除全局 .form-row 避免与 Contact Form 7 冲突 */

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 2px solid #e5e7eb;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.contact-form textarea {
    margin-bottom: 12px;
    min-height: 80px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form button,
.contact-form .wpcf7-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.contact-form button:hover,
.contact-form .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

/* Contact Form 7 Styles */
.contact-form .wpcf7 {
    margin: 0;
}

.contact-form .wpcf7-form {
    margin: 0;
}

.contact-form .wpcf7-form p {
    margin: 0 0 12px 0;
}

.contact-form .wpcf7-form p:last-of-type {
    margin-bottom: 0;
}

.contact-form .wpcf7-form > p:has(.wpcf7-textarea) {
    margin-bottom: 12px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-form .form-row p {
    margin: 0 !important;
    display: contents;
}

.contact-form .form-row br {
    display: none;
}

.contact-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contact-form .wpcf7-text,
.contact-form .wpcf7-email,
.contact-form .wpcf7-tel,
.contact-form .wpcf7-textarea,
.contact-form .wpcf7-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
    font-family: inherit;
}

.contact-form .wpcf7-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 36px;
}

.contact-form .wpcf7-textarea {
    min-height: 80px;
    resize: vertical;
}

.contact-form .wpcf7-text:focus,
.contact-form .wpcf7-email:focus,
.contact-form .wpcf7-tel:focus,
.contact-form .wpcf7-textarea:focus,
.contact-form .wpcf7-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form .wpcf7-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.contact-form .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.contact-form .wpcf7-not-valid-tip {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 4px;
}

.contact-form .wpcf7-response-output {
    margin: 16px 0 0;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.contact-form .wpcf7-mail-sent-ok {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.contact-form .wpcf7-validation-errors {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.contact-form .wpcf7-spinner {
    margin-left: 8px;
}

/* 服务区域 - 卡片网格风格 */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 80px;
    line-height: 1.6;
}

/* Benefits Section - 现代卡片设计 */
.benefits-section {
    margin: 80px 0;
}

.benefits-title {
    font-size: 2rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.benefit-card {
    text-align: center;
    padding: 40px 24px;
    background: white;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    border-radius: 20px;
}

.benefit-card h4 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Process Section - Compact Grid Style */
.process-section {
    margin-top: 80px;
}

.process-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.process-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.process-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.process-card h4 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 600;
}

.process-card p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Project Gallery Section - Horizontal Scroll Style */
.project-gallery-section {
    margin-top: 80px;
    padding: 60px 0;
    background: white;
    border-radius: 24px;
}

.gallery-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.gallery-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 80px;
}

.gallery-wrapper {
    overflow: hidden;
    width: 100%;
}

.gallery-track {
    display: flex;
    gap: 40px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gallery Item - Horizontal Card Style */
.gallery-item {
    flex: 0 0 calc(50% - 20px);
    min-width: calc(50% - 20px);
    max-width: calc(50% - 20px);
    display: flex;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.gallery-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.gallery-tag {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-content {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-content h4 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.gallery-content p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Gallery Navigation Buttons */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #1a1a1a;
    font-size: 1.3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-nav:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-color: #2563eb;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

.gallery-nav[style*="cursor: not-allowed"] {
    pointer-events: none;
    opacity: 0.3;
}

.gallery-nav-left {
    left: 0;
}

.gallery-nav-right {
    right: 0;
}

/* Lifetime Services - 现代网格 */
.lifetime-services {
    background:#ffffff;
    padding: 120px 0;
}

.lifetime-minimal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.lifetime-card {
    background: white;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.lifetime-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lifetime-card:hover::before {
    opacity: 1;
}

.lifetime-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.lifetime-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.lifetime-icon.bg-yellow { background: linear-gradient(135deg, #f59e0b, #d97706); }
.lifetime-icon.bg-red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.lifetime-icon.bg-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.lifetime-icon.bg-cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }

.lifetime-card h4 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.lifetime-card p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* 产线流程图 - 现代轮播 */
.production-flow {
    padding: 60px 0;
    background: white;
}

.production-flow .section-title {
    margin-bottom: 40px;
}

.carousel-container {
    position: relative;
    padding: 40px 0;
    margin-top: 0;
    max-width: 100%;
}

/* 支持WordPress生成的wrapper结构 - 与原HTML兼容 */

.carousel-slide {
    display: none;
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 100px 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    display: flex !important;
}

.carousel-slide:first-child {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(51, 65, 85, 0.9) 100%), 
                url('images/banner2-1.jpg');
    background-size: cover;
    background-position: center;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.carousel-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.carousel-icon {
    font-size: 5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.carousel-content h4 {
    font-size: 3rem;
    margin-bottom: 32px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.carousel-dot {
    width: 16px;
    height: 16px;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.carousel-dot.active {
    background: #2563eb;
    transform: scale(1.2);
}

/* Process Carousel Section */
.process-carousel {
    padding: 80px 0;
    background: #f8fafc;
}

.process-carousel .section-title {
    text-align: center;
    margin-bottom: 48px;
}

/* Carousel Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1a1a1a;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Carousel Wrapper for WordPress structure - 不影响原HTML */
.carousel-wrapper {
    position: relative;
}

.carousel-track {
    position: relative;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator:hover {
    background: #94a3b8;
    transform: scale(1.2);
}

.carousel-indicator.active {
    background: #2563eb;
    transform: scale(1.3);
}

/* Product Showcase Section - Magic UI Inspired */
.product-showcase {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 24px;
}

.showcase-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 48px;
}

.showcase-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.showcase-wrapper {
    overflow: visible;
    width: 100%;
    position: relative;
}

.showcase-wrapper-inner {
    overflow: hidden;
    margin: 0 -15px;
    padding: 0 15px;
}

.showcase-track {
    display: flex;
    gap: 32px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
}

/* Product Card - Magic UI Style */
.product-card {
    flex: 0 0 calc((100% - 64px) / 3);
    min-width: calc((100% - 64px) / 3);
    max-width: calc((100% - 64px) / 3);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #ffffff;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

/* Shine Effect - Magic UI */
.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.product-card:hover .shine-effect {
    left: 100%;
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    z-index: 2;
    animation: pulse-badge 2s ease-in-out infinite;
}

.product-badge.new-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-info {
    padding: 28px;
    position: relative;
    z-index: 2;
}

.product-name {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}

.product-category {
    color: #2563eb;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

.feature-tag i {
    font-size: 0.75rem;
}

.product-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.product-btn:hover::before {
    left: 100%;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.product-btn i {
    transition: transform 0.3s ease;
}

.product-btn:hover i {
    transform: translateX(4px);
}

/* Navigation Buttons */
.showcase-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #1a1a1a;
    font-size: 1.2rem;
}

.showcase-nav:hover:not([style*="cursor: not-allowed"]) {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-color: #2563eb;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.showcase-nav[style*="cursor: not-allowed"] {
    pointer-events: none;
}

.showcase-nav-left {
    left: 60px;
}

.showcase-nav-right {
    right: 60px;
}

/* Scroll Indicators - Hidden */
.showcase-indicators {
    display: none;
}

/* Product Catalog Download Button */
.catalog-download {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.download-btn i {
    font-size: 1.2rem;
}

/* 案例/合作伙伴 - 现代布局 */
.cases-partners {
    padding: 120px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.cases-section,
.partners-section {
    margin-bottom: 80px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.case-item {
    background: white;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.case-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.case-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.case-info {
    padding: 32px;
}

.case-info h4 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
}

.case-info p {
    color: #6b7280;
    margin-bottom: 8px;
    font-size: 1rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
}

.partner-logo {
    text-align: center;
    padding: 32px;
    background: white;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* 公司资质 - 现代图片墙 */
.certifications-facilities {
    padding: 120px 0;
    background: white;
}

.image-wall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
}

.wall-item {
    background: white;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e5e7eb;
}

.wall-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.wall-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.wall-content {
    padding: 32px;
}

.wall-content h4 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.wall-content p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

/* 页脚 - 现代设计 */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: #f8fafc;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 16px;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

.contact-info p {
    margin-bottom: 16px;
    color: #cbd5e1;
    font-size: 1rem;
}

.contact-info i {
    color: #60a5fa;
    width: 24px;
}

/* Social Media Links */
.social-media {
    margin-top: 32px;
}

.social-media h4 {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 16px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.facebook:hover {
    background: #145dbf;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.twitter:hover {
    background: #0d8bd9;
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon.linkedin:hover {
    background: #005582;
}

.social-icon.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-icon.instagram:hover {
    opacity: 0.9;
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon.youtube:hover {
    background: #cc0000;
}

.social-icon.whatsapp {
    background: #25d366;
}

.social-icon.whatsapp:hover {
    background: #1da851;
}

.footer-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 0;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.footer-form textarea {
    margin-bottom: 16px;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: #94a3b8;
}

.footer-form button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
}

.footer-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

/* Footer Contact Form 7 Styles */
.footer-section .wpcf7 {
    margin: 0;
}

.footer-section .wpcf7-form {
    margin: 0;
}

.footer-section .wpcf7-form p {
    margin: 0 0 16px 0;
}

.footer-section .wpcf7-form p:last-of-type {
    margin-bottom: 0;
}

.footer-section .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.footer-section .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-section .form-row p {
    margin: 0 !important;
    display: contents;
}

.footer-section .form-row br {
    display: none;
}

.footer-section .wpcf7-text,
.footer-section .wpcf7-email,
.footer-section .wpcf7-tel,
.footer-section .wpcf7-textarea,
.footer-section .wpcf7-select {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
    box-sizing: border-box;
}

.footer-section .wpcf7-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px;
}

.footer-section .wpcf7-select option {
    background: #1e293b;
    color: white;
}

.footer-section .wpcf7-textarea {
    min-height: 90px;
    resize: vertical;
}

.footer-section .wpcf7-text::placeholder,
.footer-section .wpcf7-email::placeholder,
.footer-section .wpcf7-tel::placeholder,
.footer-section .wpcf7-textarea::placeholder {
    color: #94a3b8;
}

.footer-section .wpcf7-text:focus,
.footer-section .wpcf7-email:focus,
.footer-section .wpcf7-tel:focus,
.footer-section .wpcf7-textarea:focus,
.footer-section .wpcf7-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.footer-section .wpcf7-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-section .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.footer-section .wpcf7-not-valid-tip {
    color: #fca5a5;
    font-size: 0.875rem;
    margin-top: 4px;
}

.footer-section .wpcf7-response-output {
    margin: 16px 0 0;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.footer-section .wpcf7-mail-sent-ok {
    background: rgba(209, 250, 229, 0.2);
    color: #6ee7b7;
    border: 1px solid rgba(110, 231, 183, 0.3);
}

.footer-section .wpcf7-validation-errors {
    background: rgba(254, 226, 226, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(252, 165, 165, 0.3);
}

.footer-section .wpcf7-spinner {
    margin-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* 浮动客服按钮 - 现代设计 */
.floating-service {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
}

.service-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: white;
    color: #1a1a1a;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
}

.service-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-btn.whatsapp {
    background: #25d366;
    color: white;
}

.service-btn.email {
    background: #2563eb;
    color: white;
}

.service-btn.phone {
    background: #059669;
    color: white;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .banner-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .banner-text h1 {
        font-size: 3rem;
    }
    
    .timeline-item {
        flex-direction: column !important;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: column !important;
    }
    
    .vertical-timeline::before {
        left: 20px;
    }
    
    .timeline-number {
        left: 20px;
        transform: translate(-50%, -50%);
    }
    
    .timeline-content {
        margin: 0;
        padding: 30px;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-image {
        margin: 0;
        order: 2;
    }
    
    .timeline-content {
        order: 1;
    }
    
    .timeline-image img {
        height: 250px;
    }

    /* Product Showcase Responsive - Tablet */
    .product-showcase {
        padding: 40px 0;
        margin-top: 60px;
    }

    .showcase-title {
        font-size: 2rem;
    }

    .showcase-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .showcase-container {
        padding: 0 50px;
    }

    .product-card {
        flex: 0 0 calc((100% - 64px) / 3);
        min-width: calc((100% - 64px) / 3);
        max-width: calc((100% - 64px) / 3);
    }

    .showcase-nav {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .showcase-nav-left {
        left: 50px;
    }

    .showcase-nav-right {
        right: 50px;
    }
    
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 32px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 16px 0;
    }

    .banner-text h1 {
        font-size: 2.5rem;
    }

    .banner-text h2 {
        font-size: 1.25rem;
    }

    .contact-form {
        display: none;
    }

    .banner-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .lifetime-minimal-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }

    .carousel-slide {
        padding: 60px 40px;
        min-height: 400px;
    }
    
    .carousel-icon {
        font-size: 3.5rem;
        margin-bottom: 24px;
    }
    
    .carousel-content h4 {
        font-size: 2rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .image-wall {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .floating-service {
        right: 16px;
        bottom: 16px;
    }

    .service-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    /* Product Showcase Responsive - Mobile */
    .product-showcase {
        padding: 32px 0;
        margin-top: 40px;
    }

    .showcase-title {
        font-size: 1.75rem;
    }

    .showcase-subtitle {
        font-size: 0.95rem;
    }

    .showcase-container {
        padding: 0 50px;
    }

    .showcase-wrapper-inner {
        margin: 0 -15px;
        padding: 0 15px;
    }

    .product-card {
        flex: 0 0 calc(100vw - 120px - 30px);
        min-width: calc(100vw - 120px - 30px);
        max-width: calc(100vw - 120px - 30px);
    }

    .product-image-wrapper {
        height: 200px;
    }

    .product-info {
        padding: 20px;
    }

    .product-name {
        font-size: 1.2rem;
    }

    .product-description {
        font-size: 0.9rem;
    }

    .showcase-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .showcase-nav-left {
        left: 50px;
    }

    .showcase-nav-right {
        right: 50px;
    }

    .showcase-track {
        gap: 20px;
    }

    /* Project Gallery Responsive - Mobile */
    .project-gallery-section {
        margin-top: 50px;
        padding: 40px 0;
    }

    .gallery-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .gallery-container {
        padding: 0 60px;
    }

    .gallery-item {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        flex-direction: column;
    }

    .gallery-image {
        flex: 0 0 250px;
        width: 100%;
    }

    .gallery-content {
        padding: 24px;
    }

    .gallery-content h4 {
        font-size: 1.3rem;
    }

    .gallery-content p {
        font-size: 0.95rem;
    }

    .gallery-nav {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .gallery-nav-left {
        left: 60px;
    }

    .gallery-nav-right {
        right: 60px;
    }
}

@media (max-width: 768px) {
    /* 手机端只显示圆形WhatsApp按钮 */
    .service-btn.email,
    .service-btn.phone {
        display: none;
    }
    
    .service-btn span {
        display: none;
    }
    
    .service-btn {
        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
    
    .service-btn i {
        font-size: 1.5rem;
    }
    
    .service-btn.whatsapp {
        background: #25d366;
        color: white;
    }
    
    /* 修复横向滚动条问题 */
    .carousel-slide {
        padding: 60px 24px;
    }
    
    .banner-container {
        padding: 0 16px;
    }
    
    .container {
        padding: 0 16px;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .banner {
        padding: 60px 0;
    }

    .banner-text h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-row input {
        margin-bottom: 16px;
    }
    
    .footer-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-form .form-row input {
        margin-bottom: 16px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .lifetime-minimal-grid {
        grid-template-columns: 1fr;
    }

    .carousel-slide {
        padding: 40px 24px;
        min-height: 350px;
    }
    
    .carousel-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .carousel-content h4 {
        font-size: 1.75rem;
    }
    
    .carousel-content p {
        font-size: 0.9rem;
    }
    
    .download-btn {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .image-wall {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Product Showcase Responsive - Small Mobile */
    .product-showcase {
        padding: 24px 0;
        margin-top: 32px;
        border-radius: 16px;
    }

    .showcase-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .showcase-subtitle {
        font-size: 0.9rem;
        margin-bottom: 32px;
    }

    .showcase-container {
        padding: 0 42px;
    }

    .showcase-wrapper-inner {
        margin: 0 -15px;
        padding: 0 15px;
    }

    .product-card {
        flex: 0 0 calc(100vw - 100px - 30px);
        min-width: calc(100vw - 100px - 30px);
        max-width: calc(100vw - 100px - 30px);
    }

    .product-image-wrapper {
        height: 180px;
    }

    .product-info {
        padding: 16px;
    }

    .product-name {
        font-size: 1.1rem;
    }

    .product-category {
        font-size: 0.85rem;
    }

    .product-description {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .product-features {
        gap: 6px;
        margin-bottom: 20px;
    }

    .feature-tag {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    .product-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .showcase-nav {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .showcase-nav-left {
        left: 42px;
    }

    .showcase-nav-right {
        right: 42px;
    }

    .catalog-download {
        margin-top: 32px;
    }

    .showcase-track {
        gap: 16px;
    }

    /* Project Gallery Responsive - Small Mobile */
    .project-gallery-section {
        margin-top: 40px;
        padding: 30px 0;
    }

    .gallery-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .gallery-container {
        padding: 0 50px;
    }

    .gallery-item {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        flex-direction: column;
    }

    .gallery-image {
        flex: 0 0 220px;
    }

    .gallery-content {
        padding: 20px;
    }

    .gallery-content h4 {
        font-size: 1.2rem;
    }

    .gallery-content p {
        font-size: 0.9rem;
    }

    .gallery-nav {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .gallery-nav-left {
        left: 50px;
    }

    .gallery-nav-right {
        right: 50px;
    }
}

/* ========================================
   WordPress特定修复
   ======================================== */

/* 修复轮播幻灯片显示 */
.carousel-track .carousel-slide {
    width: 100%;
    flex-shrink: 0;
}

.carousel-slide .slide-image {
    display: none;
}

.carousel-slide .slide-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.carousel-slide .slide-content h3 {
    font-size: 3rem;
    margin-bottom: 32px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

.carousel-slide .slide-description p {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    color: white;
}

/* 修复Success Cases样式 */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.case-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.case-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.1);
}

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 24px;
}

.case-overlay h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.case-content {
    padding: 24px;
}

.case-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* 修复Company Qualifications样式 */
.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.qualification-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.qualification-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.qualification-image {
    height: 200px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.qualification-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.qualification-content {
    padding: 24px;
}

.qualification-content h4 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.qualification-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* 修复右侧客服浮动按钮 */
.floating-service-buttons {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.service-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.service-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.service-btn i {
    font-size: 24px;
}

.service-btn span {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 14px;
}

.service-btn:hover span {
    opacity: 1;
}

.service-btn.email {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.service-btn.phone {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.service-btn.whatsapp {
    background: #25d366;
}

/* 修复Gallery项目高度 */
.gallery-item {
    min-height: 450px;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gallery-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-content h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.gallery-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
}