/* Professional Fitness Equipment Manufacturer Website Styles */
/* Color Scheme: Black and white primary, blue accent color */

:root {
    --primary-blue: #2563eb;
    --secondary-blue: #3b82f6;
    --light-blue: #dbeafe;
    --dark-gray: #1f2937;
    --medium-gray: #6b7280;
    --light-gray: #f9fafb;
    --white: #ffffff;
    --black: #000000;
    
    /* Dynamic theme colors - will be overridden by each factory page */
    --theme-primary: #2563eb;
    --theme-secondary: #3b82f6;
    --theme-accent: #2563eb;
}

/* Global Style Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

/* Header Styles */
.top-header {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1002;
}

.top-header .social-icons a {
    color: var(--white);
    margin-right: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-header .social-icons a:hover {
    color: var(--primary-blue);
}

.contact-btn {
    background-color: var(--black);
    color: var(--white);
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--dark-gray);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
}

/* 移动端按钮适配 */
@media (max-width: 991px) {
    .contact-btn {
        padding: 6px 15px;
        font-size: 13px;
        margin-right: 8px;
    }
    
    .contact-btn i {
        margin-right: 5px;
    }
}

@media (max-width: 768px) {
    .top-header {
        padding: 10px 0;
        font-size: 12px;
    }
    
    /* Mobile: 隐藏社媒，两个按钮一行两端对齐 */
    .top-header .social-icons { display: none !important; }

    .top-header .col-md-6.col-12 {
        display: flex;
        width: 100%;
        justify-content: space-between; /* 两端对齐 */
        align-items: center;
        gap: 12px;
    }
    
    .contact-btn {
        padding: 10px 14px;
        font-size: 12px;
        margin-right: 0;
        min-width: 0;
        flex: 0 1 calc(50% - 10px); /* 两个按钮均分一行 */
        text-align: center;
    }
    /* 移动端只显示图标，隐藏文字 */
    .top-header .contact-btn span { display: none !important; }
    .top-header .contact-btn i { margin-right: 0; font-size: 16px; }
    
    .social-icons a {
        margin-right: 10px;
        font-size: 14px;
    }
}

/* 首页标题在移动端居中（仅首页常用类） */
@media (max-width: 768px) {
    .section-title,
    .section-subtitle,
    .partners-section .section-title,
    .new-arrivals-section .section-title,
    .exhibition-section .section-title,
    .gym-projects-section .section-title,
    .who-we-serve-section .section-title,
    .testimonials-section .section-title {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Our Global Partners - Mobile layout: two rows (2 + 3), show 5 logos */
@media (max-width: 768px) {
    .partners-section .row { display: flex; flex-wrap: wrap; justify-content: center; }
    /* 隐藏两侧占位列 */
    .partners-section .row > .col-1 { display: none !important; }
    /* 根据当前结构，第二、第三个为首行两列 */
    .partners-section .row > div:nth-child(2),
    .partners-section .row > div:nth-child(3) { flex: 0 0 50%; max-width: 50%; }
    /* 其余三个为第二行三列 */
    .partners-section .row > div:nth-child(4),
    .partners-section .row > div:nth-child(5),
    .partners-section .row > div:nth-child(6) { flex: 0 0 33.333%; max-width: 33.333%; }
}

@media (min-width: 992px) {
    /* PC: 右侧按钮并排且靠右对齐 */
    .top-header .col-md-6.col-12 {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 12px;
    }
    .top-header .social-icons { display: block; }
}

/* Main Navigation Styles */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    margin: 0 15px;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.dropdown-item:hover {
    background-color: var(--light-blue);
    color: var(--primary-blue);
}

/* Footer Styles */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer h5 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

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

.footer ul li a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid var(--medium-gray);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: var(--medium-gray);
}

/* Homepage Specific Styles */
.hero-section {
    /* background: linear-gradient(135deg, #1e293b 0%, #334155 50%, var(--primary-blue) 100%); */
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url("{eyou:static file='assets/home/top-banner.jpg' /}"); */
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Unified Button Styles */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border: 2px solid transparent;
    color: var(--white);
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    /* border-radius: 50px; */
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}
.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
    color: var(--white);
}

.btn-outline-light {
    color: #fff;
    border: 2px solid #fff;
    background: transparent;
    padding: 12px 28px;
    font-weight: 600;
    /* border-radius: 50px; */
    transition: all .3s ease;
}
.btn-outline-light:hover {
    background: #fff;
    color: var(--dark-gray);
}

.btn-outline-dark {
    color: var(--dark-gray);
    border: 2px solid var(--dark-gray);
    background: transparent;
    padding: 12px 28px;
    font-weight: 600;
    /* border-radius: 50px; */
    transition: all .3s ease;
}
.btn-outline-dark:hover {
    background: var(--dark-gray);
    color: #fff;
}

.btn-lg-unified {
    padding: 15px 35px !important;
    font-size: 1.05rem !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .navbar-nav .nav-link {
        margin: 0 5px;
    }

    .top-header {
        text-align: center;
    }

    .top-header .social-icons {
        margin-bottom: 10px;
    }

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

    .stat-item {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .product-category-item img {
        height: 200px;
    }

    .advantage-content {
        padding: 30px 20px;
    }

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

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .btn-primary-custom {
        padding: 12px 25px;
        font-size: 14px;
    }

    .footer {
        text-align: center;
    }

    .stats-grid {
        gap: 15px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .product-category-item img {
        height: 180px;
    }

    .category-overlay h5 {
        font-size: 1.1rem;
    }

    .advantage-content {
        padding: 25px 15px;
    }

    .advantage-title {
        font-size: 1.8rem;
    }

    .advantage-number {
        font-size: 4rem;
    }
}

/* SEO Optimized Styles */
.section-title {
    color: var(--dark-gray);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    color: var(--medium-gray);
    font-size: 1rem;
    text-align: center;
    /* margin-bottom: 25px; */
}

.card-custom {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.card-custom:hover {
    transform: translateY(-5px);
}

/* Video Container Styles - General */
.video-container:not(.factory-video-block .video-container) {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 宽高比 */
    overflow: hidden;
    /* border-radius: 10px; */
}

.video-container:not(.factory-video-block .video-container) iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* New Arrivals Section Styles */
.new-arrivals-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.new-arrivals-carousel {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    min-height: 400px; /* Ensure minimum height */
    overflow: hidden;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 15px;
}

/* Four Factories Section */

.new-arrivals-carousel .carousel-slide {
    min-width: 100%;
    padding: 20px 0;
}

.product-item {
    text-align: center;
    transition: transform 0.3s ease;
    padding: 15px;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin: 0 5px;
}

.product-item:hover {
    transform: translateY(-3px);
}

.product-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.product-item:hover img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-item h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.carousel-navigation {
    text-align: center;
    margin-top: 30px;
}

.carousel-navigation .nav-indicator {
    display: inline-block;
    height: 4px;
    background-color: #ddd;
    border-radius: 2px;
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 12px;
}

.carousel-navigation .nav-indicator.active {
    background-color: var(--primary-blue);
    width: 40px;
    transform: scale(1.1);
}

/* Choose Us Section Styles - Left Text Right Image */
.choose-us-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    position: relative;
}

.advantage-block {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.advantage-content {
    padding: 40px;
    position: relative;
}

.advantage-number {
    font-size: 6rem;
    font-weight: 900;
    color: var(--primary-blue);
    opacity: 0.1;
    position: absolute;
    top: -20px;
    left: 0;
    line-height: 1;
    z-index: -1;
}

.advantage-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 10px;
    position: relative;
}

.advantage-subtitle {
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 20px;
}

.advantage-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.advantage-stats {
    display: flex;
    gap: 40px;
}

.advantage-stats .stat-item {
    text-align: left;
}

.advantage-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.advantage-stats .stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantage-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.advantage-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-blue), transparent);
    opacity: 0.1;
    z-index: 1;
}

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

/* Statistics Section Styles */
.statistics-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.statistics-section::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 100 100"><defs><pattern id="hexagons" width="20" height="20" patternUnits="userSpaceOnUse"><polygon points="10,2 18,8 18,16 10,22 2,16 2,8" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    color: var(--medium-gray);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.single-image-carousel {
    position: relative;
}

.single-image-carousel .carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

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

.single-image-carousel .carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.single-image-carousel .carousel-nav-dots {
    text-align: center;
    margin-top: 20px;
}

.single-image-carousel .nav-dot {
    display: inline-block;
    height: 4px;
    background-color: #ddd;
    border-radius: 2px;
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 12px;
}

.single-image-carousel .nav-dot.active {
    background-color: var(--primary-blue);
    width: 40px;
    transform: scale(1.1);
}

/* Factory Video Blocks Styles */
.factory-video-block {
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.factory-video-block:hover {
    transform: translateY(-10px);
}

.factory-video-block .video-container {
    position: relative !important;
    height: 200px !important;
    overflow: hidden !important;
    border: 1px solid #e9ecef;
    border-radius: 15px 15px 0 0;
    z-index: 1;
    background: transparent !important;
}

/* 强制显示工厂图片 - 最高优先级 */
.factories-section .factory-video-block .video-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 10 !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: none !important;
}

.factory-video-block:hover {
    transform: translateY(-10px);
}

.factory-video-block:hover .video-container img {
    transform: none;
}

