/* ====================================
   Quick Guide Section - قسم الدليل السريع
   ==================================== */

.quick-guide-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.quick-guide-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.quick-guide-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

/* Guide Header */
.guide-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.guide-title {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.guide-title i {
    margin-left: 15px;
    animation: bounce 2s infinite;
}

.guide-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

/* Steps Container */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Step Card */
.step-card {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Step Number Badge */
.step-number {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    z-index: 2;
}

/* Step Icon */
.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: #667eea;
    transition: all 0.3s ease;
}

.step-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.2));
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    color: #764ba2;
}

/* Step Content */
.step-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 15px;
}

.step-description {
    color: #718096;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Step Button */
.step-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.step-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    color: white;
    text-decoration: none;
}

.step-btn i {
    margin-right: 8px;
}

/* Step Badge */
.step-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #e6fffa 0%, #b2f5ea 100%);
    color: #234e52;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Step Arrow */
.step-arrow {
    width: 50px;
    color: white;
    opacity: 0.7;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-arrow svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.step-arrow:hover {
    opacity: 1;
    transform: translateX(-5px);
}

/* Guide Footer */
.guide-footer {
    margin-top: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.guide-info {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.3);
}

.guide-info i {
    margin-left: 10px;
    font-size: 1.3rem;
}

/* Animations */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ====================================
   Responsive Design
   ==================================== */

@media (max-width: 992px) {
    .quick-guide-section {
        padding: 40px 30px;
    }
    
    .guide-title {
        font-size: 2rem;
    }
    
    .guide-subtitle {
        font-size: 1rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        width: 30px;
        margin: 20px auto;
    }
    
    .step-arrow:hover {
        transform: rotate(90deg) translateY(-5px);
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .quick-guide-section {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .guide-title {
        font-size: 1.75rem;
    }
    
    .guide-subtitle {
        font-size: 0.95rem;
    }
    
    .guide-header {
        margin-bottom: 40px;
    }
    
    .step-card {
        min-width: 100%;
        padding: 25px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .guide-info {
        font-size: 1rem;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .quick-guide-section {
        padding: 25px 15px;
    }
    
    .guide-title {
        font-size: 1.5rem;
    }
    
    .step-number {
        top: -15px;
        right: 20px;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .step-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}




