/*
 * Modern Professional Slider Styles - ADVANCED VERSION
 * Zengin animasyonlar, 3D efektler ve dinamik tasarım
 * Datawise.fonwise.com sitesinden ilham alınarak geliştirildi
 */

/* Ana Slider Container */
.modern-hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 150px);
    max-height: 800px;
    min-height: 650px;
    overflow: hidden;
    background: #0a0e27;
    margin-top: 191px;
}

/* Animated Background Particles */
.modern-hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255,255,255,0.2), transparent),
        radial-gradient(3px 3px at 50% 50%, rgba(255,255,255,0.15), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(255,255,255,0.25), transparent),
        radial-gradient(1px 1px at 90% 60%, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 30% 80%, rgba(255,255,255,0.18), transparent);
    background-size: 300% 300%;
    animation: particleMove 25s ease-in-out infinite;
    opacity: 0.7;
    z-index: 1;
}

@keyframes particleMove {
    0%, 100% { background-position: 0% 0%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

/* Slider Items Container */
.modern-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Her Slide İçin */
.modern-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 1s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.modern-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Slide İçerikleri */
.modern-slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 3;
}

/* Sol Taraf - Metin İçeriği */
.modern-slide-text {
    flex: 1;
    max-width: 550px;
    padding-right: 40px;
}

/* Badge/Etiket - Enhanced */
.modern-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(25px);
    border-radius: 50px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15),
                inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.modern-slide-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s;
}

.modern-slide-badge:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.2));
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                inset 0 2px 4px rgba(255, 255, 255, 0.4),
                0 0 40px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.modern-slide-badge:hover::before {
    left: 100%;
}

.modern-slide-badge i {
    margin-right: 0;
    color: #fff;
    font-size: 16px;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Başlık - Enhanced */
.modern-slide-title {
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 30px;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.6),
                 0 0 120px rgba(255, 255, 255, 0.2),
                 0 0 60px rgba(102, 126, 234, 0.4);
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, rgba(255,255,255,0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(118, 75, 162, 0.6));
    }
}

.modern-slide-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, transparent);
    border-radius: 2px;
}

/* Alt Başlık - Enhanced */
.modern-slide-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    margin-bottom: 45px;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.3px;
}

/* CTA Butonları */
.modern-slide-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.modern-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.modern-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.45),
                0 0 50px rgba(102, 126, 234, 0.25);
    position: relative;
    overflow: hidden;
}

.modern-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: left 0.7s;
}

.modern-btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.6s, height 0.6s;
}

.modern-btn-primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.7),
                0 0 100px rgba(102, 126, 234, 0.5),
                inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.modern-btn-primary:hover::before {
    left: 100%;
}

.modern-btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.modern-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.modern-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Fiyat Bilgisi - Enhanced */
.modern-slide-price {
    display: inline-flex;
    flex-direction: column;
    margin-left: 35px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.modern-slide-price:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.14));
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 50px rgba(102, 126, 234, 0.3),
                inset 0 2px 10px rgba(255, 255, 255, 0.2);
}

.modern-price-amount {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-price-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Sağ Taraf - Görsel */
.modern-slide-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 550px;
    position: relative;
}

.modern-slide-visual img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.6)) brightness(1.05);
    animation: dynamicFloat 4s ease-in-out infinite, rotate3D 8s linear infinite, pulse 3s ease-in-out infinite;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.6s ease;
    transform-style: preserve-3d;
}

.modern-slide-visual:hover img {
    transform: scale(1.15) rotateY(15deg) rotateX(-5deg) translateZ(30px);
    filter: drop-shadow(0 50px 100px rgba(0, 0, 0, 0.8)) brightness(1.15) contrast(1.1);
    animation-play-state: paused;
}

/* Dynamic Float Animation */
@keyframes dynamicFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotateZ(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(15px) rotateZ(3deg);
    }
    50% {
        transform: translateY(-15px) translateX(-10px) rotateZ(-2deg);
    }
    75% {
        transform: translateY(-35px) translateX(5px) rotateZ(4deg);
    }
}

/* 3D Rotation */
@keyframes rotate3D {
    0% { transform: rotateY(0deg) rotateX(0deg); }
    25% { transform: rotateY(5deg) rotateX(-3deg); }
    50% { transform: rotateY(-5deg) rotateX(3deg); }
    75% { transform: rotateY(3deg) rotateX(-2deg); }
    100% { transform: rotateY(0deg) rotateX(0deg); }
}

