/* ========================================
   Section Design Improvements
   Timeline, Image Sections, etc.
   ======================================== */

/* ========================================
   PROCESS TIMELINE SECTION
   ======================================== */

.process-timeline-section {
    padding: 50px 0;
    background: #ffffff;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #e74c3c 0%, #3498db 100%);
}

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

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

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

.timeline-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    text-align: left;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.15);
    border-color: rgba(231, 76, 60, 0.3);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(52, 152, 219, 0.1));
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.timeline-icon i {
    font-size: 28px;
    color: #e74c3c;
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   WHY CHOOSE US SECTION - Image Split
   ======================================== */

.why-choose-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-choose-image {
    position: relative;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
}

.image-badge i {
    font-size: 32px;
    color: #e74c3c;
}

.image-badge strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
}

.image-badge span {
    display: block;
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 5px;
}

.why-choose-content {
    padding-left: 30px;
}

.why-choose-list {
    margin-top: 20px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.1);
}

.why-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e74c3c, #3498db);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    font-size: 18px;
    color: #ffffff;
}

.why-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.why-item p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 991px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-number {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 100px !important;
        text-align: left !important;
    }
    
    .why-choose-content {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h3 {
        font-size: 18px;
    }
    
    .timeline-content p {
        font-size: 14px;
    }
    
    .image-badge {
        bottom: 15px;
        right: 15px;
        padding: 15px 20px;
    }
    
    .image-badge strong {
        font-size: 22px;
    }
    
    .why-item {
        padding: 12px;
    }
}
