/* ========================================
   Explore CTA Section - Universal Styling
   ======================================== */

.explore-cta-wrapper {
    width: 100%;
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    padding: 0;
    margin: 80px 0 0 0;
    position: relative;
    overflow: hidden;
}

.explore-cta-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(52, 211, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.explore-cta {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

/* CTA Content */
.cta-content {
    text-align: center;
    margin-bottom: 60px;
}

.lens-cta h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #34d399 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.lens-cta p {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 18px 48px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(16, 185, 129, 0.3),
        0 0 0 0 rgba(52, 211, 153, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(16, 185, 129, 0.4),
        0 0 0 8px rgba(52, 211, 153, 0.1);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button i {
    font-size: 1.25rem;
    transition: transform 0.4s ease;
}

.cta-button:hover i {
    transform: translateY(-4px);
}

/* Mount Systems Badges */
.mount-systems {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    align-items: center;
    padding: 40px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.system-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.system-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.system-badge:hover {
    transform: translateY(-2px);
    border-color: currentColor;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.system-badge:hover::before {
    opacity: 1;
}

/* Brand-Specific Badge Colors */
.system-badge.sony {
    --badge-color: #34d399;
}

.system-badge.canon {
    --badge-color: #ef4444;
}

.system-badge.nikon {
    --badge-color: #fbbf24;
}

.system-badge.fuji {
    --badge-color: #8b5cf6;
}

.system-badge.mft {
    --badge-color: #3b82f6;
}

.system-badge.sony:hover {
    background: rgba(52, 211, 153, 0.15);
    border-color: #34d399;
    color: #34d399;
}

.system-badge.canon:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
    color: #ef4444;
}

.system-badge.nikon:hover {
    background: rgba(251, 191, 36, 0.15);
    border-color: #fbbf24;
    color: #fbbf24;
}

.system-badge.fuji:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.system-badge.mft:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
    color: #3b82f6;
}

/* Variant Specific Styling */
.mirrorless-cta {
    /* Mirrorless specific overrides if needed */
}

.dslr-cta {
    /* DSLR specific overrides if needed */
}

.compact-cta {
    /* Compact specific overrides if needed */
}

/* Responsive Design */
@media (max-width: 1200px) {
    .explore-cta {
        padding: 80px 30px;
    }
    
    .lens-cta h3 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .explore-cta-wrapper {
        margin: 60px 0 0 0;
    }
    
    .explore-cta {
        padding: 60px 20px;
    }
    
    .lens-cta h3 {
        font-size: 2.25rem;
    }
    
    .lens-cta p {
        font-size: 1.125rem;
        margin-bottom: 32px;
    }
    
    .cta-button {
        padding: 16px 36px;
        font-size: 1rem;
    }
    
    .mount-systems {
        gap: 12px;
        padding-top: 30px;
    }
    
    .system-badge {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .lens-cta h3 {
        font-size: 1.875rem;
    }
    
    .lens-cta p {
        font-size: 1rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
    
    .mount-systems {
        flex-direction: column;
        gap: 10px;
    }
    
    .system-badge {
        width: 100%;
        justify-content: center;
    }
}

/* Animation on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.explore-cta-wrapper.animate-in .cta-content {
    animation: fadeInUp 0.8s ease-out;
}

.explore-cta-wrapper.animate-in .mount-systems {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Additional Enhancement: Badge Icons (if using Font Awesome) */
.system-badge.sony::before {
    content: '\f030'; /* Camera icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
}

.system-badge.canon::before {
    content: '\f030';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
}

.system-badge.nikon::before {
    content: '\f030';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
}

.system-badge.fuji::before {
    content: '\f030';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
}

.system-badge.mft::before {
    content: '\f030';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .explore-cta-wrapper {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    }
}