/* 图片加载失败时的占位符 */
.factory-video-block .video-container img:not([src]),
.factory-video-block .video-container img[src=""] {
    background: linear-gradient(45deg, #f8f9fa 25%, transparent 25%), 
                linear-gradient(-45deg, #f8f9fa 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #f8f9fa 75%), 
                linear-gradient(-45deg, transparent 75%, #f8f9fa 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.factory-text {
    background-color: var(--white);
    padding: 20px;
    text-align: center;
}

.factory-text h5 {
    color: var(--dark-gray);
    font-weight: bold;
    margin-bottom: 8px;
}

.factory-text p {
    color: var(--medium-gray);
    margin: 0;
}

/* Partners Section Styles */
.partners-section {
    background-color: var(--white);
}

.partner-logo {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.partner-logo:hover {
    transform: scale(1.1);
}

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

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

/* 合作伙伴移动端适配 */
@media (max-width: 768px) {
    .partners-section {
        padding: 30px 0;
    }
    
    .partner-logo {
        padding: 15px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .partner-logo img {
        max-height: 60px;
    }
    
    /* 合作伙伴网格布局 - 移动端两列 */
    .partners-section .row {
        margin: 0 -10px;
    }
    
    .partners-section .col-md-2 {
        padding: 0 10px;
        margin-bottom: 20px;
    }
    
    /* 确保移动端显示为两列 */
    @media (max-width: 576px) {
        .partners-section .col-md-2 {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }
}

/* About Page Styles */
.about-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-content h1.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.hero-content h2.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 12px;
}

.hero-content .hero-description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stats .stat-item {
    text-align: left;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.hero-stats .stat-label {
    font-size: 1rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Company Story Section */
.company-story-section {
    padding: 60px 0;
    background-color: var(--white);
}

.story-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 25px;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    border-radius: 15px;
    overflow: hidden;
    /* box-shadow: 0 15px 40px rgba(0,0,0,0.1); */
}

.story-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Mission Section */
.mission-section {
    padding: 60px 0;
}

.mission-card, .commitment-card {
    text-align: center;
    padding: 30px 25px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.mission-icon, .commitment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mission-card h4 {
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.mission-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Manufacturing Section */
.manufacturing-section {
    padding: 60px 0;
    background-color: var(--white);
}

.manufacturing-content h2 {
    margin-bottom: 15px;
}

.manufacturing-content h3 {
    margin-bottom: 25px;
}

.manufacturing-content p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.manufacturing-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

.manufacturing-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.manufacturing-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Certifications Section Styles */
.certifications-section {
    background-color: var(--white);
    padding: 60px 0;
}

/* About Page - Certifications & Standards - 竖版布局（与首页统一视觉） */
.certification-item-vertical {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: none;
    border: none;
}

.certification-item-vertical img {
    width: auto;
    height: 260px; /* 桌面：更大竖版高度，与首页统一比例感 */
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* 平板尺寸调整 */
@media (max-width: 1200px) {
    .certification-item-vertical img { height: 220px; }
}

/* 移动端尺寸调整 */
@media (max-width: 768px) {
    .certification-item-vertical { padding: 12px; }
    .certification-item-vertical img { height: 180px; }
}

@media (max-width: 576px) {
    .certification-item-vertical img { height: 160px; }
}

.certification-item-horizontal {
    text-align: center;
    padding: 10px;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.certification-item-horizontal img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 1;
    filter: none;
}

/* Team Section */
.team-section {
    padding: 60px 0;
}

.team-member {
    text-align: center;
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
}

.member-image {
    margin-bottom: 20px;
}

.member-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-blue);
}

.member-info h5 {
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 5px;
}

.member-title {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.member-description {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Gym Solutions Section Styles */
.gym-solutions-section {
    background-color: var(--white);
}

.solution-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
}

.solution-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.solution-content h5 {
    color: var(--dark-gray);
    font-weight: bold;
    margin-bottom: 10px;
}

.solution-content p {
    color: var(--medium-gray);
}

/* Product Categories Tabs Section */
.product-categories-tabs-section {
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
    padding: 100px 0;
    position: relative;
}

.category-tabs {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.category-tabs .nav-link {
    color: #64748b;
    border: none;
    border-radius: 10px;
    padding: 18px 25px;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: left;
    background: transparent;
    border-left: 3px solid transparent;
}

.category-tabs .nav-link:hover {
    background-color: #f1f5f9;
    color: #2563eb;
    border-left-color: #2563eb;
    transform: translateX(5px);
}

.category-tabs .nav-link.active {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    border-left-color: #1e40af;
}

.category-tabs .nav-link i {
    width: 20px;
    margin-right: 12px;
}

.product-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #e2e8f0;
    position: relative;
}

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

.product-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-item:hover img {
    transform: scale(1.05);
}

/* Image overlay for product titles on hover */
.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

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

.product-item .overlay-title {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    z-index: 2;
}

/* Universal Carousel Styles for All Factory Pages */
#armouryCarousel,
#equipmentCarousel,
#castingCarousel,
#rubberCarousel {
    position: relative;
}

#armouryCarousel .carousel-control-prev,
#armouryCarousel .carousel-control-next,
#equipmentCarousel .carousel-control-prev,
#equipmentCarousel .carousel-control-next,
#castingCarousel .carousel-control-prev,
#castingCarousel .carousel-control-next,
#rubberCarousel .carousel-control-prev,
#rubberCarousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 0, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

#armouryCarousel .carousel-control-prev,
#equipmentCarousel .carousel-control-prev,
#castingCarousel .carousel-control-prev,
#rubberCarousel .carousel-control-prev {
    left: -30px;
}

#armouryCarousel .carousel-control-next,
#equipmentCarousel .carousel-control-next,
#castingCarousel .carousel-control-next,
#rubberCarousel .carousel-control-next {
    right: -30px;
}

#armouryCarousel .carousel-control-prev:hover,
#armouryCarousel .carousel-control-next:hover,
#equipmentCarousel .carousel-control-prev:hover,
#equipmentCarousel .carousel-control-next:hover,
#castingCarousel .carousel-control-prev:hover,
#castingCarousel .carousel-control-next:hover,
#rubberCarousel .carousel-control-prev:hover,
#rubberCarousel .carousel-control-next:hover {
    background: var(--accent-color);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

#armouryCarousel .carousel-control-prev-icon,
#armouryCarousel .carousel-control-next-icon,
#equipmentCarousel .carousel-control-prev-icon,
#equipmentCarousel .carousel-control-next-icon,
#castingCarousel .carousel-control-prev-icon,
#castingCarousel .carousel-control-next-icon,
#rubberCarousel .carousel-control-prev-icon,
#rubberCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
}

#armouryCarousel .carousel-indicators,
#equipmentCarousel .carousel-indicators,
#castingCarousel .carousel-indicators,
#rubberCarousel .carousel-indicators {
    bottom: -50px;
    margin-bottom: 0;
}

#armouryCarousel .carousel-indicators button,
#equipmentCarousel .carousel-indicators button,
#castingCarousel .carousel-indicators button,
#rubberCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    transition: all 0.3s ease;
}

#armouryCarousel .carousel-indicators button.active,
#equipmentCarousel .carousel-indicators button.active,
#castingCarousel .carousel-indicators button.active,
#rubberCarousel .carousel-indicators button.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.2);
}

#armouryCarousel .carousel-indicators button:hover,
#equipmentCarousel .carousel-indicators button:hover,
#castingCarousel .carousel-indicators button:hover,
#rubberCarousel .carousel-indicators button:hover {
    background-color: rgba(255, 107, 0, 0.7);
    border-color: rgba(255, 107, 0, 0.7);
}

/* Responsive adjustments for carousel controls */
@media (max-width: 768px) {
    #armouryCarousel .carousel-control-prev,
    #armouryCarousel .carousel-control-next,
    #equipmentCarousel .carousel-control-prev,
    #equipmentCarousel .carousel-control-next,
    #castingCarousel .carousel-control-prev,
    #castingCarousel .carousel-control-next,
    #rubberCarousel .carousel-control-prev,
    #rubberCarousel .carousel-control-next {
        width: 50px;
        height: 50px;
    }

    #armouryCarousel .carousel-control-prev,
    #equipmentCarousel .carousel-control-prev,
    #castingCarousel .carousel-control-prev,
    #rubberCarousel .carousel-control-prev {
        left: -25px;
    }

    #armouryCarousel .carousel-control-next,
    #equipmentCarousel .carousel-control-next,
    #castingCarousel .carousel-control-next,
    #rubberCarousel .carousel-control-next {
        right: -25px;
    }
}

.product-item .product-info {
    padding: 25px;
}

.product-item .product-info h5 {
    margin-bottom: 12px;
    color: #1e293b;
    font-weight: 700;
    font-size: 1.1rem;
}

.product-item .product-info p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-item.featured {
    border: 2px solid #2563eb;
    position: relative;
}

