/* Process Timeline Styling */

.process {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #fafafa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.process-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.get-in-touch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-image: linear-gradient(135deg, #ff7a00, #ff9a44);
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.25);
}

.get-in-touch:hover {
    background-image: linear-gradient(135deg, #ff8a20, #ffaa54);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.35);
}

.get-in-touch i {
    font-size: 0.9rem;
}

.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #e0e0e0;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.timeline-marker {
    width: 60px;
    height: 60px;
    background-color: #ff7a00;
    background-image: linear-gradient(135deg, #ff7a00, #ff9a44);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 10;
    box-shadow: 0 0 0 6px white, 0 0 0 7px rgba(0, 0, 0, 0.08), 0 10px 20px rgba(255, 122, 0, 0.2);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.timeline-image {
    width: 40%;
    padding: 0 20px;
}

.timeline-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content {
    width: 40%;
    padding: 0 20px;
}

.timeline-content h3 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
    position: relative;
}

.left-item .timeline-content h3::after,
.right-item .timeline-content h3::after {
    content: '';
    position: absolute;
    height: 3px;
    width: 40px;
    background-color: #ff7a00;
    bottom: -8px;
}

.left-item .timeline-content h3::after {
    right: 0;
}

.right-item .timeline-content h3::after {
    left: 0;
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.discover-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff7a00;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.discover-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff7a00;
    transition: width 0.3s ease;
}

.discover-more:hover {
    color: #ff9a44;
}

.discover-more:hover::after {
    width: 100%;
}

.discover-more i {
    font-size: 0.8rem;
}

/* Left and Right Item Positioning */
.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.left-item .timeline-content {
    width: 40%;
    text-align: right;
    padding-right: 30px;
    order: 1;
}

.right-item .timeline-content {
    width: 40%;
    text-align: left;
    padding-left: 30px;
    order: 3;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.timeline-image {
    width: 40%;
    padding: 0 20px;
}

.timeline-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.left-item .timeline-image {
    order: 3;
    padding-left: 30px;
}

.right-item .timeline-image {
    order: 1;
    padding-right: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .process {
        padding: 80px 0;
    }
    
    .process-header h2 {
        font-size: 2.2rem;
    }
    
    .timeline-content h3 {
        font-size: 1.6rem;
    }
    
    .left-item .timeline-content,
    .right-item .timeline-content {
        width: 42%;
    }
}

@media (max-width: 768px) {
    .process-timeline::after {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 70px;
    }
    
    .timeline-marker {
        position: absolute;
        left: 30px;
        transform: translateX(-50%);
        top: 0;
        margin-top: 0;
    }
    
    .left-item .timeline-content,
    .right-item .timeline-content {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
        text-align: left;
        order: 2;
        margin-bottom: 20px;
    }
    
    .left-item .timeline-image,
    .right-item .timeline-image {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
        order: 3;
    }
    
    .timeline-image img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .process {
        padding: 60px 0;
    }
    
    .process-header h2 {
        font-size: 1.8rem;
    }
    
    .get-in-touch {
        padding: 10px 20px;
    }
    
    .timeline-content h3 {
        font-size: 1.4rem;
    }
}
