
/* =======================================================
   Booking Calendar Page
======================================================= */

.booking-page{
    background:#f8fafc;
}

.booking-hero{
    background:
        linear-gradient(rgba(2,6,23,.82),rgba(2,6,23,.9)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80");
    background-size:cover;
    background-position:center;
    color:white;
    padding:76px 30px 130px;
}

.booking-hero-inner{
    max-width:1200px;
    margin:auto;
}

.booking-hero h1{
    max-width:800px;
    font-family:var(--font-heading);
    font-size:58px;
    line-height:1.05;
    margin:0 0 16px;
}

.booking-hero p{
    max-width:720px;
    color:#cbd5e1;
    font-size:18px;
    line-height:1.7;
    margin:0;
}

.booking-hero-meta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:26px;
}

.booking-hero-meta span{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.16);
    padding:9px 13px;
    border-radius:999px;
    font-weight:800;
}

.booking-shell{
    max-width:1200px;
    margin:-75px auto 80px;
    padding:0 24px;
    display:grid;
    grid-template-columns:1fr 360px;
    gap:26px;
    align-items:start;
    position:relative;
}

.booking-main{
    display:grid;
    gap:22px;
}

.booking-step-header{
    background:white;
    border:1px solid #e2e8f0;
    border-radius:28px;
    padding:26px;
    box-shadow:0 18px 45px rgba(15,23,42,.09);
}

.booking-step-header.compact{
    box-shadow:none;
    border:none;
    padding:0;
    margin-bottom:20px;
}

.booking-step-header span{
    color:#2563eb;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
}

.booking-step-header h2{
    color:#0f172a;
    font-family:var(--font-heading);
    font-size:34px;
    margin:8px 0 8px;
}

.booking-step-header p{
    color:#64748b;
    margin:0;
}

.calendar-card,
.time-card,
.summary-card,
.booking-help-card{
    background:white;
    border:1px solid #e2e8f0;
    border-radius:30px;
    box-shadow:0 18px 45px rgba(15,23,42,.09);
}

.calendar-card,
.time-card,
.summary-card,
.booking-help-card{
    padding:28px;
}

.calendar-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:18px;
    margin-bottom:20px;
}

.calendar-top h2{
    margin:0;
    color:#0f172a;
    font-family:var(--font-heading);
    font-size:28px;
}

.calendar-top p{
    margin:4px 0 0;
    color:#64748b;
    font-size:14px;
}

.calendar-top button{
    width:44px;
    height:44px;
    border:1px solid #e2e8f0;
    border-radius:16px;
    background:white;
    color:#0f172a;
    font-size:28px;
    cursor:pointer;
}

.calendar-days,
.calendar-grid{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:8px;
}

.calendar-days{
    color:#64748b;
    font-size:12px;
    font-weight:900;
    text-align:center;
    margin-bottom:10px;
}

.calendar-cell{
    min-height:56px;
    border:1px solid transparent;
    border-radius:18px;
    background:#f8fafc;
    color:#0f172a;
    cursor:pointer;
    transition:.2s ease;
}

.calendar-cell strong{
    display:block;
    font-size:16px;
}

.calendar-cell.available{
    background:#eff6ff;
    border-color:#bfdbfe;
}

.calendar-cell.available:hover{
    background:#dbeafe;
    transform:translateY(-2px);
}

.calendar-cell.selected{
    background:#2563eb;
    color:white;
    border-color:#2563eb;
    box-shadow:0 12px 26px rgba(37,99,235,.28);
}

.calendar-cell.no-class{
    opacity:.35;
    cursor:not-allowed;
}

.calendar-cell.empty{
    background:transparent;
    border:none;
    cursor:default;
}

.calendar-legend{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-top:18px;
    color:#64748b;
    font-size:13px;
}

.dot{
    display:inline-block;
    width:9px;
    height:9px;
    border-radius:50%;
    margin-right:6px;
}

.available-dot{
    background:#2563eb;
}

.full-dot{
    background:#94a3b8;
}

.time-group{
    margin-top:22px;
}

.time-group-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:12px;
}

.time-group-header span{
    color:#0f172a;
    font-weight:900;
}

.time-group-header small{
    background:#eff6ff;
    color:#2563eb;
    padding:5px 9px;
    border-radius:999px;
    font-weight:900;
}

.time-options{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(130px,1fr));
    gap:12px;
}

.time-option{
    border:1px solid #cbd5e1;
    background:#f8fafc;
    border-radius:18px;
    padding:15px;
    text-align:left;
    cursor:pointer;
    transition:.2s ease;
}

.time-option strong{
    display:block;
    color:#0f172a;
    font-size:16px;
    margin-bottom:5px;
}

.time-option span{
    display:block;
    color:#64748b;
    font-size:12px;
}

.time-option small{
    display:inline-block;
    color:#2563eb;
    font-size:11px;
    font-weight:900;
    margin-top:9px;
}

.time-option:hover{
    background:#eff6ff;
    border-color:#2563eb;
}

.time-option.selected{
    background:#2563eb;
    border-color:#2563eb;
}

.time-option.selected strong,
.time-option.selected span,
.time-option.selected small{
    color:white;
}

.empty-time{
    color:#64748b;
    margin:0;
}

.booking-sidebar{
    position:sticky;
    top:96px;
}

.summary-label{
    display:inline-block;
    background:#eff6ff;
    color:#2563eb;
    padding:7px 12px;
    border-radius:999px;
    font-weight:900;
    font-size:12px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.summary-card h3{
    color:#0f172a;
    font-family:var(--font-heading);
    font-size:28px;
    margin:0 0 18px;
}

.summary-line{
    display:flex;
    justify-content:space-between;
    gap:16px;
    padding:13px 0;
    border-bottom:1px solid #f1f5f9;
}

.summary-line span{
    color:#64748b;
}

.summary-line strong{
    color:#0f172a;
    text-align:right;
}

.summary-line.highlight strong{
    color:#2563eb;
}

.total-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:24px 0;
}

.total-row span{
    color:#0f172a;
    font-size:18px;
    font-weight:900;
}

.total-row strong{
    color:#2563eb;
    font-size:28px;
}

.secure-note{
    color:#64748b;
    font-size:13px;
    line-height:1.5;
}

.booking-help-card{
    margin-top:18px;
}

.booking-help-card strong{
    display:block;
    color:#0f172a;
    margin-bottom:8px;
}

.booking-help-card p{
    color:#64748b;
    line-height:1.6;
    margin:0;
}

@media(max-width:1000px){
    .booking-shell{
        grid-template-columns:1fr;
    }

    .booking-sidebar{
        position:static;
    }
}

@media(max-width:640px){
    .booking-hero{
        padding:58px 20px 105px;
    }

    .booking-hero h1{
        font-size:38px;
    }

    .booking-shell{
        padding:0 14px;
    }

    .calendar-card,
    .time-card,
    .summary-card,
    .booking-help-card,
    .booking-step-header{
        padding:22px;
        border-radius:24px;
    }

    .calendar-cell{
        min-height:44px;
        border-radius:14px;
    }

    .calendar-top h2{
        font-size:22px;
    }

    .calendar-top button{
        width:38px;
        height:38px;
    }
}