/* Section background */
.booking-hero {
    padding: 70px 0;
    background: linear-gradient(180deg, #f9f9f9, #ffffff);
    z-index: 99; 
}

/* Card */
.booking-card {
    border-top: 7px solid #003928;
    margin-top: -100px;
    background: #fff;
    padding: 40px 35px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgb(0 0 0 / 33%);
}

/* Header */
.booking-header h2 {
    font-weight: 700;
    color: #006e60;
    margin-bottom: 8px;
}

.booking-header p {
    color: #022314;
    font-size: 15px;
    margin-bottom: 30px;
}



.input-icon .form-control {
    padding-left: 45px;
    height: 52px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 15px;
}
input[type="date"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
/* Normalize select & date input height */
.input-icon select.form-control,
.input-icon input[type="date"].form-control {
    height: 52px !important;
    line-height: 52px;
    padding-top: 0;
    padding-bottom: 0;
}

/* Search button */
.search-btn {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #004d40, #00796b);
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(135deg, #00796b, #004d40);
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
    .search-btn {
        margin-top: 10px;
    }
}

.sessions-preview-section{
    margin: 50px;
}

.session-preview-card {
    padding:30px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #fff;
    transition: transform .3s ease;
}

.session-preview-card:hover {
    transform: translateY(-6px);
}

.session-image {
    position: relative;
}

.session-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.session-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #6c63ff;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

.session-content {
    padding: 30px;
}

.session-time {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.session-tables div {
    font-size: 18px;
    margin-bottom: 4px;
}


.clickable-session {
    cursor: pointer;
}

.clickable-session:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}


.how-groove-section {
    background: linear-gradient(180deg, #f9f9f9, #ffffff);
    padding: 70px 0;
}

.how-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px 15px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all .35s ease;
}

.how-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.how-card h6 {
    font-weight: 700;
    margin-top: 15px;
    font-size: 15px;
}

.how-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-circle img {
    width: 32px;
}

/* Color Variants */
.bg-purple { background: #ece9ff; }
.bg-blue   { background: #e6f0ff; }
.bg-pink   { background: #ffe6f0; }
.bg-green  { background: #e6fff1; }
.bg-orange { background: #fff0e0; }

/* Quantity input only */
.item-qty {
    width: 50px !important;
    min-width: 50px;
    max-width: 50px;
    text-align: center;
    padding: 4px 6px;
    height: 36px !important;
    line-height: 36px;
    border-radius: 8px;
}

.qty-plus,
.qty-minus {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 8px;
}


.item-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}





