/* ===============================
   OM BOOKING
================================= */

.om-booking-wrapper{
    max-width:900px;
    margin:60px auto;
    padding:20px;
}

.om-booking-header{
    text-align:center;
    margin-bottom:40px;
}

.om-booking-header .om-subtitle{
    color:#b48a47;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;
}

.om-booking-header h2{
    margin:10px 0;
    font-size:42px;
    color:#1f1f1f;
    font-weight:700;
}

.om-booking-header p{
    color:#666;
    max-width:650px;
    margin:auto;
    line-height:1.8;
}

/* CARD */

.om-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:35px;
    margin-bottom:30px;
}

.om-title{
    font-size:24px;
    margin-bottom:25px;
    color:#1f1f1f;
}

/* ===============================
SERVICE
================================= */

.om-service-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.om-service-card{
    display:flex;
    align-items:flex-start;
    gap:20px;
    border:1px solid #e6e6e6;
    border-radius:15px;
    padding:22px;
    cursor:pointer;
    transition:.3s;
}

.om-service-card:hover{
    border-color:#b48a47;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
}

.om-service-card input{
    margin-top:7px;
    transform:scale(1.2);
}

.om-service-card h4{
    margin:0;
    font-size:22px;
    color:#222;
}

.om-service-card p{
    margin-top:8px;
    color:#666;
    line-height:1.7;
}

.free{
    display:inline-block;
    margin-top:8px;
    color:#2e7d32;
    font-weight:700;
}

.paid{
    display:inline-block;
    margin-top:8px;
    color:#b48a47;
    font-weight:700;
}

/* ===============================
DAY BUTTONS
================================= */

.om-days{
    display:flex;
    gap:15px;
}

.om-day{
    flex:1;
    padding:15px;
    border:2px solid #ddd;
    background:#fff;
    border-radius:12px;
    cursor:pointer;
    font-size:17px;
    transition:.3s;
}

.om-day:hover,
.om-day.active{
    background:#b48a47;
    border-color:#b48a47;
    color:#fff;
}

/* ===============================
TIME SLOT
================================= */

.om-slot-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin-bottom:30px;
}

.om-slot{
    border:1px solid #ddd;
    background:#fff;
    padding:15px;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
    font-size:15px;
}

.om-slot:hover,
.om-slot.active{
    background:#b48a47;
    color:#fff;
    border-color:#b48a47;
}

/* ===============================
FORM
================================= */

.om-form{
    display:grid;
    gap:20px;
}

.om-form input{
    width:100%;
    height:58px;
    border:1px solid #ddd;
    border-radius:12px;
    padding:0 18px;
    font-size:16px;
    outline:none;
}

.om-form input:focus{
    border-color:#b48a47;
}

/* ===============================
BUTTON
================================= */

.om-footer{
    text-align:center;
}

.om-btn{

    width:100%;
    height:60px;

    background:#b48a47;
    color:#fff;

    border:none;
    border-radius:12px;

    font-size:19px;
    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

.om-btn:hover{

    background:#9b753d;

}

/* ===============================
RESPONSIVE
================================= */

@media(max-width:768px){

.om-booking-header h2{

font-size:32px;

}

.om-card{

padding:25px;

}

.om-slot-grid{
grid-template-columns:repeat(3,1fr);
}

.om-days{

flex-direction:column;

}

}

@media(max-width:480px){

.om-slot-grid{
grid-template-columns:repeat(2,1fr);
}

.om-service-card{
padding:15px;
gap:15px;
}
.om-service-card h4{
font-size:18px;
}
.om-service-card p{
font-size:14px;
margin-top:4px;
}

}

/* ===============================
MODAL STYLES
================================= */
.om-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999 !important;
}
.om-modal-content {
    background: #fff;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 18px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 99999999 !important;
}
.om-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}
.om-modal-close:hover {
    color: #000;
}

/* ===============================
WIZARD & ACCORDION
================================= */
.om-wizard-step {
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.om-wizard-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.om-btn-alt {
    background: #f1f1f1;
    color: #333;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.om-btn-alt:hover {
    background: #e2e2e2;
}

.om-btn.next-step {
    width: auto;
    padding: 12px 30px;
    height: auto;
}

/* Accordion */
.om-accordion {
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.om-accordion-header {
    width: 100%;
    text-align: left;
    background: #fdfaf5;
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #b48a47;
    cursor: pointer;
    transition: 0.3s;
}

.om-accordion-header:hover {
    background: #f6efe2;
}

.om-accordion-content {
    padding: 15px;
    background: #fff;
    border-top: 1px solid #eee;
}

/* Review Box */
.om-review-box {
    background: #fdfaf5;
    border: 1px solid #f0e6d2;
    padding: 20px;
    border-radius: 12px;
}
.om-review-box p {
    margin: 8px 0;
    font-size: 16px;
    color: #444;
}
.om-review-box p strong {
    color: #222;
    display: inline-block;
    width: 80px;
}

/* Custom Flatpickr Theme */
.flatpickr-calendar {
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: none !important;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 10px;
}
.flatpickr-innerContainer, 
.flatpickr-rContainer, 
.flatpickr-days, 
.dayContainer {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
}
.dayContainer {
    justify-content: space-around;
}
.flatpickr-day {
    max-width: 14.28% !important;
}
.flatpickr-day.selected {
    background: #b48a47 !important;
    border-color: #b48a47 !important;
}
.flatpickr-day:hover {
    background: #f6efe2 !important;
}

