/*! public/css/home/services.css */
/* ---------------------------------------------------------
   🎴 Service Cards
--------------------------------------------------------- */
.service-card {
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: var(--radius-md);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Premium hover lift */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* Avoid jump on card hover */
.service-card:hover .btn-booking {
    transform: translateY(-2px);
}

.our_services img {
    max-height: 240px;
    object-fit: contain;
    width: 100%;
}