.product-item.featured::before {
    content: "Featured";
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.product-item.featured .product-info {
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
}

/* Product Categories Section Styles - Bootstrap Grid */
.product-categories-section {
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
    padding: 100px 0;
    position: relative;
}

.product-categories-grid {
    margin-top: 60px;
}

.category-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

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


.category-card.vertical {
    height: 400px;
}

.category-card.horizontal {
    height: 400px;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover .card-overlay {
    opacity: 1;
}

.brand-logo {
    background: rgba(37, 99, 235, 0.9);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.series-name {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    align-self: flex-end;
    margin-top: auto;
}

.product-category-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}


.product-category-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.product-category-item.large-item img {
    height: 200px;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-category-item:hover .category-overlay {
    opacity: 1;
}

.category-overlay h5 {
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
}

/* Product Showcase Tabs Styles */
.product-showcase-section {
    background-color: var(--white);
}

.product-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tab-btn {
    background-color: var(--light-gray);
    border: none;
    padding: 15px 20px;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.tab-content {
    padding-left: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.product-showcase-item {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.product-showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-showcase-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-showcase-item h6 {
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.product-showcase-item p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Statistics Carousel Styles */
.stats-carousel {
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.carousel-slide {
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-nav-dots {
    text-align: center;
    margin-top: 15px;
}

.nav-dot {
    display: inline-block;
    height: 4px;
    background-color: #ddd;
    border-radius: 2px;
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 12px;
}

.nav-dot.active {
    background-color: var(--primary-blue);
    width: 40px;
    transform: scale(1.1);
}

.new-arrivals-carousel .carousel-prev,
.new-arrivals-carousel .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.new-arrivals-carousel .carousel-prev {
    left: 10px;
}

.new-arrivals-carousel .carousel-next {
    right: 10px;
}

.new-arrivals-carousel .carousel-prev:hover,
.new-arrivals-carousel .carousel-next:hover {
    background-color: var(--primary-blue);
}

/* Factories Section Styles */
.factories-section .factory-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.factories-section .factory-card:hover {
    transform: translateY(-5px);
}

.factory-info h4 {
    color: var(--dark-gray);
    font-weight: bold;
    margin-bottom: 10px;
}

.factory-features {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.factory-features li {
    padding: 5px 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 20px;
}

.factory-features li:before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* FIBO Exhibition Section Styles */
.fibo-section {
    background-color: var(--white);
}

.fibo-images img {
    transition: transform 0.3s ease;
}


.fibo-highlights {
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
/* Gym Cases Section - 一屏展示优化 */
.gym-cases-section .section-title {
    margin-bottom: 15px;  /* 减少标题下边距 */
}

.gym-cases-section .section-subtitle {
    margin-bottom: 25px;  /* 减少副标题下边距 */
}

.cases-grid .row {
    margin-bottom: 8px;  /* 减少行间距 */
}

.cases-grid .row:last-child {
    margin-bottom: 0;
}

.cases-grid .case-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.cases-grid .case-item img {
    width: 100%;
    height: 200px;  /* 调整为横版高度 */
    object-fit: cover;
}

/* 中间logo部分和其他图片一样的效果 */
.cases-grid .center-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    height: 120px;  /* 与其他图片相同高度 */
}

.cases-grid .center-logo .company-logo-placeholder {
    width: 100px;  /* 调整为横版尺寸 */
    height: 60px;
    background: #f8f9fa;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    margin: 0 auto;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

/* Product Categories Grid Section Styles */
.product-categories-grid-section {
    background-color: var(--light-gray);
    padding: 60px 0;
}

.category-grid-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-grid-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.category-grid-item h5 {
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Targets Section Styles */
.service-targets-section {
    background-color: var(--white);
}

.targets-grid {
    margin-top: 50px;
}

.targets-grid .row {
    justify-content: center;
}

.target-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.target-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.2);
}

.target-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.target-card:hover .target-icon {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    transform: scale(1.1);
}

.target-icon i {
    font-size: 1.8rem;
    color: var(--white);
    transition: color 0.3s ease;
}

.target-card h5 {
    color: var(--dark-gray);
    font-weight: bold;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.target-card:hover h5 {
    color: var(--primary-blue);
}

.target-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.target-card:hover p {
    color: var(--dark-gray);
}


.highlight-item {
    height: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.clients-carousel .carousel-prev {
    left: -25px;
}

.clients-carousel .carousel-next {
    right: -25px;
}

.clients-carousel .carousel-prev:hover,
.clients-carousel .carousel-next:hover {
    background-color: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* FAQ Section Styles */
.faq-section {
    background-color: var(--light-gray);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-button {
    background-color: var(--white);
    color: var(--dark-gray);
    font-weight: 600;
    padding: 20px 25px;
    border: none;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    background-color: var(--white);
    padding: 20px 25px;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Mega Menu Styles */
.dropdown-mega .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px 0;
    background: var(--white);
}

.dropdown-mega .dropdown-menu .container {
    width: 100%;
    max-width: 1200px;
}

.mega-menu-item {
    text-decoration: none;
    color: var(--dark-gray);
    display: block;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.mega-menu-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-blue);
    text-decoration: none;
    transform: translateY(-2px);
}

.mega-menu-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

.mega-menu-item p {
    margin: 0;
    font-weight: 500;
    font-size: 14px;
}

.mega-menu-item.learn-more {
    background-color: var(--primary-blue);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 160px;
}

.mega-menu-item.learn-more:hover {
    background-color: var(--secondary-blue);
    color: white;
}

.mega-menu-item.learn-more i {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Product Category Pills */
.nav-pills .nav-link {
    color: var(--medium-gray);
    background: none;
    border: none;
    padding: 12px 20px;
    margin-bottom: 8px;
    border-radius: 25px;
    font-weight: 500;
    text-align: left;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    background-color: var(--light-gray);
    color: var(--primary-blue);
}

.nav-pills .nav-link.active {
    background-color: var(--primary-blue);
    color: white;
}

/* Responsive Design Updates */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .targets-grid .row {
        justify-content: center;
    }

    .target-card {
        margin-bottom: 20px;
    }

    /* Hide mega menu on mobile, show regular dropdown */
    .dropdown-mega .dropdown-menu {
        position: absolute;
        width: auto;
        padding: 10px 0;
        margin-top: 10px;
    }

    .mega-menu-item {
        padding: 10px 20px;
        margin-bottom: 0;
    }

    .mega-menu-item img {
        display: none;
    }
}

@media (max-width: 768px) {
    .advantage-card {
        padding: 30px 20px;
    }

    .advantage-icon {
        width: 60px;
        height: 60px;
    }

    .advantage-icon i {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .factory-video-block .video-container {
        height: 150px;
    }

    .cases-grid .case-item img {
        height: 100px;  /* 移动端进一步缩小为横版 */
    }
    
    .cases-grid .center-logo {
        height: 100px;  /* 移动端logo高度也缩小 */
    }
    
    .cases-grid .center-logo .company-logo-placeholder {
        width: 80px;  /* 移动端logo尺寸进一步缩小 */
        height: 50px;
        font-size: 10px;
    }

    .target-icon {
        width: 60px;
        height: 60px;
    }

    .target-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .advantage-card {
        padding: 25px 15px;
    }

    .carousel-item img {
        height: 200px;
    }

    .partner-logo {
        padding: 15px;
        height: 100px;
    }

    .certification-item {
        padding: 10px;
    }

    .certification-item img {
        max-height: 60px;
    }
}

.highlight-item i {
    font-size: 1.2rem;
}

/* Customer Reviews Section Styles */
.reviews-section .review-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.reviews-section .review-card:hover {
    transform: translateY(-5px);
}

.review-stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    color: var(--medium-gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h6 {
    margin-bottom: 5px;
    color: var(--dark-gray);
    font-weight: bold;
}

.reviewer-info span {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Responsive Design Updates */
@media (max-width: 992px) {
    .choose-us-carousel {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .carousel-nav {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .tab-content {
        padding-left: 0;
        margin-top: 20px;
    }

    .product-tabs-nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 5px;
    }

    .tab-btn {
        white-space: nowrap;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .advantage-content h3 {
        font-size: 1.5rem;
    }

    .product-category-item img,
    .product-category-item.large-item img {
        height: 150px;
    }

    .factory-card .row {
        text-align: center;
    }

    .factory-card .col-md-6:first-child {
        margin-bottom: 20px;
    }

    .fibo-highlights {
        margin-top: 20px;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }

    .highlight-item i {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .new-arrivals-section .col-4 {
        margin-bottom: 20px;
    }

    .advantage-points .point-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 25px;
    }

    .advantage-points .point-number {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* --- About Us Page Enhancements --- */

/* Enhanced Timeline Section with Progress */
.timeline-container {
    position: relative;
    margin-top: 80px;
    padding: 40px 0;
}

.timeline-progress-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background-color: #e2e8f0;
    transform: translateX(-50%);
    border-radius: 3px;
    z-index: 1;
}

.timeline-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    border-radius: 3px;
    transition: height 0.3s ease;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.timeline {
    position: relative;
    z-index: 2;
    width: 100%;
}

.timeline-item {
    position: static !important;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    width: 100%;
    max-width: 100%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 60px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 60px;
    text-align: left;
}

.timeline-marker {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 3 !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    right: auto !important;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: 3px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.timeline-dot.dot-animated {
    transform: scale(1);
    animation: pulse 2s infinite;
}

.timeline-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
}

.timeline-year {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: inline-block;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.timeline-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 8px;
}

.timeline-stats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.stat-badge {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 3px 12px rgba(37, 99, 235, 0.3);
}

/* Animation States */
.timeline-item-active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item-animated .timeline-card {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.timeline-item-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Commitment Section */
.commitment-card {
    text-align: center;
    padding: 25px 20px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    height: 100%;
}

.commitment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.commitment-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.commitment-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 20px 0 12px;
}

/* Global Presence Section */
.global-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.global-stats .stat-item {
    text-align: center;
}

.global-stats .stat-item strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.global-stats .stat-item span {
    font-size: 1rem;
    color: var(--medium-gray);
}

.global-map img {
    opacity: 0.8;
}

/* Join Journey Section */
.join-journey-section .section-title {
    color: var(--white);
}

/* R&D Innovation Section */
.innovation-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
}

.innovation-stats .stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Customer Success Section */
.success-story {
    background-color: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    text-align: center;
}

.success-story .story-image {
    margin-bottom: 20px;
}

.success-story .story-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}

.success-story h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.success-story p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.story-stats .badge {
    margin: 0 5px 5px 0;
    font-size: 0.8rem;
}

/* Partner Logos */
.partner-logos {
    opacity: 0.7;
}

.partner-logo {
    max-height: 90px;
    width: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

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

/* Hardware Infrastructure Section */
.hardware-section {
    background-color: #f8f9fa;
}

.hardware-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.hardware-carousel .carousel-wrapper {
    overflow: hidden;
    border-radius: 15px;
    min-height: 350px;
}

/* Hardware Carousel - Show 5 items at a time */
.hardware-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.hardware-carousel .carousel-wrapper {
    overflow: hidden;
    border-radius: 15px;
    min-height: 350px;
}

.hardware-carousel .carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 1000%; /* 10 slides total, each slide is 10% of track width */
}

.hardware-carousel .carousel-slide {
    width: 10%; /* Each slide takes 10% of the track width (100% / 10 slides) */
    padding: 0 10px;
    flex-shrink: 0;
}

/* Global Clients Section */
.global-clients-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.client-stat-card {
    background: var(--white);
    border-radius: 20px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.client-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--primary-blue);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--medium-gray);
    font-weight: 500;
    margin: 0;
}

.clients-showcase {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.client-logo-item {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.client-logo-item:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.client-logo-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.client-logo-item span {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Advanced Hardware Section */
.advanced-hardware-section {
    background-color: var(--light-gray);
}

.hardware-feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.hardware-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--primary-blue);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
}

.hardware-feature-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.hardware-feature-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: 8px;
}

.product-item h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 10px 0 0 0;
}

/* New Arrivals Section - Redesigned */
.new-arrivals-section {
    background-color: var(--white);
    padding: 80px 0;
}

.new-arrivals-content {
    padding-right: 40px;
}

.new-arrivals-content .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.new-arrivals-content .text-primary {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.new-arrivals-content .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.btn-outline-dark {
    border: 2px solid var(--dark-gray);
    color: var(--dark-gray);
    background-color: transparent;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: var(--dark-gray);
    color: var(--white);
    transform: translateY(-2px);
}

/* Product Carousel Container */
.product-carousel-container {
    position: relative;
    padding: 0 60px;
    min-height: 400px; /* Ensure minimum height */
    background-color: #f8f9fa; /* Debug background */
}

.product-carousel {
    overflow: hidden;
    border-radius: 15px;
    min-height: 350px; /* Ensure minimum height */
    background-color: var(--white); /* Ensure background */
}

.product-carousel .carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 166.67%; /* 5 slides total, each slide is 33.33% of visible area (100% / 3 visible) */
    transform: translateX(0%); /* Start at the beginning */
}

.product-carousel .carousel-slide {
    width: 20%; /* Each slide takes 20% of the track width (100% / 5 slides) */
    padding: 0 15px;
    flex-shrink: 0;
}

.product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 350px;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.product-image {
    height: 250px;
    overflow: hidden;
    background-color: #ff0000; /* Red debug background */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid blue; /* Debug border */
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block !important; /* Force display */
    background-color: #00ff00; /* Green debug background */
    border: 2px solid yellow; /* Debug border */
}

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

.product-label {
    padding: 25px 20px;
    text-align: center;
    background-color: var(--white);
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-label h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Carousel Navigation Buttons */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 10;
}

.carousel-nav-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .new-arrivals-content {
        padding-right: 0;
        margin-bottom: 40px;
    text-align: center;
}

    .new-arrivals-content .section-title {
        font-size: 2.5rem;
    }

    .product-carousel-container {
        padding: 0 50px;
    }

    .carousel-slide {
        min-width: 50%;
    }
}

@media (max-width: 768px) {
    .new-arrivals-content .section-title {
        font-size: 2rem;
    }

    .new-arrivals-content .text-primary {
        font-size: 1.2rem;
    }

    .product-carousel-container {
        padding: 0 40px;
    }

    .carousel-slide {
        min-width: 100%;
    }

    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Simple Product Carousel - New Design */
.simple-product-carousel {
    position: relative;
    padding: 0 60px;
    min-height: 400px;
}

.simple-product-carousel .carousel-wrapper {
    overflow: hidden;
    border-radius: 15px;
}

.simple-product-carousel .carousel-track {
    display: flex;
    transition: transform 0.6s ease;
    width: 166.67%; /* 5 slides, show 3 at a time (5/3 = 1.67) */
}

.simple-product-carousel .carousel-slide {
    width: 20%; /* Each slide is 20% of track width (100% / 5 slides) */
    padding: 0 15px;
    flex-shrink: 0;
}

.simple-product-carousel .product-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 350px;
    display: flex;
    flex-direction: column;
}

.simple-product-carousel .product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.simple-product-carousel .product-image {
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simple-product-carousel .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border: 2px solid green; /* Debug border */
    background-color: #00ff00; /* Green debug background */
}

.simple-product-carousel .product-item:hover .product-image img {
    transform: scale(1.05);
}

.simple-product-carousel .product-title {
    padding: 25px 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simple-product-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background-color: white;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 10;
}

.simple-product-carousel .carousel-btn:hover {
    background-color: #2563eb;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.simple-product-carousel .prev-btn {
    left: 0;
}

.simple-product-carousel .next-btn {
    right: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .simple-product-carousel {
        padding: 0 50px;
    }

    .simple-product-carousel .carousel-slide {
        width: 33.33%; /* Show 2 slides on tablet */
    }

    .simple-product-carousel .carousel-track {
        width: 200%; /* 6 slides, show 2 at a time */
    }
}

@media (max-width: 768px) {
    .simple-product-carousel {
        padding: 0 40px;
    }

    .simple-product-carousel .carousel-slide {
        width: 100%; /* Show 1 slide on mobile */
    }

    .simple-product-carousel .carousel-track {
        width: 500%; /* 5 slides, show 1 at a time */
    }

    .simple-product-carousel .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Four Factories Section */

/* Client Testimonials Section */
.client-testimonials-section {
    background-color: var(--light-gray);
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 25px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary-blue);
}

.author-name {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.author-title {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Hardware Capabilities Section */
.hardware-capabilities-section {
    background-color: var(--white);
}

.capability-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    height: 100%;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.capability-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.5rem;
    flex: 0 0 auto;
}

.capability-icon i { display: inline-block; line-height: 1; width: auto; height: auto; }

/* Why Choose Us Section */
.why-choose-us-section .section-title {
    margin-bottom: 1rem;
}

.strength-list {
    margin-top: 2rem;
}

.strength-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.strength-item:last-child {
    margin-bottom: 0;
}

.strength-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.strength-text h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.strength-text p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}





/* Product Categories Section */
.product-category-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.product-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.category-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.category-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
    min-height: 90px;
}

/* Gym Solutions Page - New Design */
.hero-banner-v2 {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.hero-banner-v2 .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
}

.hero-banner-v2 .row {
    min-height: 80vh;
}

.hero-banner-v2 .hero-content-v2 {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-banner-v2 h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-banner-v2 .text-white-75 {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    line-height: 1.6;
}

.hero-banner-v2 .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Call to Action Section */
.cta-section {
    background-color: var(--primary-blue);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-buttons .btn {
    margin-top: 1rem;
}

/* Our Process Section - OLD STYLES REMOVED */

/* Core Solutions Section */
.core-solutions-section {
    background-color: #f8f9fa;
}

.solution-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    height: 100%;
    border: 1px solid #e2e8f0;
}

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

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

.solution-content {
    padding: 1.2rem;
}

.solution-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.solution-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Manufacturing Excellence Section */
.manufacturing-excellence-section {
    background-color: #fff;
}

.excellence-content .section-title {
    color: #1f2937;
}

.stat-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    border: 1px solid #e5e7eb;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.4;
}

.excellence-image img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Success Stories Section */
.success-stories-section {
    background-color: #f8f9fa;
}

.story-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

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

.story-content {
    padding: 1.5rem;
}

.story-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.story-location {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.story-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.story-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.story-link:hover {
    color: var(--dark-gray);
}

.story-link i {
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
}

.testimonial-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #e5e7eb;
}

.testimonial-content .stars {
    color: #f59e0b; /* Amber 500 */
}

.testimonial-text {
    font-style: italic;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
}

.author-title {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Process Section */
.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.step-number {
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0,0,0,0.05);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.story-link:hover i {
    transform: translateX(5px);
}

/* Call to Action Section */
.cta-section {
    background: var(--dark-gray) url('https://images.unsplash.com/photo-1574680096145-d05b474e2155?auto=format&fit=crop&w=1600&q=80') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    color: var(--white);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 38, 51, 0.85);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    height: 100%;
}

.cta-feature i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--primary-blue);
}

.cta-feature span {
    font-weight: 500;
}

/* FAQ Section */
.faq-section .accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.faq-section .accordion-button {
    font-weight: 600;
    color: var(--dark-gray);
    background-color: #fff;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--primary-blue);
    color: var(--white);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-body {
    background-color: #f9fafb;
    color: var(--medium-gray);
}
/* B2B Empowerment Section */
.b2b-empowerment-section {
    background-color: var(--white);
}

.empowerment-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.empowerment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.empowerment-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.empowerment-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.empowerment-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.empowerment-list {
    list-style: none;
    padding: 0;
}

.empowerment-list li {
    margin-bottom: 0.8rem;
    color: var(--medium-gray);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.empowerment-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.empowerment-list strong {
    color: var(--dark-gray);
}

/* Support System Card */
.support-system-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 12px;
    padding: 2.5rem;
    color: var(--white);
    text-align: center;
}

.support-system-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.support-system-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.support-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.support-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.support-item i {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--white);
}

/* New Arrivals Carousel - Unique Implementation */
.new-arrivals-carousel-container {
    position: relative;
    padding: 0 60px;
    min-height: 400px;
}

.new-arrivals-wrapper {
    overflow: hidden;
    border-radius: 15px;
}

.new-arrivals-track {
    display: flex;
    transition: transform 0.6s ease;
    width: 166.67%; /* 5 slides, show 3 at a time (5/3 = 1.67) */
}

.new-arrivals-slide {
    width: 20%; /* Each slide is 20% of track width (100% / 5 slides) */
    padding: 0 15px;
    flex-shrink: 0;
}

.new-arrivals-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 350px;
    display: flex;
    flex-direction: column;
}

.new-arrivals-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.new-arrivals-image {
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-arrivals-image img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.new-arrivals-item:hover .new-arrivals-image img {
    transform: scale(1.05);
}

.new-arrivals-title {
    padding: 20px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-arrivals-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.new-arrivals-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.new-arrivals-prev {
    left: 10px;
}

.new-arrivals-next {
    right: 10px;
}

.new-arrivals-btn i {
    font-size: 1.2rem;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.new-arrivals-btn:hover i {
    color: var(--white);
}

/* Responsive Design for New Arrivals */
@media (max-width: 992px) {
    .new-arrivals-carousel-container {
        padding: 0 50px;
    }
    .new-arrivals-slide {
        width: 33.33%; /* Show 2 slides on tablet */
    }
    .new-arrivals-track {
        width: 200%; /* 6 slides, show 2 at a time */
    }
    .new-arrivals-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .new-arrivals-carousel-container {
        padding: 0 20px;
    }
    .new-arrivals-slide {
        width: 50%; /* Show 2 slides on mobile */
    }
    .new-arrivals-track {
        width: 250%; /* 5 slides, show 2 at a time */
    }
    .new-arrivals-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    .new-arrivals-prev {
        left: 5px;
    }
    .new-arrivals-next {
        right: 5px;
    }
    .new-arrivals-item {
        padding: 8px;
        margin: 0 3px;
        text-align: center;
        height: 280px;
    }
    .new-arrivals-title {
        font-size: 11px;
        padding: 3px 0;
        text-align: center;
    }
    
    /* 新品轮播移动端修复 - 确保显示完整内容 */
    .new-arrivals-track {
        width: 200%; /* 4 slides, show 2 at a time */
    }
    
    .new-arrivals-slide {
        width: 50%;
        flex-shrink: 0;
    }
}


.capability-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--light-gray);
    margin-top: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: 5px;
}

.factories-section {
    background-color: var(--white);
}

.factory-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    height: 100%;
    border: 1px solid #e2e8f0;
}

.factory-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.factory-content {
    padding: 20px;
}

.factory-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.factory-specialty {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.factory-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 8px;
}

.detail-item i {
    color: var(--primary-blue);
    width: 20px;
    margin-right: 10px;
}

.factory-description {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.factory-contact {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.factory-contact p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.factory-contact i {
    color: var(--primary-blue);
    width: 20px;
}

/* Timeline Animation Keyframes */
@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 8px 35px rgba(37, 99, 235, 0.5);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    }
}

@keyframes slideInLeft {
    from {
    opacity: 0;
        transform: translateX(-100px) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Solutions Showcase Section */
.solutions-showcase-section {
    background-color: #f8f9fa;
}

.solution-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    height: 100%;
    border: 1px solid #e2e8f0;
}

.solution-card-image {
    height: 200px;
    overflow: hidden;
}

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

.solution-card-content {
    padding: 20px;
    text-align: center;
}

.solution-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.solution-card-text {
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd).animate {
    animation: slideInLeft 0.6s ease forwards;
}

.timeline-item:nth-child(even).animate {
    animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Timeline Styles */
@media (max-width: 768px) {
    .timeline-progress-line {
        left: 30px;
        transform: none;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        padding-left: 60px;
        padding-right: 15px;
        text-align: left;
        margin-bottom: 30px;
    }

    .timeline-marker {
        left: 5px !important;
        right: auto !important;
    }

    .timeline-dot {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .timeline-card {
        padding: 20px;
    }

    .timeline-year {
        font-size: 1.4rem;
    }

    .timeline-title {
        font-size: 1.1rem;
    }

    .timeline-text {
        font-size: 0.85rem;
    }

    .stat-badge {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    .timeline-item-active {
        animation: fadeInUp 0.8s ease forwards;
    }
}

@media (max-width: 480px) {
    .timeline-container {
        margin-top: 40px;
        padding: 20px 0;
    }

    .timeline-item {
        padding-left: 50px;
        margin-bottom: 25px;
    }

    .timeline-progress-line {
        left: 20px;
        width: 4px;
    }

    .timeline-marker {
        left: -5px !important;
    }

    .timeline-dot {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }

    .timeline-card {
        padding: 16px;
    }

    .timeline-year {
        font-size: 1.2rem;
    }

    .timeline-stats {
        gap: 6px;
    }
}

/* New Arrivals Carousel Navigation */
.new-arrivals-carousel .carousel-navigation {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.new-arrivals-carousel .nav-indicator {
    width: 40px;
    height: 4px;
    background-color: #ddd;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.new-arrivals-carousel .nav-indicator.active {
    background-color: var(--primary-blue);
    width: 60px;
}

.new-arrivals-carousel .nav-indicator:hover {
    background-color: var(--primary-blue);
    opacity: 0.7;
}

/* Exhibition Carousel - Unique Implementation */
.exhibition-section {
    background-color: var(--light-gray);
}

.exhibition-carousel-container {
    position: relative;
    padding: 0 20px;
    min-height: 250px;
    cursor: pointer;
}

.exhibition-wrapper {
    overflow: hidden;
    border-radius: 10px;
}

.exhibition-track {
    display: flex;
    transition: transform 0.8s ease;
    width: 200%; /* 10 slides, show 5 at a time => 200% */
}

.exhibition-slide {
    width: 20%; /* Each slide is 20% of track width (100% / 5 visible slides) */
    padding: 0 5px;
    flex-shrink: 0;
}

.exhibition-image {
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.exhibition-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

.exhibition-image:hover img {
    transform: scale(1.05);
}

/* Responsive Design for Exhibition */
@media (max-width: 992px) {
    .exhibition-carousel-container {
        padding: 0 15px;
    }
    .exhibition-slide {
        width: 33.33%; /* Show 3 slides on tablet */
    }
    .exhibition-track {
        width: 333.33%; /* 10 slides, show 3 at a time */
    }
    .exhibition-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .exhibition-carousel-container {
        padding: 0 10px;
    }
    .exhibition-slide {
        width: 50%; /* Show 2 slides on mobile */
    }
    .exhibition-track {
        width: 500%; /* 10 slides, show 2 at a time */
    }
    .exhibition-image {
        height: 160px;
    }
}

/* Company Introduction Section */
.company-intro-section .video-container {
    /* border-radius: 15px; */
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
}

/* Product Showcase Grid Section */
.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* About page - cloned OUR EXHIBITIONS (scoped) */
.about-expo-container { position: relative; padding: 0 20px; min-height: 250px; }
.about-expo-wrapper { overflow: hidden; border-radius: 10px; }
.about-expo-track { display: flex; transition: transform 0.8s ease; width: 200%; }
.about-expo-slide { width: 10%; padding: 0 5px; flex-shrink: 0; }
.about-expo-image { height: 200px; overflow: hidden; border-radius: 8px; position: relative; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.about-expo-image img { width: 100%; height: 100%; object-fit: cover; -webkit-user-drag: none; user-select: none; transition: transform 0.3s ease; }
.about-expo-image:hover img { transform: scale(1.05); }
.about-expo-caption { position: absolute; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.35); color: #fff; font-size: 12px; line-height: 1; padding: 6px 8px; }
.about-expo-progress-container { margin-top: 12px; padding: 0 6px; }
.about-expo-progress-bar { width: 100%; height: 4px; background: rgba(0,0,0,0.08); border-radius: 2px; overflow: hidden; }
.about-expo-progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue)); transition: width 0.3s ease; }

@media (max-width: 992px) {
    .about-expo-track { width: 333.33%; }
    .about-expo-image { height: 180px; }
}

@media (max-width: 768px) {
    .about-expo-track { width: 500%; }
    .about-expo-image { height: 160px; }
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
        left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
    transform: translateY(0);
    transition: transform 0.4s ease;
}
.showcase-item:hover .showcase-overlay { transform: translateY(-70%); }

.showcase-overlay h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.showcase-overlay p {
    font-size: 0.9rem;
    margin: 5px 0 0;
    opacity: 0.8;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.square-item {
    height: 420px;
}

.vertical-item {
    height: 420px;
}

@media (max-width: 992px) {
    .square-item, .vertical-item {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .square-item, .vertical-item {
        height: 240px;
    }
}

/* Factory Pages Styles */
.factory-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.factory-hero-content {
    padding-right: 2rem;
}

.factory-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.factory-subtitle {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.factory-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.factory-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.factory-stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: 0.5rem;
}

.factory-hero-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Equipment Cards */
.equipment-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    height: 100%;
    border: 1px solid #e2e8f0;
}

.equipment-image {
    height: 200px;
    overflow: hidden;
}

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

.equipment-content {
    padding: 20px;
}

.equipment-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.equipment-content p {
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.equipment-specs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipment-specs li {
    padding: 5px 0;
    border-bottom: 1px solid #f1f3f4;
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.equipment-specs li:last-child {
    border-bottom: none;
}

.equipment-specs li:before {
    content: "•";
    color: var(--primary-blue);
    margin-right: 8px;
}

/* Product Category Cards */
.product-category-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    height: 100%;
    border: 1px solid #e2e8f0;
}

.category-image {
    height: 180px;
    overflow: hidden;
}

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

.category-content {
    padding: 15px;
    text-align: center;
}

.category-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.category-content p {
    color: var(--medium-gray);
    font-size: 0.85rem;
    margin: 0;
}

/* Quality Features */
.quality-features {
    margin-top: 2rem;
}

.quality-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.quality-item i {
    margin-right: 12px;
    font-size: 1.2rem;
}

.quality-item span {
    font-weight: 500;
    color: var(--dark-gray);
}

/* Factory CTA Section */
.factory-cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 100%);
}

/* Responsive Design for Factory Pages */
@media (max-width: 768px) {
    .factory-title {
        font-size: 2rem;
    }

    .factory-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .factory-hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .equipment-image,
    .category-image {
        height: 150px;
    }
}


/* Section Divider for Homepage Layout */
.section-divider {
    height: 200px;
    background: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?auto=format&fit=crop&w=1600&q=80') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    margin: 2.5rem 0;
    border: 0;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 38, 51, 0.7);
}

/* Contact Top Belt - full width image */
.contact-top-belt {
    width: 100%;
    height: 160px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Contact Form Styles */
.sigma_contact-us {
    background: #f8f9fa;
    padding: 80px 0;
}

.sigma_contact-us .row {
    background: transparent;
    margin: 0;
}

.sigma_contact-us-image {
    position: relative;
    padding: 0;
}

.sigma_contact-us-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.sigma_form-wrapper {
    background: transparent;
    padding: 40px;
    margin: 0;
}

.sigma_heading .title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
}

.sigma_heading p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form .required {
    color: #dc3545;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

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

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

.whatsapp-hint {
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 5px;
}

.sigma_btn {
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sigma_btn:hover {
    background: linear-gradient(45deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .sigma_contact-us .row {
        flex-direction: column;
    }
    
    .sigma_contact-us-image img {
        height: 300px;
    }
    
    .sigma_form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .sigma_form-wrapper {
        padding: 30px 20px;
    }
    
    .sigma_heading .title {
        font-size: 2rem;
    }
}

/* About page - Hardware Support Section (moved from inline styles) */
#about-exhibitions .exhibition-carousel-container{cursor:grab;user-select:none}
#about-exhibitions .exhibition-carousel-container:active{cursor:grabbing}
#about-exhibitions .exhibition-wrapper{overflow:hidden;border-radius:10px}
#about-exhibitions .exhibition-track{display:flex;transition:transform .8s ease;width:300%}
#about-exhibitions .exhibition-slide{width:6.67%;padding:0 3px;flex-shrink:0}
#about-exhibitions .exhibition-image{height:220px;overflow:hidden;border-radius:8px;box-shadow:0 5px 15px rgba(0,0,0,.1);position:relative}
#about-exhibitions .exhibition-image img{width:100%;height:100%;object-fit:cover;-webkit-user-drag:none;user-select:none}
#about-exhibitions .exhibition-caption{position:absolute;left:0;right:0;bottom:0;background:rgba(0,0,0,.45);color:#fff;font-size:14px;line-height:1.25;padding:8px 12px;font-weight:600}

/* About page - Partners Section (consistent with homepage) */
.partners-grid .partner-logo {
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.partners-grid .partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partners-grid .partner-logo img {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

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

/* About Page Compacting */
.about-page .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

#about-exhibitions .exhibition-progress-container{margin-top:15px}
#about-exhibitions .exhibition-progress-bar{width:100%;height:4px;background:#e5e7eb;border-radius:2px;overflow:hidden}
#about-exhibitions .exhibition-progress-fill{height:100%;background:var(--primary-blue);width:0%}
@media (max-width:992px){#about-exhibitions .exhibition-track{width:500%}#about-exhibitions .exhibition-image{height:200px}#about-exhibitions .exhibition-caption{font-size:13px;padding:8px 10px}}
@media (max-width:768px){#about-exhibitions .exhibition-track{width:750%}#about-exhibitions .exhibition-image{height:180px}#about-exhibitions .exhibition-caption{font-size:12px;padding:7px 10px}}

/* Customer Case Studies Section */
.case-studies-section {
    background-color: var(--light-gray);
}

.case-study-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 350px;
    cursor: pointer;
}

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

.case-study-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.case-study-card:hover img {
    transform: scale(1.05);
}

.case-study-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 70%, transparent 100%);
    color: white;
    padding: 30px 25px 25px;
    transform: translateY(calc(100% - 60px));
    transition: transform 0.4s ease;
}

.case-study-card:hover .case-study-content {
    transform: translateY(0);
}

.case-study-category {
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 15px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.case-study-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
}

.case-study-description {
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    font-size: 0.95rem;
    margin-bottom: 0;
}




/* ==============================================
   BARBELL FACTORY PAGE - INDUSTRIAL STRENGTH
   ============================================== */

/* --- Barbell Hero Section --- */
.barbell-hero-section {
    position: relative;
    padding: 120px 0;
    background: url('https://images.unsplash.com/photo-1517836357463-d2576993725c?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=3600') no-repeat center center/cover;
    color: white;
    overflow: hidden;
}

.industrial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 30, 40, 0.9) 0%, rgba(40, 50, 60, 0.95) 100%);
    z-index: 1;
}

.barbell-hero-section .container {
    position: relative;
    z-index: 2;
}

.industrial-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

.industrial-badge i {
    color: var(--primary-color);
}

.barbell-title {
    font-family: 'Teko', sans-serif; /* A more industrial/strong font */
    font-size: 8rem;
    font-weight: 700;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.barbell-title .title-main {
    display: block;
    color: white;
}

.barbell-title .title-sub {
    display: block;
    color: var(--primary-color);
}

.strength-indicator {
    margin-bottom: 30px;
}

.strength-bars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.strength-bars .bar {
    width: 50px;
    height: 5px;
    background: var(--primary-color);
    animation: strength-pulse 2s infinite ease-in-out;
}

.strength-bars .bar:nth-child(2) { animation-delay: 0.2s; }
.strength-bars .bar:nth-child(3) { animation-delay: 0.4s; }
.strength-bars .bar:nth-child(4) { animation-delay: 0.6s; }
.strength-bars .bar:nth-child(5) { animation-delay: 0.8s; }

@keyframes strength-pulse {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(1.5); opacity: 1; }
}

.strength-text {
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.8;
}

.industrial-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.stat-block {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* --- Manufacturing Process Section --- */
.manufacturing-process-section {
    padding: 80px 0;
    background-color: #f0f2f5;
}

.section-title-industrial {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-subtitle-industrial {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    margin-bottom: 50px;
}

.process-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 30px;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1;
}

.process-line {
    width: 2px;
    height: 100%;
    background: #bdc3c7;
}

.process-content-wrapper {
    display: flex;
    gap: 30px;
    width: calc(100% - 90px);
}

.process-image {
    width: 40%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.process-text {
    width: 60%;
    background: white;
    padding: 30px;
    border-radius: 10px;
}

.process-step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ecf0f1;
    margin-bottom: -15px;
}

.process-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.process-description {
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.process-spec {
    background: #f9f9f9;
    border-left: 3px solid var(--primary-color);
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
}

.spec-label {
    font-weight: 600;
    color: #34495e;
}

.spec-value {
    color: var(--primary-color);
    font-weight: 500;
}

/* Reverse layout for alternating steps */
.process-step.reverse .process-content-wrapper {
    flex-direction: row-reverse;
}

.process-step.reverse .process-icon-wrapper {
    margin-left: 30px;
    margin-right: 0;
}

.process-step:last-child .process-line {
    display: none;
}

/* --- Barbell Armoury Section --- */
.barbell-armoury-section {
    padding-top: 80px;
    background: #2c3e50;
}

.barbell-armoury-section .section-title-industrial,
.barbell-armoury-section .section-subtitle-industrial {
    color: white;
}

.armoury-card {
    background: #34495e;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.armoury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.armoury-image-wrapper {
    position: relative;
}

.armoury-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.armoury-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 15px;
}

.armoury-specs {
    display: flex;
    gap: 15px;
    color: white;
    font-size: 0.9rem;
}

.armoury-specs span i {
    margin-right: 5px;
    color: var(--primary-color);
}

.armoury-content {
    padding: 25px;
}

.armoury-title {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
}

.armoury-description {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-bottom: 20px;
    height: 50px; /* Fixed height */
}

.armoury-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.armoury-link:hover {
    color: white;
}

/* --- Quality Commitment Section --- */
.quality-commitment-section {
    padding: 80px 0;
    background: white;
}

.quality-image-showcase img {
    border-radius: 15px;
}

.commitment-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.commitment-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: #f0f2f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.commitment-text h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.commitment-text p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* --- Industrial CTA Section --- */
.industrial-cta-section {
    padding: 80px 0;
    background: url('https://images.unsplash.com/photo-1541534741688-6078c6bfb5c5?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=3600') no-repeat center center/cover;
    position: relative;
}

.industrial-cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(44, 62, 80, 0.85);
}

.industrial-cta-section .container {
    position: relative;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #bdc3c7;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-industrial-cta {
    background: var(--primary-color);
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-industrial-cta:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ==============================================
   RUBBER FACTORY PAGE - MODERN TECH DESIGN
   ============================================== */

/* --- Rubber Hero Section --- */
.rubber-hero-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.rubber-hero-bg {
    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><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></linearGradient></defs><path d="M0,200 Q250,50 500,200 T1000,200 L1000,0 L0,0 Z" fill="url(%23grad)"/></svg>') no-repeat center center/cover;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.tech-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.rubber-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.rubber-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
}

.tech-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.tech-stat-item {
    text-align: center;
}

.tech-stat-item .stat-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
}

.tech-stat-item .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-rubber-hero {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-rubber-hero:hover {
    background: white;
    color: #667eea;
    border-color: white;
}

.rubber-hero-visual {
    position: relative;
    text-align: center;
}

.visual-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.hero-product-image {
    position: relative;
    z-index: 2;
    max-width: 80%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* --- Core Technologies Section --- */
.core-technologies-section {
    padding: 80px 0;
    background: #f8fafc;
}

.tech-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.tech-section-subtitle {
    font-size: 1.2rem;
    color: #718096;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tech-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.tech-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tech-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.tech-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.tech-card-body p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 500;
    color: #4a5568;
}

.spec-value {
    font-weight: 600;
    color: #667eea;
}

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

.tech-progress {
    flex: 1;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
    margin-right: 15px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
    transition: width 2s ease-in-out;
}

.tech-efficiency {
    font-size: 0.9rem;
    font-weight: 600;
    color: #667eea;
}

/* --- Product Applications Section --- */
.product-applications-section {
    padding: 80px 0;
    background: white;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.application-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f4f8;
}

.application-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.application-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.application-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
}

.application-content {
    padding: 30px;
    position: relative;
}

.application-icon {
    position: absolute;
    top: -25px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.application-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin: 25px 0 15px 0;
}

.application-description {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 20px;
}

.application-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.application-list li {
    padding: 8px 0;
    color: #4a5568;
    position: relative;
    padding-left: 20px;
}

.application-list li::before {
    content: '•';
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* --- Quality Guarantee Section --- */
.quality-guarantee-section {
    padding: 80px 0;
    background: #f8fafc;
}

.guarantee-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 40px;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.guarantee-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.guarantee-item span {
    font-weight: 500;
    color: #2d3748;
}

.guarantee-image-wrapper {
    position: relative;
}

.guarantee-image-wrapper img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- Tech CTA Section --- */
.tech-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    position: relative;
    overflow: hidden;
}

.tech-cta-section::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"><circle cx="200" cy="200" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="400" cy="700" r="4" fill="rgba(255,255,255,0.1)"/><circle cx="600" cy="100" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: tech-particles 20s linear infinite;
}

@keyframes tech-particles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.tech-cta-content {
    position: relative;
    z-index: 2;
}

.tech-cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.tech-cta-subtitle {
    font-size: 1.2rem;
    color: #cbd5e0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-tech-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-tech-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: white;
}

/* --- Responsive Design for Rubber Factory --- */
@media (max-width: 768px) {
    .rubber-title {
        font-size: 2.5rem;
    }

    .tech-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

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

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

    .tech-cta-title {
        font-size: 2.2rem;
    }
}
/* ==============================================
   CASTING FACTORY PAGE - HERITAGE DESIGN
   ============================================== */

/* --- Casting Hero Section --- */
.casting-hero-section {
    position: relative;
    padding: 120px 0;
    background: url('https://images.unsplash.com/photo-1565043666747-69f6646db940?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=3600') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.casting-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(44, 25, 15, 0.9) 0%, rgba(20, 15, 10, 0.95) 100%);
    z-index: 1;
}

.casting-hero-section .container {
    position: relative;
    z-index: 2;
}

.heritage-badge {
    display: inline-block;
    padding: 8px 25px;
    background: rgba(139, 69, 19, 0.8);
    border: 2px solid #8B4513;
    border-radius: 0;
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.casting-title {
    font-family: 'Georgia', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.casting-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.heritage-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}

.heritage-stat-item {
    text-align: center;
}

.heritage-stat-item .stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D2691E;
    font-family: 'Georgia', serif;
}

.heritage-stat-item .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 1px;
}

/* --- Casting Process Section --- */
.casting-process-section {
    padding: 80px 0;
    background: #f5f3f0;
}

.heritage-section-title {
    font-family: 'Georgia', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c1a0f;
    margin-bottom: 10px;
}

.heritage-section-subtitle {
    font-size: 1.2rem;
    color: #8B4513;
    font-style: italic;
}

.process-card {
    background: white;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #e8e2db;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.process-card-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.process-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.process-card:hover .process-image {
    transform: scale(1.05);
}

.process-step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #8B4513;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.process-card-body {
    padding: 30px;
}

.process-title {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c1a0f;
    margin-bottom: 15px;
}

.process-description {
    color: #6b4423;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* --- Iron Masterpieces Section --- */
.iron-masterpieces-section {
    padding: 80px 0;
    background: #2c1a0f;
}

.iron-masterpieces-section .heritage-section-title,
.iron-masterpieces-section .heritage-section-subtitle {
    color: white;
}

.masterpieces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.masterpiece-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.masterpiece-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

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

.masterpiece-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.masterpiece-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(44, 26, 15, 0.95) 0%, transparent 100%);
    padding: 30px;
    transform: translateY(50%);
    transition: transform 0.3s ease;
}

.masterpiece-item:hover .masterpiece-overlay {
    transform: translateY(0);
}

.masterpiece-details h4 {
    color: white;
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.masterpiece-details p {
    color: #d2b48c;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.masterpiece-specs {
    display: flex;
    gap: 15px;
}

.masterpiece-specs span {
    background: rgba(139, 69, 19, 0.8);
    color: white;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 0;
}
/* --- Legacy Quality Section --- */
.legacy-quality-section {
    padding: 80px 0;
    background: #f5f3f0;
}

.legacy-image-wrapper img {
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 5px solid #8B4513;
}

.legacy-content p {
    font-size: 1.1rem;
    color: #6b4423;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.legacy-checks-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legacy-checks-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: #2c1a0f;
    font-weight: 500;
    border-bottom: 1px solid #e8e2db;
}

.legacy-checks-list li:last-child {
    border-bottom: none;
}

.legacy-checks-list li i {
    color: #8B4513;
    font-size: 1.2rem;
}

/* --- Heritage CTA Section --- */
.heritage-cta-section {
    padding: 80px 0;
    background: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=3600') no-repeat center center/cover;
    position: relative;
    text-align: center;
}

.heritage-cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(44, 26, 15, 0.85);
}

.heritage-cta-content {
    position: relative;
    z-index: 2;
}

.heritage-cta-title {
    font-family: 'Georgia', serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.heritage-cta-subtitle {
    font-size: 1.2rem;
    color: #d2b48c;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-style: italic;
}

.btn-heritage-cta {
    background: #8B4513;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #8B4513;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-heritage-cta:hover {
    background: transparent;
    color: #8B4513;
    border-color: #8B4513;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 69, 19, 0.3);
}

/* --- Responsive Design for Casting Factory --- */
@media (max-width: 768px) {
    .casting-title {
        font-size: 2.8rem;
    }

    .heritage-stats {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

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

    .heritage-cta-title {
        font-size: 2.2rem;
    }

    .process-card-body {
        padding: 20px;
    }

    .masterpiece-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(44, 26, 15, 0.9) 0%, rgba(44, 26, 15, 0.7) 100%);
    }
}

/* ==============================================
   FITNESS FACTORY PAGE - RED ACCENT DESIGN
   ============================================== */

/* Factory Header Section */
.factory-header-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.factory-name {
    font-size: 3.5rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 40px;
}

.factory-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.factory-stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 4px solid #2563eb;
}

.factory-stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    display: block;
}

.factory-stat-item .stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 5px;
}

.spark-image-wrapper {
    text-align: center;
}

.spark-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(220, 53, 69, 0.3));
}

/* New Products Section */
.new-products-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    /* margin-bottom: 50px; */
}

.new-product-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.new-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2563eb;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.product-info {
    padding: 25px;
}

.product-info h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
}

.product-info p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.product-features span {
    background: #f8f9fa;
    color: #2563eb;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Factory Introduction Section */
.factory-intro-section {
    /* padding: 80px 0; */
    background: #f8f9fa;
}

.intro-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.intro-text {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 25px;
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-item i {
    color: #2563eb;
    font-size: 1.2rem;
    width: 20px;
}

.highlight-item span {
    font-weight: 500;
    color: #495057;
}

.video-wrapper {
    position: relative;
}

/* Company Introduction Section - Video Container */
.company-intro-section .video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* border-radius: 15px; */
    overflow: hidden;
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.15); */
}

.company-intro-section .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 15px;
}
/* Factory Capabilities Section */
.factory-capabilities-section {
    padding: 80px 0;
    background: white;
}

.capability-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #2563eb;
}

