/* Modern Hero Styles */

/* Hero Particles Background */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-particles::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 20%;
    right: 10%;
    animation: float 20s ease-in-out infinite;
}

.hero-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 10%;
    left: 5%;
    animation: float 15s ease-in-out infinite reverse;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(204, 255, 0, 0.1);
    border: 1px solid rgba(204, 255, 0, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
    animation: slideDown 0.8s ease-out;
}

.hero-badge i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.hero-badge span {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Typing Animation */
.typed-text {
    position: relative;
    display: inline-block;
}

.typing-wrapper {
    position: relative;
    display: inline-block;
}

.typed-word {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    animation: typeWord 8s infinite;
}

.typed-word.active {
    position: relative;
}

.typed-word:nth-child(1) { animation-delay: 0s; }
.typed-word:nth-child(2) { animation-delay: 2s; }
.typed-word:nth-child(3) { animation-delay: 4s; }
.typed-word:nth-child(4) { animation-delay: 6s; }

@keyframes typeWord {
    0%, 25% { opacity: 1; transform: translateY(0); }
    27%, 100% { opacity: 0; transform: translateY(-10px); }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-top: 20px;
}

/* Enhanced Hero Buttons */
.btn-hero {
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(204, 255, 0, 0.4);
}

.btn-hero i {
    transition: transform 0.3s ease;
}

.btn-hero:hover i {
    transform: translateX(5px);
}

.btn-outline.btn-hero:hover i {
    transform: scale(1.2);
}

/* Trust Badges Enhancement */
.trust-badges {
    margin-top: 50px;
}

.trust-badge {
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(204, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.trust-badge:hover::before {
    left: 100%;
}

/* Trust Badges - Removed */
.trust-badges {
    display: none;
}

/* Client Logos - Removed */
.client-logos {
    display: none; /* Client logos kaldırıldı */
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    animation: floatHero 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(204, 255, 0, 0.3));
}

@keyframes floatHero {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-visual {
    position: relative;
    z-index: 0;
}

.hero-text {
    position: relative;
    z-index: 10;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: fadeInUp 1s ease-out 1.5s both;
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--accent-color);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-out infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

.scroll-indicator p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-image-container {
        min-height: 400px;
    }
    
    .hero-image {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
        gap: 8px;
    }
    
    .hero-badge i {
        font-size: 1rem;
    }
    
    .hero-image-container {
        min-height: 300px;
    }
    
    .hero-image {
        max-width: 350px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 0.7;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, -20px); }
    50% { transform: translate(-15px, 15px); }
    75% { transform: translate(15px, -15px); }
}
