.hotelss-acc-css-section {
    padding: 70px 15px;
    background: #f5f6f8;
    font-family: 'Poppins', sans-serif;
}

.hotelss-acc-css-heading {
    text-align: center;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 40px;
}

/* CARD */
.hotelss-acc-css-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
}

.hotelss-acc-css-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.hotelss-acc-css-img img {
    width: 100%;
    height: 220px !important;
    object-fit: cover;
}

/* CONTENT */
.hotelss-acc-css-content {
    padding: 20px;
}

.hotelss-acc-css-content h3 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* INFO */
.hotelss-acc-css-info {
    display: flex;
    gap: 15px;
    font-size: 18px;
    margin-bottom: 10px;
    color: black;
    font-weight: 600;
}

.hotelss-acc-css-info i {
    color: #f59e0b;
}

/* TEXT */
.hotelss-acc-css-content p {
    font-size: 16px;
    color: #000000;
    margin-bottom: 15px;
}

/* BUTTON */
.hotelss-acc-css-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #de900b;
    color: #ffffff;
    border-radius: 10px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
}

.hotelss-acc-css-btn:hover {
    background: #ffb703;
}

/* MOBILE */
@media(max-width:768px) {
    .hotelss-acc-css-heading {
        font-size: 26px;
    }

    .hotelss-acc-css-img img {
        height: 180px;
    }
}
.hotelss-acc-css-para{
    color: #01821f;
    font-weight: 600;
    text-align: center;
    font-size: 28px;
}
.hotelss-acc-css-subheading {

    background: antiquewhite;
    border-radius: 10px;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    padding: 20px 0 20px;
    width: 80%;
    margin: 50px auto;
    text-align: center;
    color: #111;
}

.hotelss-acc-css-subheading i {
    color: #f59e0b;
    margin-right: 8px;
}

/* PRICE BOX */
.hotelss-acc-css-price-box {
    background: #f9fafb;
    border-radius: 10px;
    padding: 12px;
    margin: 12px 0;
}

/* ROW */
.hotelss-acc-css-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #111;
    margin-bottom: 6px;
}

/* OLD PRICE */
.hotelss-acc-css-price-row del {
    color: #999;
    margin-right: 8px;
}

/* NEW PRICE */
.hotelss-acc-css-price-row strong {
    color: #008000;
    font-weight: 600;
}

/* SAVINGS */
.hotelss-acc-css-save {
    font-size: 16px;
    text-align: end;
    color: #dc2626;
    font-weight: 700;
    margin-top: 5px;
}

.hotelss-acc-css-price-row i {
    margin-right: 6px;
    color: #f59e0b;
}
.hotelss-acc-css-img {
    position: relative;
}

/* BADGE */
.hotelss-acc-css-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* OPTIONAL: PULSE EFFECT */
.hotelss-acc-css-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: rgba(34,197,94,0.4);
    animation: hotelss-pulse 1.5s infinite;
}

@keyframes hotelss-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    70% { transform: scale(1.4); opacity: 0; }
    100% { opacity: 0; }
} /* WRAPPER */
    .booking-css-hotel-wrapper {
        padding: 60px 20px;
    }

    /* BOX */
    .booking-css-hotel-box {
        max-width: 950px;
        margin: auto;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        overflow: hidden;
    }

    /* HEADER */
    .booking-css-hotel-header {
        background: #0f172a;
        color: #fff;
        padding: 20px 30px;
        font-size: 22px;
        font-weight: 600;
    }

    /* BODY */
    .booking-css-hotel-body {
        padding: 30px;
    }

    /* SECTION TITLE */
    .booking-css-hotel-section-title {
        font-size: 16px;
        font-weight: 600;
        margin: 20px 0 10px;
    }

    /* GRID */
    .booking-css-hotel-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    /* FIELD */
    .booking-css-hotel-field {
        display: flex;
        flex-direction: column;
    }

    .booking-css-hotel-field label {
        font-size: 12px;
        margin-bottom: 6px;
        color: #555;
    }

    .booking-css-hotel-field input,
    .booking-css-hotel-field select {
        padding: 12px;
        border-radius: 8px;
        border: 1px solid #ddd;
        font-size: 14px;
    }

    .booking-css-hotel-field input:focus,
    .booking-css-hotel-field select:focus {
        border-color: #4f46e5;
        outline: none;
    }

    /* FULL WIDTH */
    .booking-css-hotel-full {
        grid-column: span 2;
    }

    /* SUMMARY */
    .booking-css-hotel-summary {
        margin-top: 25px;
        padding: 20px;
        border-radius: 12px;
        background: #f1f5ff;
    }

    .booking-css-hotel-summary div {
        display: flex;
        justify-content: space-between;
        margin: 6px 0;
    }

    .booking-css-hotel-total {
        font-weight: 700;
        font-size: 16px;
        margin-top: 10px;
    }

    /* BUTTON */
    .booking-css-hotel-btn {
        width: 100%;
        margin-top: 25px;
        padding: 14px;
        background: linear-gradient(90deg, #4f46e5, #6366f1);
        color: #fff;
        border: none;
        border-radius: 10px;
        font-size: 16px;
        cursor: pointer;
    }

    .booking-css-hotel-btn:hover {
        opacity: 0.9;
    }

    /* MOBILE */
    @media(max-width:768px) {
        .booking-css-hotel-grid {
            grid-template-columns: 1fr;
        }
    }