.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.capability-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.capability-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 15px;
}

.capability-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.capability-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.capability-list li {
    padding: 8px 0;
    color: #495057;
    position: relative;
    padding-left: 20px;
}

.capability-list li::before {
    content: '•';
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Honors & Reviews Section */
.honors-reviews-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 30px;
}

.honor-item, .review-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.honor-item:hover, .review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.honor-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.honor-icon {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.honor-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 5px;
}

.honor-content span {
    color: #6c757d;
    font-size: 0.9rem;
}

.review-stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.review-text {
    color: #495057;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.reviewer-info strong {
    color: #212529;
    display: block;
}

.reviewer-info span {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Factory Gallery Section */
.factory-gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
    padding: 25px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Mobile: Always show overlay content since there's no hover */
@media (max-width: 768px) {
    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    }
}

.gallery-overlay h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

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

/* Product Design Section */
.product-design-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.design-showcase-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.design-showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.design-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.design-content {
    padding: 30px;
}

.design-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 15px;
}

.design-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-tag {
    background: #2563eb;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
}

/* CTA Section */
.factory-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #212529 0%, #495057 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #adb5bd;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-primary {
    background: #2563eb;
    color: white;
    padding: 15px 40px;
    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);
}

.btn-cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
    color: white;
}

/* Responsive Design for Fitness Factory */
@media (max-width: 768px) {
    .factory-name {
        font-size: 2.5rem;
    }

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

    .section-title {
        font-size: 2.2rem;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .intro-highlights {
        gap: 10px;
    }

    .video-container {
        padding-bottom: 75%;
    }

    .gallery-item {
        margin-bottom: 20px;
    }

    .design-showcase-item {
        margin-bottom: 30px;
    }
}
/* ==============================================
   CASTING FACTORY PAGE - ORANGE/YELLOW ACCENT
   ============================================== */

/* Casting Theme Overrides */
.casting-theme {
    --theme-primary: #fd7e14;
    --theme-secondary: #e8590c;
    --theme-accent: #fd7e14;
}

.casting-theme .factory-stat-item {
    border-left: 4px solid #fd7e14;
}

.casting-theme .factory-stat-item .stat-number {
    color: #fd7e14;
}

.casting-theme .spark-image {
    filter: drop-shadow(0 20px 40px rgba(253, 126, 20, 0.3));
}

.casting-theme .product-badge {
    background: #fd7e14;
}

.casting-theme .product-features span {
    color: #fd7e14;
}

.casting-theme .capability-card {
    border-top: 4px solid #fd7e14;
}

.casting-theme .capability-icon {
    background: linear-gradient(135deg, #fd7e14 0%, #e8590c 100%);
}

.casting-theme .capability-list li::before {
    color: #fd7e14;
}

.casting-theme .honor-icon {
    background: #fd7e14;
}

.casting-theme .highlight-item i {
    color: #fd7e14;
}

.casting-theme .feature-tag {
    background: #fd7e14;
}

.casting-theme .btn-cta-primary {
    background: #fd7e14;
    box-shadow: 0 10px 30px rgba(253, 126, 20, 0.3);
}

.casting-theme .btn-cta-primary:hover {
    background: #e8590c;
    box-shadow: 0 15px 40px rgba(253, 126, 20, 0.4);
}

/* Responsive Design for Casting Factory */
@media (max-width: 768px) {
    .casting-theme .factory-name {
        font-size: 2.5rem;
    }

    .casting-theme .factory-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
/* ==============================================
   BARBELL FACTORY PAGE - BLACK/WHITE THEME
   ============================================== */

/* Barbell Theme Overrides */
.barbell-theme {
    --theme-primary: #212529;
    --theme-secondary: #495057;
    --theme-accent: #212529;
}

.barbell-theme .factory-stat-item {
    border-left: 4px solid #212529;
}

.barbell-theme .factory-stat-item .stat-number {
    color: #212529;
}

.barbell-theme .spark-image {
    filter: drop-shadow(0 20px 40px rgba(33, 37, 41, 0.3));
}

.barbell-theme .product-badge {
    background: #212529;
}

.barbell-theme .product-features span {
    color: #212529;
}

.barbell-theme .capability-card {
    border-top: 4px solid #212529;
}

.barbell-theme .capability-icon {
    background: linear-gradient(135deg, #212529 0%, #495057 100%);
}

.barbell-theme .capability-list li::before {
    color: #212529;
}

.barbell-theme .honor-icon {
    background: #212529;
}

.barbell-theme .highlight-item i {
    color: #212529;
}

.barbell-theme .feature-tag {
    background: #212529;
}

.barbell-theme .btn-cta-primary {
    background: #212529;
    box-shadow: 0 10px 30px rgba(33, 37, 41, 0.3);
}

.barbell-theme .btn-cta-primary:hover {
    background: #495057;
    box-shadow: 0 15px 40px rgba(33, 37, 41, 0.4);
}

/* Additional Black/White Theme Styling */
.barbell-theme .factory-header-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.barbell-theme .new-products-section {
    background: white;
}

.barbell-theme .factory-intro-section {
    background: #f8f9fa;
}

.barbell-theme .factory-capabilities-section {
    background: white;
}

.barbell-theme .honors-reviews-section {
    background: #f8f9fa;
}

.barbell-theme .factory-gallery-section {
    background: white;
}

.barbell-theme .product-design-section {
    background: #f8f9fa;
}

.barbell-theme .factory-cta-section {
    background: linear-gradient(135deg, #212529 0%, #495057 100%);
}

/* Responsive Design for Barbell Factory */
@media (max-width: 768px) {
    .barbell-theme .factory-name {
        font-size: 2.5rem;
    }

    .barbell-theme .factory-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
/* ==============================================
   RUBBER FACTORY PAGE - GREEN ACCENT
   ============================================== */

/* Rubber Theme Overrides */
.rubber-theme {
    --theme-primary: #28a745;
    --theme-secondary: #1e7e34;
    --theme-accent: #28a745;
}

.rubber-theme .factory-stat-item {
    border-left: 4px solid #28a745;
}

.rubber-theme .factory-stat-item .stat-number {
    color: #28a745;
}

.rubber-theme .spark-image {
    filter: drop-shadow(0 20px 40px rgba(40, 167, 69, 0.3));
}

.rubber-theme .product-badge {
    background: #28a745;
}

.rubber-theme .product-features span {
    color: #28a745;
}

.rubber-theme .capability-card {
    border-top: 4px solid #28a745;
}

.rubber-theme .capability-icon {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
}

.rubber-theme .capability-list li::before {
    color: #28a745;
}

.rubber-theme .honor-icon {
    background: #28a745;
}

.rubber-theme .highlight-item i {
    color: #28a745;
}

.rubber-theme .feature-tag {
    background: #28a745;
}

.rubber-theme .btn-cta-primary {
    background: #28a745;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.rubber-theme .btn-cta-primary:hover {
    background: #1e7e34;
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.4);
}

/* Additional Green Theme Styling */
.rubber-theme .factory-header-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.rubber-theme .new-products-section {
    background: white;
}

.rubber-theme .factory-intro-section {
    background: #f8f9fa;
}

.rubber-theme .factory-capabilities-section {
    background: white;
}

.rubber-theme .honors-reviews-section {
    background: #f8f9fa;
}

.rubber-theme .factory-gallery-section {
    background: white;
}

.rubber-theme .product-design-section {
    background: #f8f9fa;
}

.rubber-theme .factory-cta-section {
    background: linear-gradient(135deg, #212529 0%, #495057 100%);
}

/* Responsive Design for Rubber Factory */
@media (max-width: 768px) {
    .rubber-theme .factory-name {
        font-size: 2.5rem;
    }

    .rubber-theme .factory-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ==============================================
   FITNESS FACTORY PAGE - BLUE THEME
   ============================================== */

/* Fitness Theme Overrides */
.fitness-theme {
    --theme-primary: #2563eb;
    --theme-secondary: #3b82f6;
    --theme-accent: #2563eb;
}

.fitness-theme .factory-stat-item {
    border-left: 4px solid #2563eb;
}

.fitness-theme .factory-stat-item .stat-number {
    color: #2563eb;
}

.fitness-theme .spark-image {
    filter: drop-shadow(0 20px 40px rgba(37, 99, 235, 0.3));
}

.fitness-theme .product-badge {
    background: #2563eb;
}

.fitness-theme .product-features span {
    color: #2563eb;
}

.fitness-theme .capability-card {
    border-top: 4px solid #2563eb;
}

.fitness-theme .capability-icon {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.fitness-theme .capability-list li::before {
    color: #2563eb;
}

.fitness-theme .honor-icon {
    background: #2563eb;
}

.fitness-theme .highlight-item i {
    color: #2563eb;
}

.fitness-theme .feature-tag {
    background: #2563eb;
}

.fitness-theme .btn-cta-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.fitness-theme .btn-cta-primary:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

/* Additional Blue Theme Styling */
.fitness-theme .factory-header-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fitness-theme .new-products-section {
    background: white;
}

.fitness-theme .factory-intro-section {
    background: #f8f9fa;
}

.fitness-theme .factory-capabilities-section {
    background: white;
}

.fitness-theme .honors-reviews-section {
    background: #f8f9fa;
}

.fitness-theme .factory-gallery-section {
    background: white;
}

.fitness-theme .product-design-section {
    background: #f8f9fa;
}

.fitness-theme .factory-cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
}

/* Responsive Design for Fitness Factory */
@media (max-width: 768px) {
    .fitness-theme .factory-name {
        font-size: 2.5rem;
    }

    .fitness-theme .factory-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
/* ==============================================
   FACTORY OVERVIEW PAGE STYLES
   ============================================== */

/* Factory Overview Header */
.factory-overview-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.factory-overview-header::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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e5e7eb" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.factory-overview-content {
    position: relative;
    z-index: 2;
}

.factory-overview-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.factory-overview-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.overview-stat-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.overview-stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.overview-stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.factory-overview-image {
    position: relative;
    z-index: 2;
}

.factory-overview-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Factory Grid Section */
.factory-grid-section {
    padding: 80px 0;
    background: white;
}

.factory-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 400px;
}

.factory-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.factory-card-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.factory-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.factory-card:hover .factory-card-image img {
    transform: scale(1.05);
}

.factory-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.factory-card:hover .factory-card-overlay {
    opacity: 1;
}

.factory-card-content {
    color: white;
    width: 100%;
}

.factory-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.factory-card-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.factory-card-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.factory-card-stats .stat-item {
    text-align: center;
}

.factory-card-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.factory-card-stats .stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
    color: white;
}

.factory-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.factory-card-btn:hover {
    background: var(--secondary-blue);
    color: white;
    text-decoration: none;
    transform: translateX(5px);
}

/* Theme-specific card colors */
.factory-card.barbell-theme .factory-card-btn {
    background: #212529;
}

.factory-card.barbell-theme .factory-card-btn:hover {
    background: #495057;
}

.factory-card.casting-theme .factory-card-btn {
    background: #fd7e14;
}

.factory-card.casting-theme .factory-card-btn:hover {
    background: #e8590c;
}

.factory-card.fitness-theme .factory-card-btn {
    background: #2563eb;
}

.factory-card.fitness-theme .factory-card-btn:hover {
    background: #1d4ed8;
}

.factory-card.rubber-theme .factory-card-btn {
    background: #28a745;
}

.factory-card.rubber-theme .factory-card-btn:hover {
    background: #1e7e34;
}

/* Manufacturing Process Section */
.manufacturing-process-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.process-description {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* Factory CTA Section */
.factory-cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 60px 0;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.6;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-primary:hover {
    background: var(--light-gray);
    color: var(--primary-blue);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .factory-overview-title {
        font-size: 2.5rem;
    }
    
    .factory-overview-subtitle {
        font-size: 1.1rem;
    }
    
    .factory-card {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .factory-card-overlay {
        padding: 1.5rem;
    }
    
    .factory-card-title {
        font-size: 1.5rem;
    }
    
    .factory-card-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
}

/* ==============================================
   REVISED FACTORY SECTIONS - IMAGE-TEXT LAYOUTS
   ============================================== */

/* Factory Capabilities Revised */
.factory-capabilities-section-revised {
    padding: 80px 0;
    background: #f8f9fa;
}

.capability-row {
    margin-bottom: 80px;
}

.capability-row.reverse {
    flex-direction: row-reverse;
}

.capability-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.capability-image-wrapper img {
    width: 100%;
 height: 400px; 
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.temp-indicator {
    color: #fd7e14;
    font-size: 1.2rem;
}

.capability-content {
    padding: 40px;
}

.capability-title {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
}

.capability-content p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 30px;
}

.capability-features {
    list-style: none;
    padding: 0;
}

.capability-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #495057;
}

.capability-features i {
    color: #28a745;
    margin-right: 15px;
    font-size: 1.2rem;
}

.process-metrics {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fd7e14;
}

.metric-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 5px;
}

.category-tag, .feature-badge {
    display: inline-block;
    background: #fd7e14;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Factory Tour Revised */
.factory-tour-section-revised {
    padding: 80px 0;
    background: white;
}

.tour-stop {
    margin-bottom: 80px;
}

.tour-stop.reverse {
    flex-direction: row-reverse;
}

.tour-image-large {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.tour-image-large img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.tour-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
}

.tour-content p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 30px;
}

.tour-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 5px;
}

.tour-highlights .highlight {
    display: block;
    margin-bottom: 10px;
    color: #28a745;
    font-weight: 500;
}

.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.feature-badge {
    background: #6c757d;
    color: white;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}
/* Manufacturing Showcase Section (Barbell Factory) */
.manufacturing-showcase-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-step {
    margin-bottom: 80px;
}

.process-step.reverse {
    flex-direction: row-reverse;
}

.process-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.process-image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.process-indicator {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(33, 37, 41, 0.9);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
}

.step-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.step-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 5px;
    letter-spacing: 1px;
}

.process-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
}

.process-content p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 30px;
}

.process-specs {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #212529;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.spec-label {
    color: #6c757d;
    font-weight: 500;
}

.spec-value {
    color: #212529;
    font-weight: 700;
}

.machining-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.feature-pill {
    background: #212529;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.testing-metrics {
    margin-top: 20px;
}

.metric-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #495057;
}

