
/* Call to Action Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.cta-text {
    color: white;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-title .highlight {
    color: #ffd700;
    display: inline-block;
}

.cta-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Stats */
.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 2.5rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-stat-item {
    text-align: left;
}

.cta-stat-item .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-stat-item .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-primary {
    background-color: white;
    color: #667eea;
}

.btn-cta-primary:hover {
    background-color: #ffd700;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background-color: white;
    color: #667eea;
    transform: translateY(-2px);
}

.btn-cta-primary svg,
.btn-cta-secondary svg {
    width: 20px;
    height: 20px;
}

/* Right Image */
.cta-image {
    position: relative;
}

.cta-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 15%;
    left: -10%;
    animation-delay: 1.5s;
}

.floating-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card .card-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.floating-card .card-content {
    display: flex;
    flex-direction: column;
}

.floating-card .card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.floating-card .card-subtitle {
    font-size: 0.75rem;
    color: #667eea;
    font-weight: 600;
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Background Decoration */
.cta-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: pulse 4s ease-in-out infinite;
}

.decoration-circle.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.decoration-circle.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 10%;
    animation-delay: 1s;
}

.decoration-circle.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: -50px;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .cta-image {
        order: -1;
    }

    .floating-card.card-1 {
        right: 5%;
    }

    .floating-card.card-2 {
        left: 5%;
    }
}

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

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 1.5rem 0;
    }

    .cta-stat-item .stat-number {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .floating-card {
        padding: 1rem;
        font-size: 0.875rem;
    }

    .floating-card.card-1 {
        top: 5%;
        right: 0;
    }

    .floating-card.card-2 {
        bottom: 5%;
        left: 0;
    }

    .floating-card .card-icon {
        width: 40px;
        height: 40px;
    }

    .floating-card .card-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 1.75rem;
    }

    .cta-stat-item .stat-number {
        font-size: 1.25rem;
    }

    .cta-stat-item .stat-label {
        font-size: 0.875rem;
    }

    .floating-card {
        display: none;
    }

    .decoration-circle.circle-1 {
        width: 200px;
        height: 200px;
    }

    .decoration-circle.circle-2 {
        width: 150px;
        height: 150px;
    }

    .decoration-circle.circle-3 {
        width: 100px;
        height: 100px;
    }
}