/*Quick Assistance Sticky Widget*/

        .sticky-container {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 9999;
        }

        .sticky-container ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .sticky-container li {
            background-color: #ffffff;
            border: 2px solid #28a745;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            padding: 10px 12px;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .sticky-container li:hover {
            background-color: #f5fff5;
            transform: scale(1.02);
        }

        .sticky-container img {
            /*width: 32px;*/
            /*height: 32px;*/
            margin-right: 10px;
        }

        .sticky-container a {
            text-decoration: none;
            color: #28a745;
            font-weight: 600;
            font-size: 14px;
            line-height: 1.3;
        }

        .sticky-container a:hover {
            text-decoration: underline;
        }

        @media (max-width: 600px) {
            .sticky-container li {
                padding: 8px 10px;
            }

            .sticky-container a {
                font-size: 13px;
            }
        }
/* ===============================
   BOOK NOW BUTTON (SUBTLE RED)
================================= */

.custom-book-btn{
    background:#e74c3c !important; /* subtle red */
    border:none;
    padding:6px 14px;
    border-radius:6px;
    display:inline-block;
}

/* remove bootstrap alert styling */
.custom-book-btn.alert{
    margin:0;
    border:none;
}

/* link styling */
.custom-book-btn a{
    color:#fff;
    font-weight:600;
    text-decoration:none;
}

/* hover effect (lighter red) */
.custom-book-btn:hover{
    background:#ff6b5e !important;
}

/* link hover */
.custom-book-btn a:hover{
    color:#fff;
}

/* ===============================
   CARD ALIGNMENT FIX
================================= */

.custom-card{
    display:flex;
    flex-direction:column;
    height:100%;
}

.custom-card-body{
    flex-grow:1;
}

.cl_price{
    margin-top:auto;
}
.custom-card-body p{
    min-height:60px;
}
/* ===============================
   CARD HEIGHT ALIGNMENT FIX
================================= */

.equal-card{
    display:flex;
    flex-direction:column;
    height:100%;
}

/* make middle content expand */
.equal-card .classes_info{
    flex-grow:1;
}

/* push footer to bottom */
.equal-card .cl_foot{
    margin-top:auto;
}

/* ===============================
   TESTIMONIAL UPGRADE
================================= */

.bwd-testimonial-upgrade .testimonial_box{
    padding:20px;
    text-align:center;
}

/* STARS + META */
.bwd-testimonial-upgrade .testi_meta span{
    display:block;
    font-size:13px;
    color:#f4b400;
    margin-bottom:8px;
}

/* TEXT */
.bwd-testimonial-upgrade .testi_meta p{
    font-size:14px;
    color:#333;
    line-height:1.6;
}

/* IMAGE THUMBNAILS */
.bwd-review-thumbs{
    display:flex;
    justify-content:center;
    gap:6px;
    margin-top:10px;
}

.bwd-review-thumbs img{
    width:60px;
    height:50px;
    border-radius:6px;
    object-fit:cover;
}

/* FALLBACK AVATAR */
.bwd-avatar-text{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#ddd;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    margin:auto;
}

/* HOVER EFFECT */
.bwd-testimonial-upgrade .testimonial_box:hover{
    transform:translateY(-5px);
    transition:.3s;
}