.metric-icon {
    margin-right: 15px;
    font-size: 1.5rem;
}

/* Sustainable Manufacturing Section (Rubber Factory) */
.sustainable-manufacturing-section {
    padding: 80px 0;
    background: white;
}

.manufacturing-feature {
    margin-bottom: 80px;
}

.manufacturing-feature.reverse {
    flex-direction: row-reverse;
}

.feature-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.eco-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
}

.feature-content p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 30px;
}

.sustainability-metrics {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.metric-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border-top: 3px solid #28a745;
    flex: 1;
}

.metric-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #28a745;
}

.metric-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 5px;
}

.technology-highlights {
    margin-top: 20px;
}

.tech-highlight {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.highlight-icon {
    margin-right: 15px;
    font-size: 1.5rem;
}

.highlight-text {
    font-size: 1rem;
    color: #495057;
    font-weight: 500;
}

.lab-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.capability-tag {
    background: #28a745;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}
/* Responsive Design for Revised Sections */
@media (max-width: 768px) {
    /* Capability Sections */
    .capability-row.reverse {
        flex-direction: column !important;
    }

    .capability-image-wrapper img {
        height: 250px;
    }

    .capability-content {
        padding: 20px;
    }

    .capability-title {
        font-size: 1.5rem;
    }

    .process-metrics {
        flex-direction: column;
        gap: 20px;
    }

    /* Tour Sections */
    .tour-stop.reverse {
        flex-direction: column !important;
    }

    .tour-image-large img {
        height: 250px;
    }

    .tour-content {
        padding: 20px;
    }

    .tour-content h4 {
        font-size: 1.4rem;
    }

    .tour-stats {
        flex-direction: column;
        gap: 15px;
    }

    /* Process Steps */
    .process-step.reverse {
        flex-direction: column !important;
    }

/* ===== Gym Solutions - Our Process Section overrides - REMOVED OLD STYLES ===== */

/* ===== New vertical process styles (no conflicts) ===== */
.our-process-section .process-steps-v2 .process-step-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e9ecef; /* restore subtle card border */
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    position: relative;
    height: 100%;
    transition: box-shadow .25s ease, transform .25s ease;
    will-change: transform, box-shadow;
}

.our-process-section .process-steps-v2 .process-step-v2 .step-number {
    position: absolute;
    top: 8px;
    right: 14px;
    font-size: 68px;
    font-weight: 700;
    color: #000;
    opacity: 0.06;
    line-height: 1;
}

.our-process-section .process-steps-v2 .process-step-v2 .step-icon { order: 1; font-size: 28px; color: #2563eb; }
.our-process-section .process-steps-v2 .process-step-v2 .step-title { order: 2; margin: 0; font-size: 1.1rem; font-weight: 700; }
.our-process-section .process-steps-v2 .process-step-v2 .step-description { order: 3; margin: 0; color: #6c757d; line-height: 1.7; }

/* Hover lift + stronger shadow */
.our-process-section .process-steps-v2 .process-step-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.12), 0 10px 10px rgba(0,0,0,0.06);
}

@media (max-width: 991.98px) {
  .our-process-section .process-steps-v2 > [class*="col-"] { margin-bottom: 1rem; }
}

    .process-image-container img {
        height: 250px;
    }

    .process-content {
        padding: 20px;
    }

    .process-content h4 {
        font-size: 1.4rem;
    }

    .machining-features {
        justify-content: center;
    }

    /* Manufacturing Features */
    .manufacturing-feature.reverse {
        flex-direction: column !important;
    }

    .feature-image-wrapper img {
        height: 250px;
    }

    .feature-content {
        padding: 20px;
    }

    .feature-title {
        font-size: 1.5rem;
    }

    .sustainability-metrics {
        flex-direction: column;
        gap: 15px;
    }

    .lab-capabilities {
        justify-content: center;
    }
}

/* --- Smart Manufacturing Section --- */
.smart-manufacturing-section {
    padding: 80px 0;
    background: white;
}

.vitality-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.vitality-section-subtitle {
    font-size: 1.2rem;
    color: #718096;
}

.manufacturing-nav-tabs {
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 40px;
    justify-content: center;
}

.manufacturing-nav-tabs .nav-link {
    border: none;
    padding: 15px 30px;
    color: #4a5568;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.manufacturing-nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    background: transparent;
}

.manufacturing-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.manufacturing-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 30px;
}

