/* Process Steps and Timeline Styles */

/* Process Steps Enhancement */
.process-steps {
    position: relative;
    margin: 40px 0;
    padding: 20px 0;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #4CAF50, #66BB6A);
    z-index: 1;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 25px;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.step-content {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.step:hover .step-content {
    transform: translateX(10px);
    border-left-color: #4CAF50;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.step-content h3 {
    color: #2E7D32;
    margin-bottom: 10px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.step-content ul {
    margin-top: 15px;
    padding-left: 20px;
}

.step-content li {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Timeline for Immediate Loans */
.process-timeline {
    position: relative;
    margin: 40px 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-time {
    min-width: 100px;
    padding: 8px 15px;
    background: linear-gradient(135deg, #FF5722, #FF7043);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    text-align: center;
    margin-right: 20px;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(255, 87, 34, 0.3);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #FF5722;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.timeline-content h4 {
    color: #2E7D32;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}

/* Application Process Steps */
.application-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 30px 0;
}

.application-step {
    display: flex;
    align-items: center;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #4CAF50;
}

.application-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.application-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin-right: 20px;
    flex-shrink: 0;
}

.application-step-content h4 {
    color: #2E7D32;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.application-step-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}

/* Document Categories Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.document-category {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.document-category:hover {
    transform: translateY(-5px);
}

.document-category h3 {
    color: #2E7D32;
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.document-category i {
    font-size: 20px;
    color: #4CAF50;
}

.document-category ul {
    list-style: none;
    padding: 0;
}

.document-category li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.document-category li:last-child {
    border-bottom: none;
}

.document-category li::before {
    content: "📄";
    position: absolute;
    left: 0;
    top: 8px;
}

/* Repayment Options */
.repayment-options {
    margin: 30px 0;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.option-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #4CAF50;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.option-card i {
    font-size: 36px;
    color: #4CAF50;
    margin-bottom: 15px;
}

.option-card h4 {
    color: #2E7D32;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.option-card p {
    color: #666;
    line-height: 1.5;
    font-size: 14px;
}

/* Strategy List */
.repayment-strategies {
    margin: 30px 0;
}

.strategy-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.strategy-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.strategy-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.strategy-item i {
    font-size: 24px;
    color: #4CAF50;
    margin-top: 2px;
    flex-shrink: 0;
}

.strategy-item h4 {
    color: #2E7D32;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.strategy-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-steps::before {
        left: 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 15px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-time {
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .strategy-list {
        grid-template-columns: 1fr;
    }
    
    .application-step {
        flex-direction: column;
        text-align: center;
    }
    
    .application-step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
