/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b7d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}

.cta-btn-primary:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.4);
    text-decoration: none;
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.8);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
    text-decoration: none;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-stat-item {
    text-align: center;
}

.cta-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.cta-stat-label {
    font-size: 1rem;
    opacity: 0.8;
    color: white;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-feature {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: white;
}

.cta-feature i {
    margin-right: 8px;
    font-size: 1.2rem;
    color: var(--warning-color);
}

/* Download CTA Specific */
.download-cta-section {
    background: linear-gradient(135deg, #343a40 0%, #495057 100%);
    color: white;
}

.download-preview-image {
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.download-preview-image img {
    max-width: 300px;
    width: 100%;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.download-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.download-badge {
    transition: all 0.3s ease;
}

.download-badge:hover {
    transform: translateY(-5px);
}

.download-badge img {
    height: 60px;
    width: auto;
}

.qr-code-download {
    text-align: center;
    margin-top: 2rem;
}

.qr-code-download .qr-image {
    width: 120px;
    height: 120px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    margin: 1rem auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qr-code-download .qr-image:hover {
    transform: scale(1.1);
}

.qr-code-download p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* Testimonial CTA */
.testimonial-cta {
    background: var(--light-color);
    padding: 3rem 0;
}

.testimonial-cta-content {
    text-align: center;
}

.testimonial-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.testimonial-rating {
    color: var(--warning-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Newsletter CTA */
.newsletter-cta {
    background: linear-gradient(135deg, var(--info-color) 0%, #20c997 100%);
    color: white;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-btn {
    background: white;
    color: var(--info-color);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Floating CTA Styles */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b7d);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.floating-btn:hover {
    background: linear-gradient(135deg, #c82333, #e55a6c) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.6);
    color: white !important;
    text-decoration: none;
}

.floating-btn:active {
    transform: translateY(0);
}

.floating-btn i {
    font-size: 16px;
}

/* Pulse animation for floating CTA */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(220, 53, 69, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
    }
}

/* Mobile responsive floating CTA */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .floating-btn i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .floating-cta {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-btn {
        padding: 10px 14px;
        font-size: 12px;
    }
}

/* Final CTA Stats with Icons */
.final-cta-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.cta-stat {
    text-align: center;
}

.cta-stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.cta-stat-icon i {
    font-size: 20px;
    color: white;
}

.cta-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.cta-stat .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .final-cta-stats {
        gap: 20px;
    }
    
    .cta-stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .cta-stat-icon i {
        font-size: 16px;
    }
    
    .cta-stat .stat-number {
        font-size: 1.2rem;
    }
}
