.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.cta-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../images/services/pattern-bg.svg') center/cover;
    opacity: 0.1;
}

.cta-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: #ffd700 !important;
    padding: 2rem !important;
}

.cta-card h2,
.cta-card p,
.cta-card .achievement-label {
    color: #000000 !important;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.achievement-item {
    padding: 1.5rem;
    text-align: center;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(var(--bs-primary-rgb), 0.1);
}

.achievement-value {
    font-size: 1.75rem;
    margin: 1rem 0 0.5rem;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.achievement-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons .btn {
    transition: all 0.3s ease;
    color: #000000 !important;
    background: transparent;
    border: 2px solid #000000;
}

.cta-buttons .btn:hover {
    background: #ffffff !important;
    color: #000000 !important;
    border-color: #000000;
}

.cta-buttons .btn i {
    color: #000000 !important;
}

.cta-buttons .btn:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}