html{
    scroll-behavior:smooth;
}

body{
    font-family: "Montserrat", sans-serif;
}

.rentals-wrap{
    background:#0b0b0b;
    color:#fff;
}

.service-section{
    margin-bottom:60px;
}

.section-title{
    color:#fff;
    font-size:28px;
    font-weight:800;
    margin-bottom:25px;
    border-left:5px solid #c21414;
    padding-left:15px;
}

.list-card{
    display:flex;
    align-items:center;
    gap:20px;
    background:linear-gradient(#f5f5f5,#e6e6e6);
    border-radius:6px;
    padding:15px;
    margin-bottom:18px;
    box-shadow:0 10px 20px rgba(0,0,0,.35);
}

.list-image{
    width:140px;
    height:100px;
    flex-shrink:0;
    background:#fff;
    border-radius:5px;
    overflow:hidden;
}

.list-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.list-content{
    flex:1;
}

.list-content h3{
    color:#111;
    font-size:20px;
    font-weight:800;
    margin-bottom:8px;
}

.list-content p{
    color:#444;
    margin:0;
}

.list-action{
    min-width:160px;
    text-align:right;
}

.rental-btn{
    display:inline-block;
    padding:10px 25px;
    background:linear-gradient(#c21414,#8f0f0f);
    color:#fff;
    text-decoration:none;
    border-radius:4px;
    font-weight:700;
}

.disabled-row{
    opacity:.6;
}

@media(max-width:768px){

    .list-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .list-image{
        width:100%;
        height:220px;
    }

    .list-action{
        width:100%;
        text-align:left;
    }

}
.speciality-note{
    margin-top:30px;
    padding:18px 22px;
    background:#111827;
    border-left:4px solid #dd2b31;
    border-radius:8px;
}

.speciality-note ul{
    margin:0;
    padding-left:18px;
}

.speciality-note li{
    color:#d1d5db;
    margin-bottom:10px;
    line-height:1.7;
    font-size:15px;
}

.speciality-note li:last-child{
    margin-bottom:0;
}

/* desc css  */

.tools-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px 25px;
    padding-left:20px;
}

.tools-grid li{
    margin-bottom:0;
}

@media (max-width:991px){
    .tools-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:576px){
    .tools-grid{
        grid-template-columns:1fr;
    }
}


/* ── Unavailable card ─────────────────────────────── */
.list-card {
    position: relative;   /* needed for overlay positioning */
    overflow: hidden;     /* keeps overlay inside card bounds */
}

.disabled-row {
    opacity: 0.7;
}

.unavailable-overlay {
    position: absolute;
    inset: 0;                          /* covers the entire card */
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: inherit;            /* matches card's border-radius */
    pointer-events: none;              /* lets clicks pass through if needed */
}

.unavailable-badge {
    background: #dd2b31;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}