.manufacturing-specs {
    background: #f8fafc;
    border-radius: 10px;
    padding: 20px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row .spec-label {
    font-weight: 500;
    color: #4a5568;
}

.spec-row .spec-value {
    font-weight: 600;
    color: var(--primary-color);
}

.manufacturing-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- Fitness Ecosystem Section --- */
.fitness-ecosystem-section {
    padding: 80px 0;
    background: #f8fafc;
}

.ecosystem-card {
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.ecosystem-card:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.ecosystem-card.cardio-card { background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%); }
.ecosystem-card.strength-card { background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%); }
.ecosystem-card.functional-card { background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%); }
.ecosystem-card.accessories-card { background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%); }

.ecosystem-content {
    color: #1a202c;
    max-width: 50%;
}

.ecosystem-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.ecosystem-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.ecosystem-description {
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-ecosystem {
    background: rgba(255, 255, 255, 0.3);
    color: #1a202c;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-ecosystem:hover {
    background: white;
    color: #1a202c;
}

.ecosystem-image-wrapper {
    width: 40%;
    text-align: center;
}

.ecosystem-image {
    max-width: 100%;
    transition: transform 0.3s ease;
}

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

/* --- Peak Performance Section --- */
.peak-performance-section {
    padding: 80px 0;
    background: white;
}

.performance-image-wrapper img {
    border-radius: 20px;
}

.performance-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 30px;
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.certification-item:hover {
    background: var(--primary-color);
    color: white;
}

.certification-item:hover .cert-icon,
.certification-item:hover .cert-details h5,
.certification-item:hover .cert-details span {
    color: white;
}

.cert-icon {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.cert-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a202c;
    transition: color 0.3s ease;
}

.cert-details span {
    font-size: 0.9rem;
    color: #718096;
    transition: color 0.3s ease;
}

/* --- Vitality CTA Section --- */
.vitality-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a202c 0%, #4a5568 100%);
    color: white;
    text-align: center;
}

