.process-header {
    margin-top: 10px;
    padding: 120px 0 100px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(223,34,41,0.4));
    z-index: 1;
}

.process-header .container {
    position: relative;
    z-index: 2;
}

.process-header .header-content {
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.process-header .header-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
    position: relative;
    padding: 0 15px;
}

.process-header .header-subtitle::before,
.process-header .header-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: white;
    opacity: 0.5;
}

.process-header .header-subtitle::before {
    left: -30px;
}

.process-header .header-subtitle::after {
    right: -30px;
}

.process-header .header-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.process-header .header-title .highlight {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.process-header .header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.process-header .header-divider span {
    height: 2px;
    background: white;
}

.process-header .header-divider span:nth-child(1),
.process-header .header-divider span:nth-child(3) {
    width: 60px;
    opacity: 0.3;
}

.process-header .header-divider span:nth-child(2) {
    width: 30px;
    opacity: 0.7;
}

.process-header .header-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Process Timeline Section */
.process-timeline-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff, var(--pink-light));
    position: relative;
}

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

.process-step-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.process-step-wrapper:last-child {
    margin-bottom: 0;
}

.process-step-card {
    display: flex;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(223, 34, 41, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(223, 34, 41, 0.1);
    border-color: var(--crimson);
}

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--crimson), var(--orchid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(223, 34, 41, 0.3);
    z-index: 3;
}

.step-image {
    width: 300px;
    flex-shrink: 0;
    overflow: hidden;
}

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

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

.step-content {
    flex: 1;
    padding: 40px;
}

.step-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--crimson);
    margin-bottom: 15px;
}

.step-content p {
    color: var(--dark-soft);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-soft);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.step-features li img {
    width: 18px;
    height: 18px;
}

.step-connector {
    position: absolute;
    bottom: -40px;
    left: 150px;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--crimson), var(--orchid));
    z-index: 1;
}

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

/* Process Flow Visualization */
.process-flow-section {
    padding: 40px 0 60px;
    background: white;
}

.flow-visual {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 60px;
}

.flow-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--crimson) 20%, var(--orchid) 50%, var(--crimson) 80%, transparent);
    transform: translateY(-50%);
}

.flow-dots {
    position: relative;
    width: 100%;
    height: 100%;
}

.flow-dot {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--crimson);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.flow-dot:nth-child(1) { left: 10%; animation-delay: 0s; }
.flow-dot:nth-child(2) { left: 30%; animation-delay: 0.4s; }
.flow-dot:nth-child(3) { left: 50%; animation-delay: 0.8s; }
.flow-dot:nth-child(4) { left: 70%; animation-delay: 1.2s; }
.flow-dot:nth-child(5) { left: 90%; animation-delay: 1.6s; }

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.7;
    }
}

/* Factory Tour Section */
.factory-tour-section {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, var(--pink-light), #ffffff);
}

.tour-card {
    background: linear-gradient(135deg, var(--dark-main), #1a1a1a);
    padding: 60px;
    border-radius: 30px;
    color: white;
}

.tour-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.tour-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.tour-btn {
    background: white;
    color: var(--crimson);
    border: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tour-btn img {
    width: 20px;
    height: 20px;
    transition: filter 0.3s ease;
}

.tour-btn:hover {
    background: var(--crimson);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tour-btn:hover img {
    filter: brightness(0) invert(1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .process-step-card {
        flex-direction: column;
    }
    
    .step-image {
        width: 100%;
        height: 250px;
    }
    
    .step-number {
        top: -15px;
        left: -15px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-connector {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .process-header {
        padding: 100px 0 80px;
    }
    
    .step-content {
        padding: 30px;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
    
    .tour-card {
        padding: 40px 30px;
        text-align: center;
    }
    
    .tour-card .col-lg-4 {
        text-align: center !important;
        margin-top: 20px;
    }
    
    .tour-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .process-header {
        margin-top: 65px;
        padding: 80px 0 60px;
    }
    
    .process-header .header-subtitle::before,
    .process-header .header-subtitle::after {
        display: none;
    }
    
    .process-header .header-title {
        font-size: 2rem;
    }
    
    .step-image {
        height: 200px;
    }
    
    .step-content {
        padding: 25px;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-features li {
        font-size: 0.9rem;
    }
    
    .flow-visual {
        display: none;
    }
}