.book-now-btn {
    background-color: #c00;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none !important;
    font-size: 1em;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.book-now-btn:hover {
    background-color: #a00;
    color: white !important;
    text-decoration: none !important;
}
.service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.card-header {
    background-color: #f9f9f9;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    .btn-back, .price-section {
        width: 20%;
    }
    .price-section {
        text-align: right;
    }
}

.card-header .btn-back a {
    color: #000;
    text-decoration: none;
}
.card-header .btn-back a:hover,  .card-header .btn-back a:hover svg {
    fill: var(--theme_second_color);
    color: var(--theme_second_color);
}

.service-title {
    color: #c00;
    font-size: 1.5em;
    margin: 0;
    line-height: 1.2;
}

.card-header .btn-back a svg {
    width: 16px;
    margin-right: 0.5em;
    fill: #000;
    margin-top: -2px;
    transition: all 0.3s ease;
}


.trust-badges {
    display: flex;
    align-items: center;
}

.trust-badges i {
    font-size: 1em;
    color: #777;
    margin-left: 8px;
}

.trust-badges i.gold {
    color: gold;
}

.card-body {
    padding: 20px;
    .accordion-box .block {
        background-color: transparent !important;
        border-radius: 0;
        box-shadow: none;
    }
    .acc-content {
        padding: 0 !important;
        background-color: transparent;
        box-shadow: none;
    }
    .accordion-box {
        .card-footer {
            background-color: transparent;
            justify-content: end;
            padding-left: 0;
            padding-right: 0;
            padding-top: 1.5em;
        }
    }
}

.parameter-included {
    color: #555;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.service-description {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.rating-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.rating {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.rating li i {
    font-size: 0.9em;
    color: #ccc;
    margin-right: 3px;
}

.rating li i.filled {
    color: gold;
}

.rating li i.half-filled::before {
    content: '\f005';
    /* Font Awesome star icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: gold;
    width: 50%;
    overflow: hidden;
    display: inline-block;
}

.review-count {
    color: #777;
    font-size: 0.9em;
    margin-left: 8px;
}

.card-footer {
    background-color: #f9f9f9;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
}

.price-section {
    text-align: left;
}

.original-price {
    color: #777;
    font-size: 0.9em;
    text-decoration: line-through;
    margin-right: 8px;
}

.discounted-price {
    color: #c00;
    font-size: 1.2em;
    font-weight: bold;
}

.book-now-btn {
    background-color: #c00;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    display: inline-flex;
    align-items: center;
}

.book-now-btn i {
    margin-left: 8px;
}

@media (max-width: 768px) {
    .service-title {
        font-size: 1.2em;
    }

    .trust-badges i {
        font-size: 0.8em;
        margin-left: 5px;
    }

    .parameter-included,
    .service-description,
    .rating-container,
    .review-count,
    .original-price,
    .discounted-price,
    .book-now-btn {
        font-size: 0.9em;
    }

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

    .price-section {
        margin-bottom: 10px;
        text-align: left;
    }

    .book-now-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .card-header {
        padding: 10px 15px;
        flex-direction: row;
        justify-content: start;
        align-items: start;
        flex-wrap: wrap;
        .btn-back, .price-section {
            width: 50%;
        }
        .service-title {
            order: 2;
            padding-top: 0.5em;
            padding-bottom: 0.3em;
            text-align: center;
            width: 100%;
        }
        .price-section {
            order: 1;
            padding-top: 4px;
        }
    }

    .card-body {
        padding: 15px;
    }

    .card-footer {
        padding: 10px 15px;
    }
}
