/* ========== YENİ MODERN HERO SECTION - 2024 ========== */

.ultra-hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #0f0f23 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 50px 0;
}

/* Background Effects */
.hero-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(124, 77, 220, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 94, 77, 0.1) 0%, transparent 50%);
    animation: particleMove 15s infinite ease-in-out;
}

@keyframes particleMove {
    0%, 100% { 
        background: 
            radial-gradient(circle at 25% 25%, rgba(124, 77, 220, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(255, 94, 77, 0.1) 0%, transparent 50%);
    }
    50% { 
        background: 
            radial-gradient(circle at 75% 25%, rgba(124, 77, 220, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 25% 75%, rgba(255, 94, 77, 0.1) 0%, transparent 50%);
    }
}

.hero-geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124, 77, 220, 0.2), rgba(255, 94, 77, 0.2));
    animation: shapeFloat 20s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    right: 15%;
    animation-delay: 7s;
}

@keyframes shapeFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.3;
    }
}

/* Content Area */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text-content {
    color: white;
    max-width: 600px;
    margin-right: 2rem;
}

/* Premium Badge */
.hero-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(124, 77, 220, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    color: #fbbf24;
    font-size: 1.2rem;
}

.badge-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Main Title */
.hero-main-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title-line-1 {
    display: block;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
}

.title-line-2 {
    display: block;
}

.gradient-text-advanced {
    background: linear-gradient(135deg, #7c4ddc 0%, #ff5e4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Feature Tags */
.hero-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.feature-tag i {
    color: #10b981;
}

/* Action Buttons */
.hero-action-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary-premium {
    background: linear-gradient(135deg, #7c4ddc 0%, #ff5e4d 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(124, 77, 220, 0.3);
}

.btn-secondary-premium {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(124, 77, 220, 0.4);
}

/* Stats */
.hero-stats-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #7c4ddc;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Visual Content */
.hero-visual-content {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-main {
    position: relative;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(124, 77, 220, 0.1), rgba(255, 94, 77, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: visualPulse 4s infinite ease-in-out;
}

@keyframes visualPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 30px rgba(124, 77, 220, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(124, 77, 220, 0.5);
    }
}

.visual-icon {
    font-size: 4rem;
    color: #7c4ddc;
    animation: iconRotate 8s infinite linear;
}

@keyframes iconRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========== MOBİL RESPONSİVE - ÇAKIŞMA TEMİZLENDİ ========== */
@media (max-width: 768px) {
    .ultra-hero-section {
        min-height: 70vh !important;
        padding: 70px 0 30px 0 !important;
        overflow-x: hidden !important;
    }
    
    .hero-content-wrapper {
        padding: 0 15px !important;
        max-width: 100% !important;
    }
    
    .hero-content-wrapper .row {
        flex-direction: column !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .hero-text-content {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 15px 0 !important;
        width: 100% !important;
    }
    
    .hero-main-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
        opacity: 0.9 !important;
        padding: 0 10px !important;
    }
    
    .hero-premium-badge {
        padding: 8px 16px !important;
        font-size: 0.75rem !important;
        margin-bottom: 15px !important;
        border-radius: 20px !important;
    }
    
    .hero-feature-tags {
        justify-content: center !important;
        gap: 6px !important;
        margin-bottom: 15px !important;
        flex-wrap: wrap !important;
        padding: 0 10px !important;
    }
    
    .feature-tag {
        font-size: 0.7rem !important;
        padding: 4px 8px !important;
        border-radius: 12px !important;
        white-space: nowrap !important;
    }
    
    .hero-action-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
        margin-bottom: 15px !important;
        width: 100% !important;
        padding: 0 10px !important;
    }
    
    .btn-premium {
        width: 100% !important;
        max-width: 260px !important;
        justify-content: center !important;
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
        border-radius: 20px !important;
    }
    
    .hero-stats-row {
        justify-content: center !important;
        gap: 15px !important;
        flex-wrap: wrap !important;
        margin-bottom: 15px !important;
        padding: 0 10px !important;
    }
    
    .stat-item {
        text-align: center !important;
        min-width: 60px !important;
        flex: 0 0 auto !important;
    }
    
    .stat-number {
        font-size: 1.2rem !important;
        margin-bottom: 2px !important;
    }
    
    .stat-label {
        font-size: 0.7rem !important;
        opacity: 0.8 !important;
    }
    
    .hero-visual-content {
        height: 200px !important;
        padding: 10px 0 !important;
    }
    
    .hero-visual-main {
        width: 180px !important;
        height: 180px !important;
    }
    
    .visual-icon {
        font-size: 2.5rem !important;
    }
    
    /* Background effects minimum yap */
    .hero-particles,
    .hero-geometric-shapes {
        opacity: 0.1 !important;
    }
    
    /* Çakışan elementleri gizle */
    .hero-background-wrapper {
        z-index: 1 !important;
    }
    
    .hero-content-wrapper {
        z-index: 20 !important;
        position: relative !important;
    }
}

@media (max-width: 480px) {
    .ultra-hero-section {
        min-height: 60vh !important;
        padding: 60px 0 20px 0 !important;
    }
    
    .hero-content-wrapper {
        padding: 0 10px !important;
    }
    
    .hero-main-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
        margin-bottom: 10px !important;
    }
    
    .hero-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 12px !important;
        padding: 0 5px !important;
    }
    
    .hero-premium-badge {
        padding: 6px 12px !important;
        font-size: 0.7rem !important;
        margin-bottom: 12px !important;
    }
    
    .feature-tag {
        font-size: 0.65rem !important;
        padding: 3px 6px !important;
    }
    
    .btn-premium {
        max-width: 100% !important;
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
    }
    
    .hero-stats-row {
        gap: 10px !important;
        padding: 0 5px !important;
    }
    
    .stat-number {
        font-size: 1rem !important;
    }
    
    .stat-label {
        font-size: 0.65rem !important;
    }
    
    .hero-visual-content {
        height: 150px !important;
    }
    
    .hero-visual-main {
        width: 130px !important;
        height: 130px !important;
    }
    
    .visual-icon {
        font-size: 2rem !important;
    }
}