.vitality-cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.vitality-cta-subtitle {
    font-size: 1.2rem;
    color: #a0aec0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-vitality-cta {
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.3);
}

.btn-vitality-cta:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}
/* --- Responsive Design for Fitness Factory --- */
@media (max-width: 768px) {
    .fitness-title {
        font-size: 2.5rem;
    }

    .vitality-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .manufacturing-nav-tabs {
        flex-direction: column;
    }

    .manufacturing-nav-tabs .nav-link {
        text-align: center;
        padding: 12px 20px;
    }

    .ecosystem-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .ecosystem-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .ecosystem-image-wrapper {
        width: 60%;
    }

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

    .vitality-cta-title {
        font-size: 2.2rem;
    }
}

/* Enhanced Mega Menu Styles */
.dropdown-mega {
    position: relative;
}

.dropdown-mega .dropdown-menu {
    position: fixed;
    left: 0 !important;
    top: auto;
    width: 100vw !important;
    margin-top: 0;
    background-color: var(--white);
    border: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: var(--white);
    padding: 30px 0;
    z-index: 1001;
    display: none;
    transform: none !important;
}

.dropdown-mega .dropdown-menu .container {
    width: 100%;
    max-width: 1200px;
}

/* Mega Menu Tabs */
.mega-menu-tabs .nav-tabs {
    border: none;
    margin-bottom: 0;
}

