/* ============================================
   Section-Specific Call-to-Actions Styling
   ============================================ */

/* Features Section CTA */
.features-cta {
    margin-top: 60px;
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border: 2px solid #e9ecef;
}

.features-cta h3 {
    font-size: 32px;
    color: #1e293b;
    margin: 0 0 15px;
    font-weight: 800;
}

.features-cta p {
    font-size: 18px;
    color: #64748b;
    margin: 0 0 30px;
    line-height: 1.6;
}

.features-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.features-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
}

/* Why Choose CTA */
.why-choose-cta {
    margin-top: 50px;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.why-choose-cta h3 {
    font-size: 28px;
    color: #fff;
    margin: 0 0 15px;
    font-weight: 700;
}

.why-choose-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 25px;
}

.why-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.why-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.why-cta-btn.primary {
    background: #fff;
    color: #667eea;
}

.why-cta-btn.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.why-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.why-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Key Metrics CTA */
.key-metrics-cta {
    margin-top: 60px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.key-metrics-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: backgroundScroll 60s linear infinite;
}

@keyframes backgroundScroll {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.key-metrics-cta-content {
    position: relative;
    z-index: 1;
}

.key-metrics-cta h3 {
    font-size: 32px;
    color: #fff;
    margin: 0 0 15px;
    font-weight: 800;
}

.key-metrics-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.key-metrics-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #ffc107;
    color: #000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.key-metrics-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.6);
}

/* FAQ Section CTA */
.faq-cta {
    margin-top: 60px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 20px;
    text-align: center;
}

.faq-cta h3 {
    font-size: 32px;
    color: #fff;
    margin: 0 0 15px;
    font-weight: 800;
}

.faq-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px;
}

.faq-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.faq-cta-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.faq-cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

.faq-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.faq-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Contact Section CTA */
.contact-final-cta {
    margin-top: 60px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 20px;
    text-align: center;
}

.contact-final-cta h3 {
    font-size: 32px;
    color: #fff;
    margin: 0 0 15px;
    font-weight: 800;
}

.contact-final-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px;
}

.contact-cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.contact-cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
}

.contact-cta-feature i {
    font-size: 20px;
}

.contact-final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #fff;
    color: #10b981;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.contact-final-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-cta h3,
    .key-metrics-cta h3,
    .faq-cta h3,
    .contact-final-cta h3 {
        font-size: 24px;
    }

    .features-cta p,
    .key-metrics-cta p,
    .faq-cta p,
    .contact-final-cta p {
        font-size: 16px;
    }

    .why-cta-buttons,
    .faq-cta-buttons,
    .contact-cta-features {
        flex-direction: column;
        gap: 15px;
    }

    .features-cta-btn,
    .key-metrics-cta-btn,
    .faq-cta-btn,
    .contact-final-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .features-cta,
    .why-choose-cta,
    .key-metrics-cta,
    .faq-cta,
    .contact-final-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
}