/* Pulse Effect */
@keyframes pulse {
    0%, 100% { filter: drop-shadow(0 35px 70px rgba(102, 126, 234, 0.4)) brightness(1.05); }
    50% { filter: drop-shadow(0 45px 90px rgba(118, 75, 162, 0.6)) brightness(1.15); }
}

/* Dekoratif Elementler - Enhanced */
.modern-slide-bg-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2), transparent 70%);
    animation: pulse 12s ease-in-out infinite;
    filter: blur(60px);
}

.decoration-circle-1 {
    width: 700px;
    height: 700px;
    top: -250px;
    right: -250px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.35), rgba(102, 126, 234, 0.15) 50%, transparent 70%);
    animation: pulse 10s ease-in-out infinite, moveCircle1 20s linear infinite;
}

.decoration-circle-2 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: -200px;
    animation-delay: 4s;
    background: radial-gradient(circle, rgba(67, 233, 123, 0.3), rgba(16, 185, 129, 0.15) 50%, transparent 70%);
    animation: pulse 12s ease-in-out infinite 4s, moveCircle2 25s linear infinite;
}

@keyframes moveCircle1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.9); }
    75% { transform: translate(40px, 20px) scale(1.05); }
}

@keyframes moveCircle2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-40px, 30px) scale(1.15); }
    50% { transform: translate(50px, -40px) scale(0.85); }
    75% { transform: translate(-30px, -20px) scale(1.1); }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.4) rotate(180deg);
        opacity: 0.8;
    }
}

/* Navigation Dots - Enhanced */
.modern-slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: 14px 24px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modern-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
}

.modern-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0);
    transition: all 0.4s ease;
}

.modern-dot:hover {
    background: rgba(255, 255, 255, 0.65);
    transform: scale(1.4);
}

.modern-dot:hover::before {
    border-color: rgba(255, 255, 255, 0.35);
    transform: translate(-50%, -50%) scale(1.6);
}

.modern-dot.active {
    background: #ffffff;
    width: 45px;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6),
                inset 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Navigation Arrows - Enhanced */
.modern-slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 100px;
    z-index: 1000;
    pointer-events: none;
}

.modern-arrow {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    backdrop-filter: blur(20px);
    border: 3px solid #ffffff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: all !important;
    color: #ffffff !important;
    font-size: 28px;
    font-weight: 900;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7),
                0 0 80px rgba(102, 126, 234, 1),
                0 0 120px rgba(118, 75, 162, 0.8),
                inset 0 2px 15px rgba(255, 255, 255, 0.4) !important;
    position: relative;
    overflow: visible;
    z-index: 9999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6),
                    0 0 60px rgba(102, 126, 234, 0.8),
                    inset 0 2px 15px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6),
                    0 0 80px rgba(102, 126, 234, 1),
                    0 0 120px rgba(118, 75, 162, 0.6),
                    inset 0 2px 15px rgba(255, 255, 255, 0.4);
        transform: scale(1.1);
    }
}

.modern-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: width 0.5s ease, height 0.5s ease;
}

.modern-arrow:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scale(1.3);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.9),
                0 0 100px rgba(102, 126, 234, 0.8),
                0 0 150px rgba(118, 75, 162, 0.6),
                inset 0 2px 20px rgba(255, 255, 255, 0.4);
    border-color: #ffffff;
    animation: none;
}

.modern-arrow:active {
    transform: scale(1.2);
}

.modern-arrow:hover::before {
    width: 100%;
    height: 100%;
}

