:root {
    --primary-color: #4472c4;
    --primary-dark: #2d4a8e;
    --primary-light: #6b8dd6;
    --accent-gold: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.process-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 0 auto;
}

.process-step-title {
    text-align: left;
    font-weight: 600;
    font-size: 1.8rem;
}

.process-step {
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 12px;
}

.process-step:hover {
    background: white;
}

.process-step.active {
    background: white;
}

.step-header {
    display: flex;
    align-items: center;
}

.step-number {
    background: #e0e0e0;
    color: #999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
}

.process-step.active .step-number {
    background: var(--primary-color);
    color: white;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.process-step.active .step-content h3 {
    color: var(--primary-color);
}

.step-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    transition: opacity 0.3s ease;
}

.process-step:not(.active) .step-content p {
    opacity: 0.7;
}

.process-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height:600px;
}

.step-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-image.active {
    opacity: 1;
}

.step-image img {
    max-height: 600px;
}


/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary-color);
}

.btn-white:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .process-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-images {
        order: 1;
    }

    .process-steps {
        order: 2;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

}

@media (max-width: 640px) {
    .step-content h3 {
        font-size: 1.5rem;
    }
}

.btn {
    padding: 12px 24px;
    border: 2px solid #4472C4;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #4472c4;
    color: var(--white);
}

.btn-primary:hover {
    background: #2c559d;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

/* Page Header */
.page-header {
    background: transparent;
    color: black;
    padding: 20px 0;
    text-align: left;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Platform Preview - reuse from homepage */
.bg-light-section {
    padding: 20px 0;
    background: var(--bg-light);
}

.bg-trans-section {
    padding: 20px 0;
    background: transparent;
}

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


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size:1.1rem;
    line-height: normal;
}

/* FAQ Section */
.faq-section {
    padding: 20px 0;
    background: transparent;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: var(--white);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(68, 114, 196, 0.1);
}

.faq-item.active .faq-toggle {
    background: var(--primary-color);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }

    .process-step-title {
        text-align: center;
    }
    
    .service-grid,
    .preview-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-header {
        text-align: center;
        margin-bottom: 1rem;
    }

    .warehouse-headers {
        display: none;
    }
    
    .warehouse-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
        border-bottom: 2px solid #e0e0e0;
    }
    
    .warehouse-grid:last-child {
        border-bottom: 2px solid #e0e0e0;
    }
    
    .preview-text {
        order: 2;
    }
    
    .preview-content img {
        order: 1;
    }
    
    .preview-text h2 {
        text-align: center;
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 1.5rem;
    }
}