/* VerticalStepper.css */
.vertical-stepper-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.vertical-stepper-header {
    text-align: center;
    margin-bottom: 60px;
}

.vertical-stepper-header h2 {
    font-size: 2.5rem;
    color: #252c30;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.vertical-stepper-header h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.vertical-stepper-header p {
    font-size: 1.1rem;
    color: #777;
    max-width: 600px;
    margin: 20px auto 0;
}

.vertical-stepper-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.vertical-stepper-content {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.vertical-stepper-visual {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 500px;
}

.vertical-stepper-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vertical-stepper-line {
    position: absolute;
    inset-inline-start: 30px;
    top: 20px;
    bottom: 100px;
    width: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.vertical-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.vertical-step:nth-child(1) {
    animation-delay: 0.2s;
}

.vertical-step:nth-child(2) {
    animation-delay: 0.4s;
}

.vertical-step:nth-child(3) {
    animation-delay: 0.6s;
}

.vertical-step:nth-child(4) {
    animation-delay: 0.8s;
}

.vertical-step-bullet {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline-end: 25px;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.vertical-step-bullet:hover {
    background: var(--primary);
    color: beige;
    transform: scale(1.05);
}

.vertical-step-bullet:hover i {
    color: white;
}

.vertical-step-bullet i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.vertical-step-content {
    padding-top: 10px;
}

.vertical-step-content h3 {
    font-size: 1.5rem;
    color: #252c30;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.vertical-step-content p {
    color: #777;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vertical-stepper-container {
        flex-direction: column-reverse;
    }

    .vertical-stepper-line {
        inset-inline-start: 30px;
        bottom: 150px;
    }

    .vertical-step-bullet {
        margin-inline-end: 25px;
    }

    .vertical-stepper-header h2 {
        font-size: 2rem;
    }

    .vertical-stepper-visual {
        height: 350px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vertical-feature-highlight {
    display: inline-block;
    background: rgba(136, 180, 78, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 10px;
}

.vertical-step-number {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-right: 10px;
}