/* ==================== UNIVERSAL CTA SECTION ==================== */
.cta-universal {
    padding: var(--spacing-3xl) 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Background Image */
.cta-universal .cta-background-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-universal .cta-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gradient Overlay */
.cta-universal .cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.95) 0%, 
        rgba(139, 92, 246, 0.95) 100%);
    z-index: 1;
}

.cta-universal .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-universal h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.cta-universal p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-btn i {
    font-size: 1.25rem;
}

/* Primary Button (for CTA) - Match Landing Page Style */
.cta-universal .btn-primary.cta-btn {
    background: var(--white);
    color: var(--primary-color);
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 
                0 4px 12px rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transform: none;
}

/* Custom gradient overlay for CTA button (not the global ripple effect) */
.cta-universal .btn-primary.cta-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
}

.cta-universal .btn-primary.cta-btn span,
.cta-universal .btn-primary.cta-btn i {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.cta-universal .btn-primary.cta-btn:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25), 
                0 6px 18px rgba(255, 255, 255, 0.4);
}

.cta-universal .btn-primary.cta-btn:hover span,
.cta-universal .btn-primary.cta-btn:hover i {
    color: var(--white);
}

.cta-universal .btn-primary.cta-btn:hover::after {
    opacity: 1;
}

.cta-universal .btn-primary.cta-btn:active {
    transform: translateY(-1px) scale(1.02) !important;
}

/* Secondary Button (for CTA) */
.cta-universal .btn-secondary.cta-btn {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transform: none;
}

.cta-universal .btn-secondary.cta-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px) !important;
}

.cta-universal .btn-secondary.cta-btn:active {
    transform: translateY(0) !important;
}

/* Button Glow Effect - Disabled for CTA buttons */
.cta-universal .cta-btn .btn-glow {
    display: none !important;
}

/* Disable global.css ripple effect for CTA buttons */
.cta-universal .btn-primary.cta-btn::before,
.cta-universal .btn-secondary.cta-btn::before {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Override global.css .btn-primary:hover .btn-glow */
.cta-universal .btn-primary.cta-btn:hover .btn-glow,
.cta-universal .btn-secondary.cta-btn:hover .btn-glow {
    display: none !important;
    opacity: 0 !important;
}

/* CTA Guarantee Section */
.cta-container {
    margin-top: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    flex-wrap: wrap;
}

.cta-guarantee {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-guarantee i {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-universal {
        padding: 60px 0;
    }

    .cta-universal h2 {
        font-size: 2rem;
    }

    .cta-universal p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-universal h2 {
        font-size: 1.75rem;
    }

    .cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

