/**
 * ULTRA MODERN HERO SECTION - 2026
 * Mükemmel Animasyonlar, Particles, Glassmorphism
 */

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION - GRADIENT + ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

.simple-hero {
    position: relative;
    min-height: 700px;
    background: linear-gradient(135deg, 
        #1a5f56 0%, 
        #2A6860 25%, 
        #358275 50%, 
        #64A095 75%, 
        #7DB5A8 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6rem 0;
}

/* Animated Gradient Background */
.simple-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(255,255,255,0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(100,160,149,0.2) 0%, transparent 50%);
    animation: rotate-bg 30s linear infinite;
}

@keyframes rotate-bg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Floating Shapes */
.simple-hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float-shape 20s ease-in-out infinite;
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, 80px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 40px) scale(0.9);
    }
}

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

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 15s ease-in-out infinite;
}

@keyframes particle-float {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }
    10% {
        opacity: 0.6;
        transform: translate(0, 0) scale(1);
    }
    90% {
        opacity: 0.6;
        transform: translate(var(--tx), var(--ty)) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0);
    }
}

.particle:nth-child(1) { left: 10%; top: 20%; --tx: 100px; --ty: -150px; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; top: 60%; --tx: -80px; --ty: -120px; animation-delay: 2s; animation-duration: 14s; }
.particle:nth-child(3) { left: 30%; top: 30%; --tx: 120px; --ty: 100px; animation-delay: 1s; animation-duration: 13s; }
.particle:nth-child(4) { left: 50%; top: 70%; --tx: -90px; --ty: -130px; animation-delay: 3s; animation-duration: 15s; }
.particle:nth-child(5) { left: 70%; top: 40%; --tx: 110px; --ty: -140px; animation-delay: 1.5s; animation-duration: 11s; }
.particle:nth-child(6) { left: 80%; top: 80%; --tx: -100px; --ty: -110px; animation-delay: 2.5s; animation-duration: 13s; }
.particle:nth-child(7) { left: 15%; top: 80%; --tx: 130px; --ty: -100px; animation-delay: 0.5s; animation-duration: 14s; }
.particle:nth-child(8) { left: 85%; top: 25%; --tx: -120px; --ty: 120px; animation-delay: 3.5s; animation-duration: 12s; }

/* ═══════════════════════════════════════════════════════════════
   CONTENT - GLASSMORPHISM
   ═══════════════════════════════════════════════════════════════ */

.simple-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

/* Badge */
.hero-badge-simple {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    animation: fadeInDown 0.8s ease, float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Title */
.simple-hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.2),
        0 8px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.04em;
    animation: fadeInUp 0.8s ease 0.2s both, glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        text-shadow: 
            0 2px 4px rgba(0,0,0,0.2),
            0 8px 20px rgba(0,0,0,0.3);
    }
    50% {
        text-shadow: 
            0 2px 4px rgba(0,0,0,0.2),
            0 8px 20px rgba(0,0,0,0.3),
            0 0 30px rgba(255,255,255,0.3);
    }
}

/* Subtitle */
.simple-hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 15px rgba(0,0,0,0.25);
    letter-spacing: -0.01em;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Description */
.simple-hero-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS - MODERN WITH EFFECTS
   ═══════════════════════════════════════════════════════════════ */

.simple-hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.simple-btn {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

/* Ripple Effect */
.simple-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.simple-btn:active::before {
    width: 400px;
    height: 400px;
    transition: width 0.1s ease, height 0.1s ease;
}

/* Button Content */
.simple-btn span,
.simple-btn i {
    position: relative;
    z-index: 1;
}

.simple-btn i {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.simple-btn:hover i {
    transform: translateX(8px) rotate(15deg);
}

/* Primary Button */
.simple-btn-primary {
    background: white;
    color: #358275;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.3),
        0 0 0 0 rgba(255,255,255,0.5);
    animation: pulse-shadow 3s ease-in-out infinite;
}

@keyframes pulse-shadow {
    0%, 100% {
        box-shadow: 
            0 10px 40px rgba(0,0,0,0.3),
            0 0 0 0 rgba(255,255,255,0.5);
    }
    50% {
        box-shadow: 
            0 10px 40px rgba(0,0,0,0.3),
            0 0 0 10px rgba(255,255,255,0);
    }
}

.simple-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.4),
        0 0 30px rgba(255,255,255,0.3);
    color: #2A6860;
}

.simple-btn-primary:active {
    transform: translateY(-2px) scale(1.02);
}

/* Outline Button */
.simple-btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.simple-btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════════════════════════════
   BADGE - FLOATING ANIMATION
   ═══════════════════════════════════════════════════════════════ */

.hero-badge-simple {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.3);
    animation: fadeInDown 0.8s ease, float-badge 4s ease-in-out infinite;
}

.hero-badge-simple i {
    animation: spin-star 10s linear infinite;
}

@keyframes spin-star {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY - ANIMATED
   ═══════════════════════════════════════════════════════════════ */

.simple-hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(3rem, 9vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    color: white;
    margin-bottom: 1.25rem;
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.2),
        0 8px 25px rgba(0,0,0,0.3),
        0 0 60px rgba(255,255,255,0.2);
    letter-spacing: -0.04em;
    animation: fadeInUp 0.8s ease 0.3s both, glow-text 5s ease-in-out infinite;
    background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0.9) 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: white;
    background-clip: text;
}

@keyframes glow-text {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(255,255,255,0.5));
    }
}

.simple-hero-subtitle {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.75rem;
    text-shadow: 0 2px 15px rgba(0,0,0,0.25);
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.simple-hero-description {
    font-size: clamp(1.125rem, 2.2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease 0.7s both;
}

/* ═══════════════════════════════════════════════════════════════
   STATS - GLASSMORPHISM CARDS
   ═══════════════════════════════════════════════════════════════ */

.simple-hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease 1s both;
}

.simple-stat {
    text-align: center;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    box-shadow: 
        0 8px 30px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 160px;
}

.simple-stat:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 15px 45px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.4);
}

.simple-stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
    animation: count-up 2s ease forwards;
}

@keyframes count-up {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.simple-stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════════════════════════
   FEATURE BOXES
   ═══════════════════════════════════════════════════════════════ */

.feature-box {
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: white;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(53,130,117,0.15);
    border-color: #64A095;
}

.feature-box i {
    color: #358275;
    transition: all 0.3s ease;
}

.feature-box:hover i {
    transform: scale(1.15) rotate(5deg);
    color: #64A095;
}

.feature-box h4 {
    font-weight: 700;
    color: #2A6860;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.feature-box p {
    margin-bottom: 0;
    color: #6B7280;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .simple-hero {
        min-height: 550px;
        padding: 4rem 0;
    }
    
    .simple-hero-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .simple-hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .simple-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .simple-hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .simple-hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }
    
    .simple-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .simple-hero-stats {
        gap: 1rem;
    }
    
    .simple-stat {
        padding: 1.5rem 1.5rem;
        min-width: 130px;
    }
    
    .simple-stat-number {
        font-size: 2rem;
    }
    
    .simple-stat-label {
        font-size: 0.8125rem;
    }
}

@media (max-width: 576px) {
    .simple-hero-stats {
        flex-direction: column;
    }
    
    .simple-stat {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL INDICATOR
   ═══════════════════════════════════════════════════════════════ */

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce-scroll 2s ease-in-out infinite;
}

@keyframes bounce-scroll {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-indicator i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
}
