.custom-services-page {
    width: 100%;
}

.hero-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-description {
    margin-bottom: 35px;
}

.hero-description p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.hero-description p:last-child {
    margin-bottom: 0;
}

.hero-cta {
    display: inline-block;
    background-color: #2563eb;
    color: var(--bg-white);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    align-self: flex-start;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.hero-cta:hover {
    background-color: #1d4ed8;
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.hero-right {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.customize-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.customize-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}

.customize-tab {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-dark);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.customize-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.customize-tab.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

.customize-content {
    position: relative;
}

.customize-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    animation: fadeIn 0.5s ease;
}

.customize-panel.active {
    display: grid;
}

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

.panel-text {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.panel-text p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.panel-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.panel-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

.production-process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 15px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--bg-white);
    transition: var(--transition);
}

.process-step:hover .process-icon {
    transform: scale(1.1);
}

.process-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.process-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.factory-show-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.factory-carousel {
    position: relative;
    margin-top: 50px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

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

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
    z-index: 10;
}

.carousel-arrow:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

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

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background-color: var(--primary-color);
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 40px;
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .process-step {
        padding: 25px 10px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-right {
        order: -1;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .customize-panel {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .panel-image {
        order: -1;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description p {
        font-size: 15px;
    }
    
    .customize-section,
    .production-process-section,
    .factory-show-section {
        padding: 60px 0;
    }
    
    .customize-tabs {
        gap: 10px;
    }
    
    .customize-tab {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .panel-text {
        padding: 20px;
    }
    
    .panel-text p {
        font-size: 16px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .process-step {
        flex-direction: row;
        text-align: left;
        padding: 20px;
        gap: 20px;
    }
    
    .process-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .process-number {
        top: 10px;
        right: 10px;
    }
    
    .carousel-slide img {
        height: 350px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-cta {
        padding: 14px 32px;
        font-size: 15px;
    }
    
    .customize-tabs {
        justify-content: flex-start;
    }
    
    .customize-tab {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .carousel-slide img {
        height: 250px;
    }
}
