/* ============================================
   CALL TO ACTION SECTION
   Modern CTA with Gradient Background
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, #1E42B8 0%, #16348f 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    color: #fff;
}

.cta-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* CTA Buttons */
.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.cta-button-primary {
    background: #fff;
    color: #1E42B8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

/* CTA Features */
.cta-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

.cta-feature svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 991px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-container {
        padding: 0 30px;
    }

    .cta-title {
        font-size: 2.25rem;
    }

    .cta-description {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 50px 0;
    }

    .cta-container {
        padding: 0 20px;
    }

    .cta-title {
        font-size: 1.85rem;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }

    .cta-button {
        width: 100%;
        max-width: 350px;
        justify-content: center;
        padding: 16px 30px;
    }

    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .cta-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 0.95rem;
    }

    .cta-button {
        font-size: 0.95rem;
        padding: 14px 25px;
    }

    .cta-feature {
        font-size: 0.9rem;
    }
}