@charset "utf-8";
.gallery-section {
    margin: 2rem 0;
    position: relative;
}

.gallery-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.gallery-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
/* 导航按钮 */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* 指示器 */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicator.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

.brand-hero {
     background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                url('https://www.gambiersilk.com/images/22.jpg');
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.brand-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.brand-desc {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.brand-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary);
}

.feature-item span {
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* 区块标题 */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* 定制服务 */
.custom-service {
    background: var(--background-alt);
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.service-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.service-step h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-step p {
    color: var(--text-medium);
    line-height: 1.6;
}