/* ========================================
   ULTRA MODERN HERO SLIDER
   Dikkat Çekici & Mobil Uyumlu
   ======================================== */

.hero-slider-modern {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #0A0E27;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
}

/* Modern Slide */
.modern-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.modern-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Visual Background */
.slide-visual {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.visual-bg {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Gradient Variations */
.gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-orange {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-pink {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
}

.float-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -50px;
    animation: float-1 20s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -40px;
    animation: float-2 15s ease-in-out infinite;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    animation: float-3 25s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.1); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(0.9); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-60%, -40%) scale(1.2); }
}

.float-line {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.line-1 {
    top: 20%;
    right: 30%;
    animation: line-float 8s ease-in-out infinite;
}

.line-2 {
    bottom: 30%;
    left: 25%;
    animation: line-float 10s ease-in-out infinite reverse;
}

@keyframes line-float {
    0%, 100% { transform: translateY(0) rotate(45deg); opacity: 0.3; }
    50% { transform: translateY(-50px) rotate(45deg); opacity: 1; }
}

/* Gradient Mesh Overlay */
.gradient-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    mix-blend-mode: overlay;
}

/* Modern Content */
.modern-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 2;
    padding: 100px 0 150px;
}

.content-left {
    animation: slideInLeft 1s ease 0.3s both;
}

.content-right {
    animation: slideInRight 1s ease 0.5s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide Number */
.slide-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 80px;
    left: 0;
    z-index: -1;
}

/* Category Badge */
.slide-category {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    animation: badge-pop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s both;
}

@keyframes badge-pop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.category-icon {
    font-size: 1.5rem;
}

.category-text {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Modern Title */
.modern-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.accent-text {
    display: block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.accent-text::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
}

/* Modern Description */
.modern-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Slide Stats */
.slide-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: stats-fade 0.8s ease 0.8s both;
}

@keyframes stats-fade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Modern Button */
.modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: white;
    color: #0A0E27;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: button-appear 0.6s ease 1s both;
}

@keyframes button-appear {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modern-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.modern-btn svg {
    transition: transform 0.3s;
}

.modern-btn:hover svg {
    transform: translateX(5px);
}

/* Visual Card */
.visual-card {
    position: relative;
    padding: 3rem;
    border-radius: 2rem;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s;
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.card-purple { background: rgba(102, 126, 234, 0.2); }
.card-orange { background: rgba(245, 87, 108, 0.2); }
.card-blue { background: rgba(79, 172, 254, 0.2); }
.card-pink { background: rgba(250, 112, 154, 0.2); }

.card-glow {
    position: absolute;
    inset: 0;
    border-radius: 2rem;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent);
    pointer-events: none;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.card-features span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

/* Modern Navigation */
.modern-slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 1.5rem 2.5rem;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.nav-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.indicator-line {
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: all 0.3s;
}

.indicator.active .indicator-line {
    width: 50px;
    background: white;
}

.indicator-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: all 0.3s;
    white-space: nowrap;
}

.indicator.active .indicator-label,
.indicator:hover .indicator-label {
    opacity: 1;
    max-width: 200px;
    color: white;
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 11;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #f093fb, #4facfe, #fa709a);
    width: 0;
    animation: progress 6s linear infinite;
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .modern-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 120px 0 180px;
    }
    
    .content-right {
        display: none;
    }
    
    .modern-title {
        font-size: 3.5rem;
    }
    
    .slide-number {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .slider-wrapper {
        height: 100vh;
    }
    
    .modern-content {
        padding: 100px 0 200px;
    }
    
    .modern-title {
        font-size: 2.5rem;
    }
    
    .slide-number {
        font-size: 4rem;
        top: 100px;
    }
    
    .slide-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-box {
        flex: 1;
        min-width: 80px;
    }
    
    .stat-num {
        font-size: 2rem;
    }
    
    .modern-slider-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        width: 90%;
        max-width: 400px;
    }
    
    .nav-indicators {
        width: 100%;
        justify-content: center;
    }
    
    .indicator-label {
        display: none;
    }
    
    .indicator {
        padding: 0.5rem;
    }
    
    .circle-1, .circle-2, .circle-3 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .modern-title {
        font-size: 2rem;
    }
    
    .modern-desc {
        font-size: 1rem;
    }
    
    .modern-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .slide-stats {
        gap: 0.75rem;
    }
    
    .stat-num {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}
