/* CTA Cards and Sections */

/* CTA Card in News Grid */
.cta-card {
    background: linear-gradient(135deg, #f7931a 0%, #ff6b35 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 16px rgba(247, 147, 26, 0.3);
}

.cta-card h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.cta-card p {
    margin: 0;
    opacity: 0.95;
    font-size: 1rem;
}

.cta-card .btn {
    background: white;
    color: #f7931a;
    margin-top: 0.5rem;
}

.cta-card .btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

/* Section CTA Boxes */
.section-cta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.cta-box {
    background: white;
    border: 2px solid #f7931a;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.cta-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(247, 147, 26, 0.2);
}

.cta-box h3 {
    margin: 0 0 0.75rem;
    color: #333;
    font-size: 1.25rem;
}

.cta-box p {
    color: #666;
    margin: 0 0 1.25rem;
    line-height: 1.5;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 12px;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    color: white;
    font-size: 2rem;
    margin: 0 0 1rem;
    font-weight: 800;
}

.final-cta p {
    color: #ccc;
    font-size: 1.1rem;
    margin: 0 0 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Ad Sections */
.ad-section-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    min-height: 100px;
}

.ad-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0 0;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    min-height: 260px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-slide.active {
        grid-template-columns: 1fr;
    }
    
    .hero-ad-slot {
        display: none;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .trust-bar {
        gap: 0.5rem;
    }
    
    .trust-item {
        font-size: 0.75rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
    
    .final-cta {
        padding: 2rem 1rem;
    }
    
    .final-cta h2 {
        font-size: 1.5rem;
    }
}
