/* How We Work New Design */
.how-we-work-new-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.how-we-work-new-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dee2e6" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.how-we-work-new-section .container {
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-title {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Timeline */
.work-timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    width: 2px;
    height: 4rem;
    background: linear-gradient(to bottom, #007bff, #0056b3);
    transform: translateX(-50%);
    z-index: 1;
}

/* Step Content */
.step-content {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6ab8ee, #4a9fd1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Russo One', sans-serif;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.step-title {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.step-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #495057;
}

.step-features li i {
    color: #28a745;
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.step-result {
    background: linear-gradient(135deg, #e3f2fd, #f8f9ff);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #007bff;
    font-size: 0.95rem;
    color: #2c3e50;
}

/* Step Visual */
.step-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
}

.step-icon-wrapper {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #6ab8ee, #4a9fd1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(106, 184, 238, 0.3);
    transition: all 0.3s ease;
}

.step-icon-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(106, 184, 238, 0.4);
}

.step-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(106, 184, 238, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.step-icon-wrapper i {
    font-size: 6rem;
    color: white;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* CTA Section */
.cta-section {
    margin-top: 4rem;
}

.cta-card {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-card::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 1;
}

.cta-card > * {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .timeline-item:not(:last-child)::after {
        display: none;
    }
    
    .step-content {
        padding: 2rem;
    }
    
    .step-icon-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .step-icon-wrapper i {
        font-size: 3rem;
    }
    
    .cta-card {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .how-we-work-new-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.2rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    .step-icon-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .step-icon-wrapper i {
        font-size: 2.5rem;
    }
    
    .cta-card {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .step-content {
        padding: 1.25rem;
    }
    
    .step-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .step-icon-wrapper i {
        font-size: 2rem;
    }
}
