/* Compact CTA Section Styles - Colorful for glassmorphism */
.compact-cta {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #E8F4FD 0%, #F0E8FD 50%, #E8FDF8 100%);
}

.compact-cta-wrapper {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 145, 242, 0.9) 0%, rgba(63, 234, 194, 0.85) 50%, rgba(63, 234, 194, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 60px;
    overflow: hidden;
    box-shadow: 0 20px 60px -20px rgba(14, 165, 233, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Background gradient effect */
.cta-bg-gradient {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.cta-bg-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: white;
    opacity: 0.05;
    transform: rotate(45deg);
}

/* Content */
.compact-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.compact-cta-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.compact-cta-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.5;
    font-weight: 400;
}

.compact-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: white;
    color: #0F91F2;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
}

.compact-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

/* Alternative Dark Theme */
.compact-cta.dark {
    background: #0a0a0a;
}

.compact-cta.dark .compact-cta-wrapper {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.compact-cta.dark .compact-cta-btn {
    background: #0F91F2;
    color: white;
}

.compact-cta.dark .compact-cta-btn:hover {
    background: #0284c7;
}

/* Minimal Version */
.compact-cta.minimal .compact-cta-wrapper {
    padding: 48px;
    background: linear-gradient(90deg, #0F91F2 0%, #3FEAC2 100%);
}

.compact-cta.minimal .compact-cta-title {
    font-size: clamp(24px, 3vw, 36px);
}

.compact-cta.minimal .compact-cta-subtitle {
    font-size: 18px;
    margin-bottom: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .compact-cta {
        padding: 60px 0;
    }
    
    .compact-cta-wrapper {
        padding: 40px 24px;
        border-radius: 16px;
    }
    
    .compact-cta-title {
        font-size: 28px;
    }
    
    .compact-cta-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .compact-cta-subtitle br {
        display: none;
    }
    
    .compact-cta-btn {
        padding: 14px 32px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .compact-cta {
        padding: 40px 0;
    }
    
    .compact-cta-wrapper {
        padding: 32px 20px;
    }
    
    .compact-cta-title {
        font-size: 24px;
    }
    
    .compact-cta.minimal .compact-cta-wrapper {
        padding: 32px 20px;
    }
}

/* Animation */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.compact-cta-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    animation: shimmer 3s infinite;
}