:root {
    --booking-accent: #c9b083;
}

.booking-container {
    padding: 50px 0;
}

.module.white-back.box {
    padding: 40px;
    margin-bottom: 30px;
}

.booking-header {
    margin-bottom: 30px;
    text-align: center;
}

.progress-bar-container {
    height: 6px;
    background: #f0f0f0;
    margin-bottom: 40px;
    border-radius: 0;
    position: relative;
}

#booking-progress {
    height: 100%;
    width: 20%;
    background: var(--booking-accent);
    background: #242424;
    border-radius: 0;
    transition: width 0.5s ease;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.rcw-form .form-group {
    margin-bottom: 20px;
}

.rcw-form .form-control {
    height: 45px;
    border-radius: 0;
    border: 1px solid #ebebeb;
    box-shadow: none;
    font-family: inherit;
}

.rcw-form .form-control:focus {
    border-color: var(--booking-accent);
    box-shadow: none;
}

.rcw-form.bookform label {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    color: #242424;
}

#search_field {
    border-color: var(--booking-accent) !important;
}

.error-message {
    color: #d9534f;
    font-size: 0.85em;
    margin-top: 5px;
    display: none;
}

.loading-spinner {
    display: none;
    margin-left: 10px;
}

#char-count {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    margin-top: 5px;
}

.form-main-heading {
    color: #242424;
    text-align: center;
    margin: 0;
    padding: 0 !important;
    width: 100%;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
    max-height: 500px;
    overflow-y: auto;
    padding: 5px;
}

.service-card {
    background: #fff;
    border: 1px solid #ebebeb;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.service-card:hover {
    border-color: #242424;
}

.service-card.active {
    border-color: var(--booking-accent);
    background: #fcfcfc;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.service-card.active::after {
    content: '\2713';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #242424;
    color: #fff;
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 20px;
    font-weight: bold;
}

.service-card-img {
    width: 100%;
    aspect-ratio: 1.5;
    object-fit: cover;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.service-card h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #242424;
    font-weight: 700;
    text-transform: uppercase;
}

.service-card .service-price {
    font-weight: 700;
    font-size: 16px;
    color: #c9b083;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 12px;
    line-height: 1.5;
    color: #777;
    margin: 0;
}

.summary-container {
    padding: 10px 0;
}

.discount-section {
    background: #fcfcfc;
    border: 1px solid #ebebeb;
    padding: 20px;
    margin-bottom: 0;
}

.section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #242424;
}

.order-summary-card {
    background: #fcfcfc;
    color: #242424;
    padding: 25px;
    border: 1px solid #ebebeb;
    border-radius: 0;
}

.summary-title {
    color: #242424;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 10px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.summary-line.discount-line {
    color: #d9534f;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ebebeb;
    font-size: 18px;
    font-weight: 700;
    color: var(--booking-accent);
}

.input-group .form-control {
    border-right: none;
}

.btn-secondary {
    background: #242424;
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 0 20px;
    height: 45px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: var(--booking-accent);
    color: #242424;
}

@media (max-width: 991px) {
    .order-summary-card {
        margin-top: 30px;
    }
}
