/* CTA Section - Business Process Outsourcing */
.bpo-page .service-cta-section {
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    text-align: center;
}

.bpo-page .service-cta-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.bpo-page .service-cta-section .cta-wrapper h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.bpo-page .service-cta-section .cta-wrapper p {
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.bpo-page .service-cta-section .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    background: var(--color-secondary);
    color: var(--color-primary);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-card-md);
}

.bpo-page .service-cta-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-strong);
}

.bpo-page .service-cta-section .cta-button i {
    font-size: 0.875rem;
    transition: var(--transition-base);
}

.bpo-page .service-cta-section .cta-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .bpo-page .service-cta-section {
        padding: 2rem 1.25rem;
    }

    .bpo-page .service-cta-section .cta-wrapper h2 {
        font-size: 1.5rem;
    }

    .bpo-page .service-cta-section .cta-wrapper p {
        font-size: 0.9375rem;
    }

    .bpo-page .service-cta-section .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .bpo-page .service-cta-section {
        padding: 1.75rem 1rem;
    }

    .bpo-page .service-cta-section .cta-wrapper h2 {
        font-size: 1.375rem;
    }

    .bpo-page .service-cta-section .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
}