/* ===========================
   Packaging - Steps
=========================== */

#packing-steps {
    padding: 5rem 0;
}

#packing-steps .lead {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
}

#packing-steps .step-card {
    position: relative;
    height: 100%;
    padding: 2.5rem 2rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .04);
    transition: all .3s ease;
}

#packing-steps .step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

#packing-steps .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
}

#packing-steps .step-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

#packing-steps .step-card p {
    margin: 0;
    line-height: 1.8;
    color: var(--bs-secondary-color);
}

/* Mobile */

@media (max-width: 768px) {

    #packing-steps {
        padding: 4rem 0;
    }

    #packing-steps .step-card {
        padding: 2rem 1.5rem;
    }

    #packing-steps .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    #packing-steps .step-card h3 {
        font-size: 1.15rem;
    }

}
