/* Hero CTA Stilleri */
.hero-cta {
    text-align: center;
    margin: 20px 0 30px;
    padding: 20px;
    background: linear-gradient(135deg, var(--accent-color), #4CAF50);
    border-radius: 15px;
    color: white;
    transition: all 0.3s ease;
}

.hero-cta h2 {
    margin: 0 0 10px;
    font-size: 24px;
    color: white;
}

.hero-cta p {
    margin: 0 0 15px;
    font-size: 16px;
    opacity: 0.9;
    color: white;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-stat {
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Dark mode için Hero CTA */
[data-theme="dark"] .hero-cta {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #404040;
    position: relative;
}

/* Dark mode'da üst kısımda ince yeşil çizgi */
[data-theme="dark"] .hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #2E7D32);
    border-radius: 15px 15px 0 0;
}

[data-theme="dark"] .hero-stat {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .hero-stat:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

/* Mobil için Hero CTA */
@media (max-width: 768px) {
    .hero-cta {
        margin: 15px 0 25px;
        padding: 15px;
    }
    
    .hero-cta h2 {
        font-size: 20px;
    }
    
    .hero-cta p {
        font-size: 14px;
    }
    
    .hero-stats {
        gap: 10px;
    }
    
    .hero-stat {
        padding: 6px 12px;
        font-size: 12px;
    }
} 