/* Gradient Overlays - Her Slide için farklı renk - ULTRA PROFESSIONAL */
.modern-slide-1 { 
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 25%, #2d3561 50%, #667eea 100%);
}
.modern-slide-2 { 
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #10b981 100%);
}
.modern-slide-3 { 
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 25%, #4c1d95 50%, #f59e0b 100%);
}
.modern-slide-4 { 
    background: linear-gradient(135deg, #0c1222 0%, #1c2541 25%, #3a506b 50%, #6fffe9 100%);
}
.modern-slide-5 { 
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #e94560 100%);
}
.modern-slide-6 { 
    background: linear-gradient(135deg, #2d1b69 0%, #6b21a8 25%, #a855f7 50%, #ec4899 100%);
}
.modern-slide-7 { 
    background: linear-gradient(135deg, #14532d 0%, #166534 25%, #22c55e 50%, #fbbf24 100%);
}
.modern-slide-8 { 
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 25%, #60a5fa 50%, #38bdf8 100%);
}

/* Animated Gradient */
.modern-slide {
    background-size: 200% 200%;
    animation: gradientShift 18s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Animasyon Efektleri - Slide Giriş */
.modern-slide.active .modern-slide-badge {
    animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

.modern-slide.active .modern-slide-title {
    animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.modern-slide.active .modern-slide-subtitle {
    animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.modern-slide.active .modern-slide-cta {
    animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

.modern-slide.active .modern-slide-visual {
    animation: slideInRight 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both, 
               zoomIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@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);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .modern-hero-slider {
        height: auto;
        min-height: 600px;
        max-height: none;
    }

    .modern-slide-content {
        flex-direction: column;
        padding: 60px 30px;
        text-align: center;
    }

    .modern-slide-text {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .modern-slide-title {
        font-size: 36px;
    }

    .modern-slide-subtitle {
        font-size: 18px;
    }

    .modern-slide-cta {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
    }

    .modern-slide-price {
        margin-left: 0;
        margin-top: 20px;
    }

    .modern-slide-visual {
        max-width: 400px;
    }

    .modern-slider-arrows {
        padding: 0 60px;
    }

    .modern-arrow {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .modern-hero-slider {
        min-height: 500px;
        margin-top: 100px;
    }

    .modern-slide-title {
        font-size: 28px;
    }

    .modern-slide-subtitle {
        font-size: 16px;
    }

    .modern-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
    }

    .modern-slider-arrows {
        padding: 0 40px;
    }

    .modern-arrow {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .modern-slider-dots {
        bottom: 20px;
    }

    .modern-slide-visual img {
        max-width: 90%;
    }

    .modern-price-amount {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .modern-slide-content {
        padding: 40px 20px;
    }

    .modern-slide-title {
        font-size: 24px;
    }

    .modern-slide-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .decoration-circle-1,
    .decoration-circle-2 {
        display: none;
    }
}

/* Özel Efektler */
.modern-slide-visual::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.15) 30%, transparent 70%);
    z-index: -1;
    animation: rotateGlow 15s linear infinite;
    filter: blur(40px);
}

.modern-slide-visual::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.15), transparent 50%);
    animation: spinEffect 8s linear infinite;
    z-index: -1;
    opacity: 0.6;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    to {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes spinEffect {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Loading State */
.modern-slider-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

.modern-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Accessibility */
.modern-slide[aria-hidden="true"] {
    pointer-events: none;
}

.modern-arrow:focus,
.modern-dot:focus {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

/* Print Styles */
@media print {
    .modern-hero-slider {
        height: auto;
        max-height: none;
    }

    .modern-slider-arrows,
    .modern-slider-dots {
        display: none;
    }

    .modern-slide {
        position: relative;
        opacity: 1;
        visibility: visible;
        page-break-inside: avoid;
    }
}

/* ====== ULTRA PROFESSIONAL PREMIUM EFFECTS ====== */

/* Dynamic Lighting Effect */
.modern-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(255, 255, 255, 0.15) 0%, 
                transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.modern-slide:hover::before {
    opacity: 1;
}

/* Perspective Container for 3D Effects */
.modern-slide-content {
    perspective: 2000px;
    transform-style: preserve-3d;
}

/* Advanced Text Effects */
.modern-slide-subtitle {
    position: relative;
}

.modern-slide-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.8), transparent);
    border-radius: 2px;
    animation: lineExpand 2s ease-in-out infinite;
}

@keyframes lineExpand {
    0%, 100% { width: 60px; opacity: 0.8; }
    50% { width: 120px; opacity: 1; }
}

/* Premium Blur Background Layer */
.modern-slide-content::before {
    content: '';
    position: absolute;
    inset: -100px;
    background: radial-gradient(circle at 30% 50%, 
                rgba(102, 126, 234, 0.1) 0%, 
                rgba(118, 75, 162, 0.08) 50%, 
                transparent 70%);
    filter: blur(80px);
    opacity: 0.7;
    z-index: -1;
    animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 0.9; }
}

/* Dot Navigation Enhanced Premium Style */
.modern-dot {
    position: relative;
    overflow: hidden;
}

.modern-dot.active::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, 
                rgba(102, 126, 234, 0.6), 
                rgba(118, 75, 162, 0.6));
    border-radius: 10px;
    filter: blur(8px);
    z-index: -1;
    animation: dotGlow 2s ease-in-out infinite;
}

@keyframes dotGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Button Group Hover Effect */
.modern-slide-cta:hover .modern-btn {
    transform: translateY(-3px);
}

.modern-slide-cta .modern-btn:hover {
    transform: translateY(-8px) scale(1.08);
}

/* Dynamic Shadow Trail */
.modern-arrow {
    position: relative;
}

.modern-arrow::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: inherit;
    opacity: 0;
    filter: blur(20px);
    transform: scale(1.1);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.modern-arrow:hover::after {
    opacity: 0.8;
}

/* Slide Transition Effect */
.modern-slide {
    transform-origin: center center;
}

.modern-slide:not(.active) {
    transform: scale(0.95);
    filter: blur(5px);
}

.modern-slide.active {
    transform: scale(1);
    filter: blur(0);
}

/* Premium Hover State for Price */
.modern-price-amount {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modern-slide-price:hover .modern-price-amount {
    transform: scale(1.12) translateY(-3px);
    text-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
}

/* Advanced Particle Animation */
@keyframes particleMove {
    0% { 
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
        opacity: 0.5;
    }
    25% { 
        background-position: 50% 25%, 25% 50%, 75% 30%, 30% 75%, 60% 40%, 40% 60%;
        opacity: 0.7;
    }
    50% { 
        background-position: 100% 50%, 50% 100%, 50% 60%, 60% 50%, 80% 70%, 70% 80%;
        opacity: 0.9;
    }
    75% { 
        background-position: 75% 75%, 75% 50%, 25% 80%, 80% 25%, 50% 90%, 90% 50%;
        opacity: 0.7;
    }
    100% { 
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
        opacity: 0.5;
    }
}

/* Smooth Hardware Acceleration */
.modern-hero-slider,
.modern-slide,
.modern-slide-visual img,
.modern-arrow,
.modern-btn-primary {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/* ====== ADVANCED FEATURES ====== */

/* 3D Tilt Effect on Hover */
.modern-slide-visual {
    perspective: 1000px;
}

.modern-slide-visual img {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Glow Effect */
.modern-btn-primary,
.modern-slide-badge {
    animation: subtleGlow 3s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(102, 126, 234, 0.6),
                    0 0 60px rgba(102, 126, 234, 0.3);
    }
}

/* Counter Animation for Price */
.modern-price-amount {
    animation: counterPulse 2s ease-in-out infinite;
}

@keyframes counterPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Text Shimmer Effect */
.modern-slide-title {
    position: relative;
    overflow: hidden;
}

.modern-slide-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Improved Parallax Background */
.modern-slide-bg-decoration {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Neon Border Effect */
.modern-slide-price::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #43e97b, #667eea);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: 300% 300%;
    animation: borderGlow 3s ease-in-out infinite;
}

.modern-slide-price:hover::after {
    opacity: 0.5;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Badge Notification Dot */
.modern-slide-badge::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: #ff4757;
    border-radius: 50%;
    border: 2px solid #ffffff;
    animation: notificationPulse 2s ease-in-out infinite;
}

@keyframes notificationPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Slide Number Indicator */
.modern-slide::after {
    content: attr(data-slide-number);
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    line-height: 1;
}

/* Enhanced Blur Background */
.modern-hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="50" r="1.5" fill="rgba(255,255,255,0.12)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.4;
    z-index: 1;
    animation: bgMove 30s linear infinite;
}

@keyframes bgMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

/* CTA Button Ripple Effect */
.modern-btn-primary {
    position: relative;
}

.modern-btn-primary .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Stats Counter Animation */
.modern-stats-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
}

.modern-stats-counter .counter-value {
    color: #4ade80;
    font-size: 18px;
    font-weight: 800;
}

/* Improved Mobile Touch Feedback */
@media (hover: none) and (pointer: coarse) {
    .modern-btn-primary:active {
        transform: scale(0.95);
    }
    
    .modern-arrow:active {
        transform: scale(0.9);
    }
    
    .modern-dot:active {
        transform: scale(0.8);
    }
}
