.process-workflow {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 2rem;
    margin: 4rem 0 3rem;
    width: 100%;
    position: relative;
    overflow-x: auto;
    padding: 0 0 0 15px;
}

.process-slider {
    overflow: visible;
    transition: transform 0.5s ease;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
}

.process-slider-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: calc(100% - 2rem);
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.process-slider-arrow {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.process-slider-arrow:hover {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

.process-slider-arrow:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
    transform: scale(1);
}

.process-slider-arrow.prev {
    left: 10px;
}

.process-slider-arrow.next {
    right: 10px;
}

.process-section {
    position: relative;
    padding: 4rem 0;
    width: 100%;
}

.process-content {
    text-align: center;
    margin-bottom: 2rem;
}

.process-step {
    flex: 0 0 320px;
    max-width: 320px;
    text-align: center;
    position: relative;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.process-step::after {
    display: none;
}

.process-step h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.process-icon {
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding-top: 1.5rem;
}

.process-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.process-step:hover .process-icon img {
    transform: scale(1.1);
}

.testimonial-section {
    background-color: var(--bg-light);
    padding: 4rem 0;
    text-align: center;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.testimonial-content {
    margin-top: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-content cite {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-style: normal;
}

.testimonial-content .testimonial-company {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.5rem;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-plan {
    flex: 1 1 300px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.pricing-header {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.pricing-period {
    opacity: 0.8;
}

.pricing-body {
    padding: 2rem 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-feature {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.75rem;
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature:before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.pricing-footer {
    text-align: center;
    padding-bottom: 2rem;
}

.pricing-plan.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent-color);
}

.pricing-plan.featured .pricing-header {
    background-color: var(--accent-color);
}

.pricing-plan.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.compare-packages {
    margin-top: 4rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.service-gallery-preview {
    margin: 3rem 0;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.preview-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .preview-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-plan {
        max-width: 100%;
        width: 100%;
    }
    
    .pricing-plan.featured {
        transform: scale(1);
        order: -1;
    }
    
    .pricing-plan.featured:hover {
        transform: translateY(-10px);
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .process-workflow {
        margin: 3rem auto 2rem;
        padding: 0 0.5rem;
    }
    
    .process-slider-nav {
        width: calc(100% - 1rem);
        left: 0.5rem;
    }
}

@media (max-width: 576px) {
    .process-workflow {
        margin: 3rem auto 2rem;
        padding: 0 0.5rem;
    }
    
    .process-step {
        min-height: 250px;
        padding: 1.75rem 1.25rem;
        flex: 0 0 280px;
        max-width: 280px;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        top: -18px;
    }
    
    .process-step h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .process-step p {
        font-size: 0.85rem;
    }
    
    .process-icon img {
        width: 28px;
        height: 28px;
    }
    
    .process-slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .testimonial {
        padding: 1.75rem 1.25rem;
    }
    
    .testimonial-icon {
        width: 36px;
        height: 36px;
        top: -18px;
    }
    
    .testimonial-icon img {
        width: 18px;
        height: 18px;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
    
    .testimonial-author {
        font-size: 0.9rem;
    }
    
    .testimonial-author-title {
        font-size: 0.8rem;
    }
    
    .pricing-plan {
        padding-bottom: 1rem;
    }
    
    .pricing-header {
        padding: 1.5rem 1rem;
    }
    
    .pricing-body {
        padding: 1.5rem 1rem;
    }
    
    .pricing-feature {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .testimonials-container {
        margin-top: 2rem;
    }
    
    .pricing-container {
        margin: 2rem 0;
    }
    
    .pricing-plan {
        padding-bottom: 0.75rem;
    }
    
    .pricing-feature {
        font-size: 0.85rem;
    }
}