/**
 * One-Stop Service Flow - Process/Campaign Style
 * Step-by-step flow with arrows
 */

/* ============================================
   SECTION CONTAINER
   ============================================ */

.onestop-process-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #F5F7FA 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.onestop-process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* ============================================
   HEADER
   ============================================ */

.onestop-process-header {
    text-align: center;
    margin-bottom: 80px;
}

.onestop-process-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 87, 34, 0.1);
    border: 1px solid rgba(255, 87, 34, 0.3);
    border-radius: 50px;
    color: var(--primary-bright);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.onestop-process-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FF5722 0%, #FF9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.onestop-process-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   PROCESS FLOW - Horizontal Steps
   ============================================ */

.onestop-process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 80px;
    position: relative;
}

/* Connecting Line Background */
.onestop-process-flow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(255, 87, 34, 0.2) 0%, 
        rgba(255, 87, 34, 0.6) 50%, 
        rgba(255, 87, 34, 0.2) 100%
    );
    transform: translateY(-50%);
    z-index: 0;
}

/* Process Step Card */
.onestop-step {
    flex: 1;
    background: white;
    border: 2px solid rgba(255, 87, 34, 0.15);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 220px;
}

.onestop-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.05) 0%, rgba(255, 152, 0, 0.05) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.onestop-step:hover {
    transform: translateY(-10px);
    border-color: var(--primary-bright);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.25);
}

.onestop-step:hover::before {
    opacity: 1;
}

/* Step Number */
.onestop-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF5722 0%, #FF9800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.3);
    position: relative;
    z-index: 1;
}

.onestop-step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #FF5722 0%, #FF9800 100%);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    animation: pulse-number 2s ease-in-out infinite;
}

@keyframes pulse-number {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Step Icon */
.onestop-step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FF5722 0%, #FF9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

/* Step Title */
.onestop-step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1f3a;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

/* Step Description */
.onestop-step-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

/* Step Tags */
.onestop-step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.onestop-step-tag {
    padding: 5px 12px;
    background: rgba(255, 87, 34, 0.1);
    border: 1px solid rgba(255, 87, 34, 0.2);
    border-radius: 15px;
    font-size: 0.75rem;
    color: #FF5722;
    font-weight: 500;
    white-space: nowrap;
}

/* Arrow Between Steps */
.onestop-arrow {
    flex-shrink: 0;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.onestop-arrow i {
    font-size: 2.5rem;
    color: #FF5722;
    animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateX(8px);
        opacity: 1;
    }
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.onestop-benefits-wrapper {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.05) 0%, rgba(255, 152, 0, 0.05) 100%);
    border-radius: 24px;
    padding: 60px 40px;
    margin-top: 60px;
}

.onestop-benefits-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1f3a;
    margin-bottom: 50px;
}

.onestop-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.onestop-benefit-item {
    text-align: center;
}

.onestop-benefit-icon {
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid rgba(255, 87, 34, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.onestop-benefit-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #FF5722 0%, #FF9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.onestop-benefit-item:hover .onestop-benefit-icon {
    transform: scale(1.1) rotate(10deg);
    border-color: var(--primary-bright);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

.onestop-benefit-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1f3a;
    margin-bottom: 8px;
}

.onestop-benefit-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* ============================================
   CTA BUTTON
   ============================================ */

.onestop-process-cta {
    text-align: center;
    margin-top: 50px;
}

.onestop-process-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #FF5722 0%, #FF9800 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

.onestop-process-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.5);
}

.onestop-process-cta-btn i {
    transition: transform 0.4s ease;
}

.onestop-process-cta-btn:hover i {
    transform: translateX(8px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .onestop-process-flow {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .onestop-process-flow::before {
        display: none;
    }
    
    .onestop-step {
        max-width: 280px;
    }
    
    .onestop-arrow {
        width: 100%;
        height: 40px;
        transform: rotate(90deg);
    }
}

@media (max-width: 1024px) {
    .onestop-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .onestop-process-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .onestop-process-section {
        padding: 60px 0;
    }
    
    .onestop-process-header {
        margin-bottom: 50px;
    }
    
    .onestop-process-title {
        font-size: 2.2rem;
    }
    
    .onestop-process-subtitle {
        font-size: 1.1rem;
    }
    
    .onestop-process-flow {
        flex-direction: column;
        gap: 20px;
    }
    
    .onestop-step {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .onestop-arrow {
        transform: rotate(90deg);
        height: 30px;
    }
    
    .onestop-benefits-wrapper {
        padding: 40px 25px;
    }
    
    .onestop-benefits-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .onestop-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .onestop-process-title {
        font-size: 1.8rem;
    }
    
    .onestop-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .onestop-step-icon {
        font-size: 2.5rem;
    }
    
    .onestop-step-title {
        font-size: 1.1rem;
    }
    
    .onestop-benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .onestop-benefit-icon i {
        font-size: 2rem;
    }
}
