/* Enhanced CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, #00146d 0%, #1a237e 100%);
    padding: 6rem 0;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 82, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 35, 126, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.cta-card {
    position: relative;
    background: #ffd700;
    border-radius: 20px;
    padding: 4rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: #000000;
}

.cta-card .glow-badge,
.cta-card .feature-item span,
.cta-card .btn-outline,
.cta-card .indicator span,
.cta-card i {
    color: #000000;
}

.cta-card .btn-outline {
    border-color: #000000;
}

.cta-card .btn-glow {
    background: #000000;
    color: #ffd700;
}

.cta-card .btn-glow:hover {
    background: #333333;
}

/* Floating Icons Animation */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-icons i {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    animation: floatIcon 6s infinite ease-in-out;
}

.icon-float-1 { font-size: 2rem; top: 20%; left: 10%; animation-delay: 0s; }
.icon-float-2 { font-size: 1.5rem; top: 30%; right: 15%; animation-delay: 1.5s; }
.icon-float-3 { font-size: 2.5rem; bottom: 20%; left: 15%; animation-delay: 1s; }
.icon-float-4 { font-size: 2rem; bottom: 30%; right: 10%; animation-delay: 2s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Glowing Badge */
.glow-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.glow-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2.5rem;
}

/* Feature Grid */
.features-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    text-align: center;
    color: #fff;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

/* Enhanced Buttons */
.btn-glow {
    background: linear-gradient(135deg, #0052CC 0%, #00A3BF 100%);
    border: none;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 82, 204, 0.3);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: buttonShimmer 3s infinite;
}

@keyframes buttonShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.indicator {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.indicator i {
    margin-right: 0.5rem;
    color: #ffd700;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cta-card {
        padding: 3rem 1.5rem;
    }

    .features-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .text-gradient {
        font-size: 2rem;
    }
}