/**
 * Sliders Simple CSS - 3 سليدرات بسيطة
 * @package Kora_Plus_Pro
 */

/* === السليدر الأساسي === */
.kora-slider {
    margin: 40px 0;
}

.slider-section-title {
    font-size: 28px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #00A859;
    display: flex;
    align-items: center;
    gap: 15px;
}

.slider-section-title span {
    background: linear-gradient(135deg, #00A859, #00c46e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slider-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.slider-track {
    position: relative;
    height: 550px;
}

.slider-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-card.active {
    opacity: 1;
    z-index: 1;
}

.slider-card-image {
    height: 100%;
    position: relative;
}

.slider-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-card-content {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    z-index: 2;
}

.slider-card-cat {
    display: inline-block;
    background: #00A859;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 15px;
}

.slider-card-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.3;
    margin: 0 0 12px;
}

.slider-card-title a {
    color: #fff;
    text-decoration: none;
}

.slider-card-title a:hover {
    color: #00A859;
}

.slider-card-meta {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 700;
}

/* الأسهم */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(0,0,0,0.7);
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: #00A859;
    border-color: #00A859;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    right: 20px;
}

.slider-next {
    left: 20px;
}

/* النقاط */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(0,0,0,0.3);
    padding: 12px 20px;
    border-radius: 25px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: #00A859;
    transform: scale(1.3);
}

.slider-dot:hover {
    background: rgba(255,255,255,0.8);
}

/* === السليدر 1: بسيط === */
.kora-slider-1 .slider-card-cat {
    background: #667eea;
}

.kora-slider-1 .slider-arrow:hover {
    background: #667eea;
    border-color: #667eea;
}

.kora-slider-1 .slider-dot.active {
    background: #667eea;
}

/* === السليدر 2: عصري === */
.kora-slider-2 .slider-card-cat {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.kora-slider-2 .slider-arrow:hover {
    background: #f5576c;
    border-color: #f5576c;
}

.kora-slider-2 .slider-dot.active {
    background: #f5576c;
}

.kora-slider-2 .slider-wrapper {
    box-shadow: 0 15px 50px rgba(240,147,251,0.3);
}

/* === السليدر 3: مميز === */
.kora-slider-3 .slider-card-cat {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.kora-slider-3 .slider-arrow:hover {
    background: #4facfe;
    border-color: #4facfe;
}

.kora-slider-3 .slider-dot.active {
    background: #4facfe;
}

.kora-slider-3 .slider-wrapper {
    box-shadow: 0 15px 50px rgba(79,172,254,0.3);
}

/* === Responsive === */
@media (max-width: 768px) {
    .slider-track {
        height: 450px;
    }
    
    .slider-card-content {
        padding: 30px 20px;
    }
    
    .slider-card-title {
        font-size: 24px;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
    }
    
    .slider-prev {
        right: 15px;
    }
    
    .slider-next {
        left: 15px;
    }
}

