/* ================================
   AB Performance - Services CTA CSS
   Modern Clean Design
   ================================ */

.ab-performance-services-cta-section {
    background: linear-gradient(135deg, #e1303a 0%, #c72730 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative elements */
.ab-performance-services-cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ab-performance-services-cta-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ab-performance-services-cta-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ab-performance-services-cta-content {
    text-align: center;
}

.ab-performance-services-cta-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.ab-performance-services-cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ab-performance-services-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.ab-performance-services-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    color: #e1303a;
    padding: 18px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.ab-performance-services-cta-btn span {
    position: relative;
}

.ab-performance-services-cta-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.ab-performance-services-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    background-color: #1a1a1a;
    color: #ffffff;
}

.ab-performance-services-cta-btn:hover i {
    transform: translateX(4px);
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 968px) {
    .ab-performance-services-cta-section {
        padding: 80px 20px;
    }
    
    .ab-performance-services-cta-content h2 {
        font-size: 34px;
    }
    
    .ab-performance-services-cta-content p {
        font-size: 17px;
    }
}

@media (max-width: 640px) {
    .ab-performance-services-cta-section {
        padding: 70px 20px;
    }
    
    .ab-performance-services-cta-label {
        font-size: 10px;
        margin-bottom: 16px;
    }
    
    .ab-performance-services-cta-content h2 {
        font-size: 28px;
    }
    
    .ab-performance-services-cta-content p {
        font-size: 16px;
        margin-bottom: 35px;
    }
    
    .ab-performance-services-cta-btn {
        padding: 16px 32px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .ab-performance-services-cta-section {
        padding: 60px 15px;
    }
    
    .ab-performance-services-cta-section::before,
    .ab-performance-services-cta-section::after {
        display: none;
    }
    
    .ab-performance-services-cta-content h2 {
        font-size: 26px;
    }
    
    .ab-performance-services-cta-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .ab-performance-services-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
    }
}
