/* ============================
   Global
============================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

.sef-vehicle-wrappers {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin: 30px 0;
}

.sef-cards {
    flex: 1 1 280px;
    max-width: 280px;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .3s;
}

.sef-cards:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.sef-card-icon {
    margin-bottom: 15px;
}

.sef-card-icon svg {
    width: 60px;
    height: 60px;
    fill: #4a86e8;
}

.sef-cards h3 {
    font-size: 24px;
    margin: 15px 0;
    color: #222;
}

.sef-cards p {
    margin: 5px 0;
}

.sef-units {
    font-size: 15px;
    color: #666;
}

.sef-weights {
    font-size: 17px;
    font-weight: 600;
    color: #333;
}

.prices {
    font-size: 36px;
    font-weight: 700;
    color: #5d00ff;
    margin: 10px 0;
}

.sef-cards hr {
    margin: 18px 0;
}

.book-btns {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    border-radius: 15px;
    background: #3b82ff;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

.book-btns:hover {
    background: #fff;
    color: #3b82ff;
    border: 2px solid #3b82ff;
}


/* ============================
   Tablet
============================ */

@media (max-width:991px) {
    .sef-cards {
        flex: 0 1 calc(50% - 20px);
        max-width: 340px;
    }
}


/* ============================
   Mobile
============================ */

@media (max-width:767px) {
    .sef-vehicle-wrappers {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 15px;
    }
    .sef-cards {
        flex: none;
        width: 100%;
        max-width: 360px;
    }
    .prices {
        font-size: 32px;
    }
    .book-btns {
        font-size: 18px;
    }
}


/* ============================
   Small Mobile
============================ */

@media (max-width:430px) {
    .sef-vehicle-wrappers {
        padding: 0 10px;
    }
    .sef-cards {
        width: 100%;
        max-width: 100%;
        padding: 18px;
    }
    .sef-cards h3 {
        font-size: 22px;
    }
    .prices {
        font-size: 28px;
    }
    .book-btns {
        font-size: 16px;
        padding: 14px;
    }
}