.mega-menu-tabs .nav-tabs .nav-link {
    border: none;
    background: none;
    color: var(--dark-gray);
    font-weight: 500;
    padding: 12px 20px;
    margin-bottom: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mega-menu-tabs .nav-tabs .nav-link:hover {
    background-color: var(--light-blue);
    color: var(--primary-blue);
}

.mega-menu-tabs .nav-tabs .nav-link.active {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Mega Menu Items */
.mega-menu-item {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mega-menu-item:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
}

.mega-menu-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.mega-menu-item h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
}

.mega-menu-item.learn-more {
    background-color: var(--light-gray);
    color: var(--dark-gray);
}

.mega-menu-item.learn-more h6 {
    color: var(--dark-gray);
}

/* Factory Mega Menu */
.factory-mega-menu .factory-item {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.factory-item {
    text-decoration: none !important;
    color: inherit;
}

.factory-item:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
    text-decoration: none !important;
    color: inherit;
}

.factory-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.factory-item h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.factory-item p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.show {
    display: block;
    opacity: 1;
}

/* Ensure mobile nav is visible on mobile devices */
@media (max-width: 991.98px) {
    .mobile-nav-overlay {
        display: none;
    }
    
    .mobile-nav-overlay.show {
        display: block;
    }
    
    /* Hide desktop navigation on mobile */
    .navbar-collapse {
        display: none !important;
    }
    
    /* Show mobile toggle button */
    .navbar-toggler {
        display: block !important;
    }
}

@media (min-width: 992px) {
    /* Hide mobile navigation on desktop */
    .mobile-nav-overlay {
        display: none !important;
    }
    
    /* Show desktop navigation */
    .navbar-collapse {
        display: flex !important;
    }
    
    /* Hide mobile toggle button */
    .navbar-toggler {
        display: none !important;
    }
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: var(--white);
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-nav-overlay.show .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
}

.mobile-logo {
    height: 40px;
}

.mobile-nav-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-gray);
    cursor: pointer;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    margin-bottom: 10px;
}

.mobile-nav-menu a {
    display: block;
    padding: 15px 0;
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid var(--light-gray);
    transition: color 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: var(--primary-blue);
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    background-color: var(--light-gray);
    border-radius: 5px;
    margin-top: 10px;
}

.mobile-dropdown-menu li {
    margin: 0;
}

.mobile-dropdown-menu a {
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mobile-dropdown-menu a:last-child {
    border-bottom: none;
}

/* Responsive adjustments for mega menu */
@media (max-width: 768px) {
    .dropdown-mega .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 20px 0;
    }
    
    .mega-menu-tabs {
        margin-bottom: 20px;
    }
    
    .mega-menu-tabs .nav-tabs {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .mega-menu-tabs .nav-tabs .nav-link {
        flex: 1;
        min-width: 120px;
        text-align: center;
        font-size: 12px;
        padding: 8px 10px;
    }
    
    .mega-menu-item img {
        height: 80px;
    }
    
    .factory-item img {
        height: 100px;
    }
}

/* Timeline Styles */
.timeline-container {
    position: relative !important;
    max-width: 1200px;
    margin: 0 auto !important;
    padding: 0 !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
}

.timeline-progress-line {
    position: absolute !important;
    left: 50% !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 4px !important;
    background: #e5e7eb !important;
    transform: translateX(-50%) !important;
    z-index: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.timeline-progress-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4px;
    height: 4px;
    background: #ff0000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.timeline-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #2563eb;
    transition: height 0.3s ease;
}

.timeline {
    position: relative;
    z-index: 2;
    width: 100%;
}

.timeline-item {
    position: static !important;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    width: 100%;
    max-width: 100%;
}

.timeline-item.timeline-item-active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.timeline-item-animated {
    animation: timelineSlideIn 0.8s ease forwards;
}

@keyframes timelineSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-marker {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 3 !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    right: auto !important;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4px;
    height: 4px;
    background: #ff0000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.timeline-dot {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.5);
    position: relative;
    margin: 0;
    padding: 0;
}

.timeline-dot.dot-animated {
    opacity: 1;
    transform: scale(1);
    animation: dotPulse 0.6s ease forwards;
}

@keyframes dotPulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.timeline-content {
    width: 45%;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
    text-align: right;
    padding-right: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding-left: 40px;
}

.timeline-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-card::before {
    right: -30px;
    border-left-color: white;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-card::before {
    left: -30px;
    border-right-color: white;
    transform: translateY(-50%);
}

.timeline-year {
    color: #2563eb;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.timeline-title {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-text {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.timeline-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.stat-badge {
    background: #2563eb;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline-progress-line {
        left: 30px;
        transform: none;
    }
    
    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        text-align: left !important;
        padding-left: 20px !important;
        padding-right: 0 !important;
    }
    
    .timeline-card::before {
        left: -15px !important;
        right: auto !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }
    
    .timeline-item {
        margin-bottom: 60px;
    }
    
    .timeline-dot {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .timeline-year {
        font-size: 2rem;
    }
    
    .timeline-title {
        font-size: 1.3rem;
    }
}

/* Neutralize legacy odd/even offsets that pushed markers left/right */
.timeline-item:nth-child(odd) .timeline-marker,
.timeline-item:nth-child(even) .timeline-marker {
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
}

/* Custom Scrollbar Styles */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 4px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

::-webkit-scrollbar-corner {
    background: #f1f1f1;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #2563eb #f1f1f1;
}

/* Modal scrollbar specific styles */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

/* Dropdown menu scrollbar */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

/* Mega menu scrollbar */
.mega-menu::-webkit-scrollbar {
    width: 6px;
}

.mega-menu::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 3px;
}

.mega-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 3px;
}

.mega-menu::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

/* 右侧悬浮联系按钮样式 */
.floating-contact-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.floating-btn.email-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.floating-btn.email-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.floating-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.floating-btn.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.floating-btn.back-to-top-btn {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    display: none; /* 默认隐藏 */
}

.floating-btn.back-to-top-btn:hover {
    background: linear-gradient(135deg, #4b5563, #374151);
    box-shadow: 0 6px 20px rgba(107, 114, 128, 0.4);
}

.floating-btn.back-to-top-btn.show {
    display: flex;
}

.btn-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.btn-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.floating-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .floating-contact-buttons {
        right: 15px;
        bottom: 20px;
        top: auto;
        transform: none;
        z-index: 9999;
        display: block !important;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .btn-tooltip {
        display: none;
    }
    
    /* 确保移动端按钮组正确显示 */
    .floating-btn-group {
        display: flex !important;
        flex-direction: column;
        gap: 15px;
    }
    
    /* 移动端轮播优化 */
    .new-arrivals-section {
        padding: 30px 0;
    }
    
    .exhibition-section {
        padding: 30px 0;
    }
    
    /* 移动端按钮间距 - 确保不重叠 */
    .floating-btn-group {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    /* 确保按钮之间有足够间距 */
    .floating-btn + .floating-btn {
        margin-top: 0;
    }
    
    /* 移动端图片大小调整 */
    .img-fluid {
        max-width: 100%;
        height: auto;
    }
    
    /* 轮播图片移动端适配 */
    .carousel-item img,
    .new-arrivals-image img,
    .exhibition-image img {
        height: 200px;
        object-fit: cover;
    }
    
    /* 产品图片移动端适配 */
    .product-item img,
    .factory-item img,
    .mega-menu-item img {
        height: 150px;
        object-fit: cover;
    }
    
    /* 英雄区域图片移动端适配 */
    .hero-section {
        height: 80vh !important;
        min-height: 500px;
        padding: 40px 0;
    }
    
    .hero-section .container {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        /* gap: 15px; */
        align-items: center;
    }
    
    .hero-buttons .btn {
        /* width: 200px; */
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .single-image-carousel .carousel-slide img {
        height: 300px;
    }
    
    .single-image-carousel:active {
        cursor: grabbing;
    }
    
    .carousel-container {
        overflow: hidden;
        border-radius: 10px;
    }
    
    .carousel-slide {
        transition: transform 0.3s ease;
    }
    
    /* 数据卡片两列布局 */
    .capability-stats .col-6 {
        flex: none;
        max-width: none;
    }
    
    .stat-card {
        text-align: center;
        padding: 20px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    /* 数据展示部分 - 两列两行布局 */
    /* .capability-stats .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    } */
    
    .capability-stats .col-6 {
        flex: none;
        max-width: none;
    }
    
    /* Our Product Categories移动端两列布局 */
    .product-categories-section .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .product-categories-section .col-lg-4,
    .product-categories-section .col-md-6 {
        flex: none;
        max-width: none;
    }
    
    .product-category-card {
        text-align: center;
        padding: 20px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-bottom: 20px;
    }
    
    .product-category-card img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    
    .product-category-card h5 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .product-category-card p {
        font-size: 12px;
        color: #666;
    }
    
    /* 产品部分 - 两列布局 */
    .product-item,
    .factory-item {
        flex: 0 0 50%;
        /* max-width: 50%; */
        margin-bottom: 20px;
    }
    
    /* 健身房方案部分 - 两列布局 */
    .solution-card,
    .process-step {
        flex: 0 0 50%;
        /* max-width: 50%;   */
        margin-bottom: 20px;
    }
    
    /* Our Gym Projects部分 - 3*3布局 */
    .gym-projects-section .row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 15px;
    }
    
    .gym-projects-section .col-lg-4 {
        flex: none;
        max-width: none;
    }
    
    .gym-project-card {
        text-align: center;
        padding: 15px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-bottom: 20px;
    }
    
    .gym-project-card img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    
    .gym-project-card h5 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .gym-project-card p {
        font-size: 12px;
        color: #666;
    }
    
    /* Our Gym Projects部分 - 移动端布局 */
    .gym-projects-section .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .gym-projects-section .col-lg-4 {
        flex: none;
        max-width: none;
    }
    
    /* Who we serve部分 - 两列布局并居中 */
    .who-we-serve-section .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        justify-items: center;
    }
    
    .who-we-serve-section .col-md-6 {
        flex: none;
        max-width: none;
        text-align: center;
    }
    
    .who-we-serve-card {
        text-align: center;
        padding: 20px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-bottom: 20px;
    }
    
    .who-we-serve-card img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    
    .who-we-serve-card h5 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .who-we-serve-card p {
        font-size: 12px;
        color: #666;
    }
    
    /* HAPPY CLIENTS部分 - 两列布局 */
    .testimonials-section .row {
        display: grid;
        /* grid-template-columns: 1fr 1fr; */
        /* gap: 15px; */
    }
    
    .testimonials-section .col-lg-4 {
        flex: none;
        max-width: none;
    }
    
    .testimonial-card {
        text-align: center;
        padding: 20px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-bottom: 20px;
    }
    
    .testimonial-card .testimonial-content {
        text-align: center;
    }
    
    .testimonial-card .testimonial-author {
        justify-content: center;
        text-align: center;
    }
    
    /* 国家卡片双列布局 */
    .countries-section .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .countries-section .col-md-6 {
        flex: none;
        max-width: none;
    }
    
    .country-card {
        text-align: center;
        padding: 15px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-bottom: 15px;
    }
    
    .country-card img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-bottom: 10px;
    }
    
    .country-card h6 {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .country-card p {
        font-size: 10px;
        color: #666;
    }
    
    /* Partner with Industry Leaders按钮字体缩小 */
    .contact-button {
        font-size: 0.9rem;
        padding: 12px 30px;
    }
    
    /* 展会部分轮播滑动效果 */
    .exhibition-carousel-container {
        cursor: grab;
        user-select: none;
    }
    
    .exhibition-carousel-container:active {
        cursor: grabbing;
    }
    
    /* 通用移动端间距调整 */
    .section {
        padding: 30px 0 !important;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* --- New Arrivals: normalize layout to match standalone demo (avoid width conflicts) --- */
.new-arrivals-track { width: auto !important; }
.new-arrivals-slide { width: auto !important; flex: 0 0 33.333% !important; padding: 6px; }
@media (max-width: 768px) {
    .new-arrivals-slide { flex: 0 0 50% !important; }
}

/* 动画效果 */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-btn {
    animation: float 3s ease-in-out infinite;
}

.floating-btn:nth-child(2) {
    animation-delay: 1.5s;
}

