/* Mobile-optimized CTA Section Styles */

/* Base CTA section enhancements */
.final-cta-section {
    position: relative;
    padding: 6rem 0;
    background-image: url('https://res.cloudinary.com/dcuwsbzv5/image/upload/v1754049427/gold-coins-background_v55bcs.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    text-align: center;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(12, 36, 64, 0.92), rgba(12, 36, 64, 0.85));
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-tagline {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--light-gray);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    color: var(--gold-accent);
    font-size: 1.5rem;
}

.feature-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.trust-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.trust-badge span {
    font-size: 0.9rem;
    color: var(--light-gray);
    font-weight: 500;
}

/* Responsive Mobile Styles */
@media (max-width: 992px) {
    .final-cta-section {
        padding: 5rem 0;
    }
    
    .cta-features {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .cta-tagline {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .cta-feature {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-lg {
        width: 100%;
        max-width: 300px;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .final-cta-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-tagline {
        font-size: 1rem;
    }
}
