﻿/* ======================================
   Brutalsurfcam
   booking.css
   v0.9.0
====================================== */

/* =========================
   Hero
========================= */

.booking-hero{

    padding:140px 10% 70px;

    text-align:center;

    background:#f8fafc;

}

.booking-tag{

    color:var(--accent);

    letter-spacing:2.2px;

    font-size:var(--text-sm);

    font-weight:700;

    margin-bottom:16px;

}

.booking-hero h1{

    font-size:clamp(2rem,4.2vw,3.25rem);

    color:var(--primary);

    margin-bottom:18px;

}

.booking-hero p{

    color:#666;

    font-size:var(--text-base);

    max-width:700px;

    margin:auto;

    line-height:var(--line-relaxed);

}

/* =========================
   Layout
========================= */

.booking-layout{

    max-width:1320px;
    margin:0 auto;
    padding:0 6% 80px;

    display:grid;
    grid-template-columns:minmax(0,1fr);

    gap:32px;

    align-items:start;

}

/* =========================
   Left
========================= */

.booking-main{

    min-width:0;
    display:flex;
    flex-direction:column;

    gap:18px;

}

/* =========================
   Card
========================= */

.booking-card{

    background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(245,249,255,.92));

    border-radius:20px;

    padding:36px;

    box-shadow:var(--shadow);

    transition:.25s;

}

.booking-card:hover{

    transform:translateY(-2px);

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.booking-card h2{

    margin:0;

    font-size:12px;

    color:var(--accent);

    text-align:left;

}

.booking-card h3{

    margin:10px 0 12px;

    font-size:clamp(1.5rem, 2.4vw, 2rem);

    color:var(--primary);

}

.booking-card p{

    color:#777;

    line-height:var(--line-relaxed);

    margin-bottom:26px;

}

/* =========================
   Empty
========================= */

.empty-state{

    padding:60px;

    border:2px dashed #d9d9d9;

    border-radius:18px;

    text-align:center;

    color:#999;

    font-size:16px;

}

/* =========================
   Booking Calendar
========================= */

.booking-calendar{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.calendar-grid-wrapper{

    min-height:420px;

}

.booking-panel{

    min-height:120px;

}

/* =========================
   Calendar
========================= */

#bookingCalendar{

    min-height:420px;

    width:100%;

}

/* =========================
   Time
========================= */

#timeSection{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:16px;

}

/* =========================
   Spot
========================= */

#spotSection{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:16px;

}

/* =========================
   Summary Extra
========================= */

.summary-divider{

    border:none;

    border-top:1px solid #ececec;

    margin:24px 0;

}

.summary-hint{

    color:#888;

    font-size:var(--text-sm);

    line-height:var(--line-relaxed);

    min-height:52px;

}

/* =========================
   Summary
========================= */

.booking-summary{

    display:block;

    background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(245,249,255,.92));

    border-radius:20px;

    padding:28px;

    box-shadow:var(--shadow);

}

.booking-summary h2{

    margin:0 0 22px;

    text-align:left;

    font-size:clamp(1.2rem, 1.8vw, 1.45rem);

    color:var(--primary);

}

/* =========================
   Summary Row
========================= */

.summary-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 0;

    border-bottom:1px solid #ececec;

}

.summary-row span{

    color:#777;

}

.summary-row strong{

    color:var(--primary);

}

/* =========================
   Continue
========================= */

#continueBtn{

    width:100%;

    margin-top:28px;

    padding:16px;

    border:none;

    border-radius:50px;

    background:var(--accent);

    color:white;

    font-size:var(--text-base);

    font-weight:700;

    cursor:pointer;

    transition:.25s;

}

#continueBtn:hover{

    transform:translateY(-2px);

}

#continueBtn:disabled{

    background:#d5d5d5;

    cursor:not-allowed;

}

/* =========================
   Calendar Placeholder
========================= */

.calendar-placeholder{

    height:430px;

    display:flex;

    justify-content:center;

    align-items:center;

    border:2px dashed #dadada;

    border-radius:20px;

    color:#999;

}

/* =========================
   Mobile
========================= */

@media(max-width:768px){

    .booking-layout{

        display:flex;
        flex-direction:column;

    }

    .booking-summary{

        position:static;

    }

}

@media(max-width:768px){

    .booking-hero{

        margin:92px 16px 18px;
        padding:28px 20px 24px;
        border-radius:24px;

    }

    .booking-layout{

        padding:0 16px 64px;
        gap:20px;

    }

    .booking-hero h1{

        font-size:clamp(1.8rem,7vw,2.35rem);
        line-height:1.05;

    }

    .booking-card{

        padding:20px;
        border-radius:22px;

    }

    .booking-card h3{
        margin:8px 0 10px;
        font-size:clamp(1.35rem,5vw,1.65rem);
    }

    .booking-card p{
        margin-bottom:18px;
        font-size:var(--text-sm);
    }

    .booking-calendar{
        padding:14px;
        gap:14px;
    }

    .calendar-header{
        margin-bottom:14px;
    }

    .calendar-legend{
        gap:10px;
        margin-bottom:14px;
    }

    .calendar-week{
        margin-bottom:10px;
        font-size:11px;
    }

    .calendar-grid{
        gap:6px;
    }

    .calendar-day{
        width:36px;
        height:36px;
        border-radius:12px;
        font-size:12px;
    }

    #timeSection{

        grid-template-columns:1fr;
        gap:12px;

    }

    #spotSection{

        grid-template-columns:1fr;
        gap:12px;

    }

    .booking-period{
        padding:16px;
        border-radius:20px;
    }

    .booking-period-header{
        margin-bottom:14px;
    }

    .booking-period-title{
        gap:12px;
    }

    .booking-period-icon{
        width:42px;
        height:42px;
        border-radius:14px;
    }

    .booking-period-copy strong{
        font-size:1rem;
    }

    .slot-card{
        padding:14px;
        border-radius:16px;
    }

    .slot-label{
        font-size:.96rem;
    }

    .spot-panel{
        padding:18px;
        border-radius:20px;
    }

    .spot-panel-copy h3{
        font-size:clamp(1.25rem,6vw,1.65rem);
    }

    .spot-meta-grid{
        grid-template-columns:1fr;
    }

    .spot-choice{
        min-height:60px;
        padding:14px;
        border-radius:16px;
    }

    .spot-actions{
        gap:10px;
    }

    .primary-action,
    .secondary-action{
        width:100%;
    }

    .booking-summary{
        padding:20px 18px 18px;
        border-radius:20px;
    }

    .booking-summary h2{
        font-size:clamp(1.05rem,5vw,1.3rem);
    }

    .summary-row{
        padding:12px 0;
    }

    .summary-hint{
        min-height:auto;
    }

    .booking-auth-modal{
        width:96vw;
    }

    .advanced-service-section{
        padding:18px;
        border-radius:22px;
    }

    .advanced-service-header h3{
        font-size:clamp(1.25rem,5vw,1.55rem);
    }

    .advanced-service-block{
        padding:14px;
        border-radius:16px;
    }

    .issue-chip-grid,
    .toggle-option-grid{
        grid-template-columns:1fr;
    }

    .issue-chip,
    .toggle-option{
        min-height:46px;
    }

}

/* ========================================
   Booking Calendar UI
======================================== */

.calendar-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

}

.month-btn{

    width:36px;
    height:36px;

    border:none;

    border-radius:50%;

    background:#f3f3f3;

    cursor:pointer;

    transition:var(--transition);

}

.month-btn:hover{

    background:var(--primary);

    color:#fff;

}

#monthYear{

    font-size:clamp(1.25rem, 2vw, 1.625rem);

    font-weight:700;

    text-align:center;

}

.calendar-legend{

    display:flex;

    gap:18px;

    margin-bottom:18px;

    flex-wrap:wrap;

}

.calendar-legend span{

    display:flex;

    align-items:center;

    gap:6px;

    font-size:var(--text-sm);

}

.dot{

    width:10px;

    height:10px;

    border-radius:50%;

}

.dot.green{

    background:var(--green);

}

.dot.yellow{

    background:var(--yellow);

}

.dot.red{

    background:var(--red);

}

.dot.gray{

    background:var(--gray);

}

.dot.ended{

    background:#64748b;

}

.calendar-week{

    display:grid;

    grid-template-columns:repeat(7,1fr);

    text-align:center;

    margin-bottom:10px;

    color:#666;

    font-size:var(--text-sm);

    font-weight:600;

}

.calendar-grid{

    display:grid;

    grid-template-columns:repeat(7,1fr);

    gap:8px;

}

.calendar-day{

    width:40px;

    height:40px;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:var(--text-sm);

    color:white;

    cursor:pointer;

    transition:var(--transition);

}

.calendar-day:hover{

    transform:scale(1.08);

}

.calendar-day.empty{

    visibility:hidden;

}

.calendar-day.today{

    outline:3px solid var(--primary);

}

.calendar-day.green{

    background:var(--green);

}

.calendar-day.yellow{

    background:var(--yellow);

}

.calendar-day.red{

    background:var(--red);

}

.calendar-day.gray{

    background:var(--gray);

}

.calendar-day.ended{

    background:linear-gradient(180deg, #94a3b8, #64748b);

}

/* ========================================
   Booking UI Refresh
======================================== */

body{

    position:relative;
    overflow-x:hidden;
    background:
        radial-gradient(circle at top left, rgba(0,119,255,.10), transparent 28%),
        radial-gradient(circle at bottom right, rgba(0,53,102,.08), transparent 26%),
        linear-gradient(180deg, #f5f9ff 0%, #ffffff 44%, #f8fbff 100%);

}

body::before,
body::after{

    content:"";
    position:fixed;
    pointer-events:none;
    z-index:-1;
    border-radius:50%;
    filter:blur(10px);

}

body::before{

    top:-120px;
    left:-140px;
    width:320px;
    height:320px;
    background:rgba(0,119,255,.12);

}

body::after{

    right:-110px;
    bottom:100px;
    width:280px;
    height:280px;
    background:rgba(0,53,102,.08);

}

header{

    background:rgba(255,255,255,.72);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(0,53,102,.08);

}

.booking-hero{

    position:relative;
    width:min(1320px, calc(100% - clamp(32px, 8vw, 96px)));
    margin:calc(var(--space-8) + 38px) auto var(--space-5);
    padding:clamp(28px, 4vw, 44px);
    text-align:left;
    border-radius:32px;
    background:linear-gradient(135deg, rgba(255,255,255,.92), rgba(245,250,255,.86));
    border:1px solid rgba(255,255,255,.85);
    box-shadow:0 24px 80px rgba(12,33,71,.08);
    overflow:hidden;

}

.booking-hero::after{

    content:"";
    position:absolute;
    inset:auto -30px -40px auto;
    width:180px;
    height:180px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(0,119,255,.18), transparent 68%);
    pointer-events:none;

}

.booking-tag{

    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(0,119,255,.10);
    color:var(--primary);
    letter-spacing:2.2px;
    font-size:12px;
    font-weight:700;
    font-family:var(--font-sans);

}

.booking-hero h1{

    max-width:760px;
    font-size:clamp(34px,4.2vw,52px);
    line-height:1.08;
    color:var(--primary);
    margin:0 0 14px;
    letter-spacing:-0.04em;
    font-family:var(--font-sans);
    font-weight:700;

}

.booking-hero p{

    margin:0;
    max-width:760px;
    color:#5d6b7c;
    font-size:var(--text-base);
    line-height:var(--line-relaxed);
    letter-spacing:-0.01em;
    font-family:var(--font-sans);

}

.booking-layout{

    max-width:1320px;
    margin:0 auto;
    padding:0 clamp(16px, 6vw, 96px) 92px;
    display:grid;
    grid-template-columns:minmax(0,1fr);
    gap:32px;
    align-items:start;

}

.booking-main{

    display:flex;
    flex-direction:column;
    min-width:0;
    max-width:860px;

    gap:var(--space-5);

}

.booking-card,
.booking-summary{

    background:rgba(255,255,255,.82);
    backdrop-filter:blur(18px);
    border:1px solid rgba(0,53,102,.08);
    border-radius:28px;
    box-shadow:var(--shadow);

}

.booking-card{

    padding:clamp(22px, 3vw, 30px);
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;

}

.booking-card:hover{

    transform:translateY(-3px);
    box-shadow:0 24px 70px rgba(12,33,71,.10);
    border-color:rgba(0,119,255,.16);

}

.booking-card h2,
.booking-summary h2{

    color:var(--accent);
    letter-spacing:1.5px;
    text-transform:uppercase;

}

.booking-card h3{

    font-size:clamp(1.5rem, 2.4vw, 2rem);
    line-height:1.15;

}

.booking-card p{

    color:#647284;
    max-width:66ch;

}

.booking-calendar{

    padding:clamp(16px, 2.5vw, 20px);
    border-radius:24px;
    background:linear-gradient(180deg, rgba(255,255,255,.8), rgba(244,248,255,.9));
    border:1px solid rgba(0,53,102,.06);

}

.calendar-header{

    margin-bottom:18px;

}

.month-btn{

    width:40px;
    height:40px;
    background:#eff4fb;
    color:var(--primary);
    box-shadow:inset 0 0 0 1px rgba(0,53,102,.06);

}

.month-btn:hover{

    background:var(--primary);
    color:#fff;

}

#monthYear{

    font-size:clamp(1.25rem, 2vw, 1.625rem);

}

.calendar-legend{

    margin-bottom:20px;
    color:#6a7688;

}

.calendar-week{

    margin-bottom:14px;
    color:#647284;

}

.calendar-grid{

    gap:10px;

}

.calendar-day{

    width:44px;
    height:44px;
    border-radius:16px;
    font-weight:700;
    color:rgba(255,255,255,.95);
    box-shadow:0 10px 18px rgba(15,35,67,.10);

}

.calendar-day:hover{

    transform:translateY(-2px) scale(1.03);

}

.calendar-day.today{

    outline:none;
    box-shadow:0 0 0 3px rgba(0,53,102,.16), 0 10px 18px rgba(15,35,67,.10);

}

.calendar-day.selected{

    outline:3px solid rgba(0,53,102,.22);
    box-shadow:0 0 0 6px rgba(0,119,255,.12), 0 12px 22px rgba(15,35,67,.16);
    transform:translateY(-1px) scale(1.04);

}

#timeSection{

    display:flex;
    flex-direction:column;
    gap:18px;

}

.booking-section-intro{

    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:18px;
    margin-bottom:6px;

}

.booking-section-intro h3{

    margin:8px 0 0;
    font-size:clamp(1.35rem, 2vw, 1.65rem);
    color:var(--primary);

}

.section-kicker{

    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--accent);
    font-weight:700;

}

.booking-section-intro p{

    margin:0;
    max-width:330px;
    color:#6a7688;
    line-height:var(--line-relaxed);

}

.booking-period-list{

    display:flex;
    flex-direction:column;
    gap:16px;

}

.booking-period{

    padding:20px;
    border-radius:24px;
    background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(245,249,255,.88));
    border:1px solid rgba(0,53,102,.08);
    box-shadow:0 14px 34px rgba(12,33,71,.05);

}

.booking-period-header{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    margin-bottom:18px;

}

.booking-period-title{

    display:flex;
    align-items:center;
    gap:14px;
    min-width:0;

}

.booking-period-icon{

    position:relative;
    flex:0 0 auto;
    width:50px;
    height:50px;
    border-radius:16px;
    overflow:hidden;
}

.booking-period-icon::before{

    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;

}

.booking-period-icon.morning::before{

    background:linear-gradient(135deg, #ffd36d, #ff9f2e);

}

.booking-period-icon.morning::after{

    content:"";
    position:absolute;
    inset:13px auto auto 13px;
    width:12px;
    height:12px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 0 0 8px rgba(255,255,255,.15);

}

.booking-period-icon.afternoon::before{

    background:linear-gradient(135deg, #7ec8ff, #0077ff);

}

.booking-period-icon.afternoon::after{

    content:"";
    position:absolute;
    inset:10px 10px 10px auto;
    width:18px;
    height:18px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.92);
    border-left-color:transparent;
    border-bottom-color:transparent;
    transform:rotate(18deg);

}

.booking-period-copy{

    display:flex;
    flex-direction:column;
    gap:4px;
    min-width:0;

}

.booking-period-copy strong{

    font-size:1.15rem;
    color:var(--primary);

}

.booking-period-copy span{

    color:#6a7688;
    font-size:var(--text-sm);

}

.period-badge{

    flex:0 0 auto;
    padding:9px 13px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;

}

.period-badge.open{

    background:rgba(46,204,113,.12);
    color:var(--green);

}

.period-badge.full{

    background:rgba(231,76,60,.10);
    color:var(--red);

}

.period-badge.closed{

    background:rgba(207,207,207,.22);
    color:#8d97a7;

}

.booking-slot-grid{

    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;

}

.slot-card{

    appearance:none;
    border:none;
    text-align:left;
    padding:16px;
    border-radius:20px;
    background:rgba(255,255,255,.92);
    border:1px solid rgba(0,53,102,.08);
    box-shadow:0 10px 24px rgba(12,33,71,.05);
    cursor:pointer;
    transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
    display:flex;
    flex-direction:column;
    gap:8px;
    color:var(--text);

}

.slot-card:hover{

    transform:translateY(-3px);
    border-color:rgba(0,119,255,.18);
    box-shadow:0 18px 34px rgba(12,33,71,.10);

}

.slot-card.selected{

    border-color:rgba(0,119,255,.35);
    background:linear-gradient(180deg, rgba(0,119,255,.06), rgba(255,255,255,.96));
    box-shadow:0 0 0 4px rgba(0,119,255,.08), 0 18px 34px rgba(12,33,71,.10);
    transform:translateY(-2px);

}

.slot-card.booked{

    background:linear-gradient(180deg, rgba(0,119,255,.05), rgba(255,255,255,.96));

}

.slot-card.closed{

    background:linear-gradient(180deg, rgba(233,237,243,.96), rgba(247,249,252,.98));
    color:#93a0b2;
    box-shadow:none;
    border-style:dashed;
    cursor:not-allowed;

}

.slot-card.closed:hover{

    transform:none;
    box-shadow:none;
    border-color:rgba(0,53,102,.08);

}

.slot-card-top{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;

}

.slot-time{

    font-size:var(--text-base);
    font-weight:700;
    color:var(--primary);

}

.slot-chip{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:6px 10px;
    border-radius:999px;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;

}

.slot-chip.booked{

    background:rgba(46,204,113,.12);
    color:var(--green);

}

.slot-chip.open{

    background:rgba(0,119,255,.10);
    color:var(--accent);

}

.slot-chip.closed{

    background:rgba(207,207,207,.26);
    color:#8792a4;

}

.slot-label{

    font-size:1.03rem;
    font-weight:700;
    color:#18263b;

}

.slot-meta{

    font-size:var(--text-sm);
    color:#6a7688;

}

.slot-card.closed .slot-time,
.slot-card.closed .slot-label,
.slot-card.closed .slot-meta{

    color:#9aa5b5;

}

#spotSection{

    display:flex;
    flex-direction:column;

}

.spot-panel{

    padding:22px;
    border-radius:24px;
    background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(245,249,255,.88));
    border:1px solid rgba(0,53,102,.08);
    box-shadow:0 14px 34px rgba(12,33,71,.06);

}

.spot-panel-copy h3{

    margin:8px 0 10px;
    font-size:clamp(1.5rem, 2.4vw, 2rem);
    color:var(--primary);

}

.spot-panel-copy p{

    margin:0;
    color:#6a7688;
    line-height:var(--line-relaxed);

}

.spot-meta-grid{

    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
    margin-top:20px;

}

.spot-meta-card{

    padding:16px;
    border-radius:18px;
    background:rgba(255,255,255,.8);
    border:1px solid rgba(0,53,102,.06);
    box-shadow:0 8px 20px rgba(12,33,71,.04);
    display:flex;
    flex-direction:column;
    gap:8px;

}

.spot-meta-card span{

    font-size:12px;
    color:#6a7688;
    letter-spacing:1px;
    text-transform:uppercase;

}

.spot-meta-card strong{

    font-size:1.05rem;
    color:var(--primary);

}

.spot-grid{

    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
    margin-top:20px;

}

.spot-choice{

    display:flex;
    align-items:center;
    gap:12px;
    padding:16px;
    border:none;
    border-radius:18px;
    background:rgba(255,255,255,.9);
    border:1px solid rgba(0,53,102,.08);
    box-shadow:0 10px 24px rgba(12,33,71,.05);
    cursor:pointer;
    text-align:left;
    transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;

}

.spot-choice:hover{

    transform:translateY(-3px);
    border-color:rgba(0,119,255,.18);
    box-shadow:0 18px 34px rgba(12,33,71,.10);

}

.spot-choice.is-selected{

    border-color:rgba(0,119,255,.52);
    background:linear-gradient(180deg, rgba(255,255,255,1), rgba(237,246,255,.94));
    box-shadow:0 20px 40px rgba(0,119,255,.16);
    transform:translateY(-2px);

}

.spot-choice.is-selected .spot-choice-dot{

    box-shadow:0 0 0 8px rgba(0,119,255,.14);

}

.spot-choice.is-selected .spot-choice-label{

    color:#0b4ea2;

}

.spot-choice-dot{

    width:12px;
    height:12px;
    border-radius:50%;
    background:linear-gradient(135deg, var(--accent), var(--primary));
    box-shadow:0 0 0 6px rgba(0,119,255,.10);
    flex:0 0 auto;

}

.spot-choice-label{

    font-size:var(--text-base);
    font-weight:700;
    color:var(--primary);

}

.spot-actions{

    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:20px;

}

.primary-action,
.secondary-action{

    appearance:none;
    border:none;
    border-radius:999px;
    min-height:48px;
    padding:14px 18px;
    font-size:var(--text-base);
    font-weight:700;
    cursor:pointer;
    transition:transform .24s ease, box-shadow .24s ease, background .24s ease;

}

.primary-action{

    background:linear-gradient(135deg, var(--accent), #0062cc);
    color:#fff;
    box-shadow:0 14px 24px rgba(0,119,255,.22);

}

.secondary-action{

    background:#eef4fb;
    color:var(--primary);

}

.primary-action:hover,
.secondary-action:hover{

    transform:translateY(-2px);

}

.spot-panel.empty{

    min-height:220px;
    display:flex;
    align-items:center;

}

.booking-auth-modal{

    width:min(920px, 92vw);
    background:
        radial-gradient(circle at top right, rgba(14,165,233,.12), transparent 28%),
        radial-gradient(circle at bottom left, rgba(59,130,246,.10), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(241,247,255,.88));
    backdrop-filter:blur(28px);
    border:1px solid rgba(255,255,255,.7);
    box-shadow:0 28px 80px rgba(12,33,71,.18);

}

.auth-copy{

    margin:-12px 0 22px;
    color:#667487;
    line-height:var(--line-relaxed);

}

.auth-summary-grid{

    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
    margin-bottom:20px;

}

.auth-summary-row{

    display:flex;
    flex-direction:column;
    gap:8px;
    padding:16px 18px;
    border-radius:18px;
    background:#f7faff;
    border:1px solid rgba(0,53,102,.06);

}

.auth-summary-row span{

    font-size:12px;
    color:#79879a;
    letter-spacing:1px;
    text-transform:uppercase;

}

.auth-summary-row strong{

    font-size:var(--text-base);
    color:var(--primary);

}

.auth-input-grid{

    display:grid;
    gap:14px;
    margin:0 0 18px;

}

.auth-input-row{

    display:flex;
    flex-direction:column;
    gap:8px;
    padding:16px 18px;
    border-radius:18px;
    background:#f8fbff;
    border:1px solid rgba(0,53,102,.08);

}

.auth-input-row span{

    font-size:12px;
    color:#79879a;
    letter-spacing:1px;
    text-transform:uppercase;

}

.auth-input-row strong{

    font-size:var(--text-base);
    color:var(--primary);

}

.auth-input-row input{

    width:100%;
    border:1px solid rgba(0,53,102,.16);
    border-radius:14px;
    padding:12px 14px;
    font-size:var(--text-base);
    color:var(--primary);
    background:#fff;

}

.auth-input-row input:focus{

    outline:none;
    border-color:#0ea5e9;
    box-shadow:0 0 0 3px rgba(14,165,233,.12);

}

.google-button-slot{

    display:flex;
    justify-content:center;
    margin:8px 0 14px;
    min-height:48px;

}

.google-login-status{

    min-height:24px;
    margin:0 0 18px;
    text-align:center;
    color:#667487;
    font-size:12px;

}

.advanced-service-section{

    margin-top:10px;
    padding:22px;
    border-radius:26px;
    border:1px solid rgba(0,53,102,.08);
    background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(246,250,255,.94));
    box-shadow:0 18px 40px rgba(12,33,71,.08);

}

.advanced-service-header{

    margin-bottom:18px;

}

.advanced-service-kicker{

    margin:0 0 6px;
    color:var(--accent);
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;

}

.advanced-service-header h3{

    margin:0 0 8px;
    font-size:clamp(1.35rem, 2vw, 1.65rem);
    color:var(--primary);

}

.advanced-service-header p{

    margin:0;
    color:#667487;
    line-height:var(--line-relaxed);

}

.advanced-service-block{

    margin-bottom:18px;
    padding:16px 16px 14px;
    border-radius:20px;
    background:rgba(255,255,255,.76);
    border:1px solid rgba(0,53,102,.06);

}

.advanced-service-block h4{

    margin:0 0 12px;
    font-size:var(--text-base);
    color:#20304d;

}

.issue-chip-grid{

    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;

}

.issue-chip{

    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 16px;
    border-radius:18px;
    border:1px solid rgba(0,53,102,.10);
    background:#fff;
    color:var(--primary);
    cursor:pointer;
    transition:var(--transition);
    text-align:left;

}

.issue-chip:hover,
.issue-chip.selected{

    border-color:rgba(14,165,233,.9);
    background:linear-gradient(135deg, #1287f5, #0f4c81);
    color:#fff;
    box-shadow:0 14px 28px rgba(12,33,71,.18);
    transform:translateY(-1px);

}

.issue-icon{

    width:36px;
    height:36px;
    border-radius:12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#eef6ff;
    color:var(--accent);
    font-weight:700;
    flex:0 0 auto;

}

.issue-chip:hover .issue-icon,
.issue-chip.selected .issue-icon{

    background:rgba(255,255,255,.18);
    color:#fff;

}

.issue-other-field,
.consultant-select-field{

    display:flex;
    flex-direction:column;
    gap:8px;
    margin-top:12px;
    padding:14px 16px;
    border-radius:18px;
    background:#f8fbff;
    border:1px solid rgba(0,53,102,.08);

}

.issue-other-field span,
.consultant-select-field span{

    font-size:12px;
    color:#79879a;
    letter-spacing:1px;
    text-transform:uppercase;

}

.issue-other-field input,
.consultant-select-field select{

    width:100%;
    border:1px solid rgba(0,53,102,.16);
    border-radius:14px;
    padding:12px 14px;
    font-size:var(--text-base);
    color:var(--primary);
    background:#fff;

}

.toggle-option-grid{

    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;

}

.toggle-option{

    min-height:48px;
    padding:14px 16px;
    border-radius:16px;
    border:1px solid rgba(0,53,102,.10);
    background:#fff;
    color:var(--primary);
    font-weight:700;
    cursor:pointer;
    transition:var(--transition);

}

.toggle-option:hover,
.toggle-option.selected{

    border-color:rgba(14,165,233,.9);
    background:linear-gradient(135deg, #1287f5, #0f4c81);
    color:#fff;
    box-shadow:0 14px 28px rgba(12,33,71,.18);
    transform:translateY(-1px);

}

.service-note{

    margin:0 0 12px;
    color:#667487;
    font-size:var(--text-sm);

}

.advanced-service-footer{

    display:flex;
    justify-content:flex-end;
    margin-top:8px;
    margin-bottom:16px;

}

.addon-total-card{

    width:min(320px, 100%);
    padding:16px 18px;
    border-radius:18px;
    background:linear-gradient(180deg, #fff, #f3f8ff);
    border:1px solid rgba(0,53,102,.08);
    box-shadow:0 16px 34px rgba(12,33,71,.10);
    text-align:right;

}

.addon-total-label{

    display:block;
    margin-bottom:8px;
    font-size:12px;
    color:#79879a;
    letter-spacing:1px;
    text-transform:uppercase;

}

.addon-total-card strong{

    display:block;
    font-size:1.5rem;
    color:var(--accent);
    margin-bottom:8px;

}

.addon-total-card small{

    display:block;
    color:#667487;
    line-height:var(--line-relaxed);

}

.consent-check-row{

    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
    padding:14px 16px;
    border-radius:18px;
    background:#f8fbff;
    border:1px solid rgba(0,53,102,.08);
    color:var(--primary);
    font-weight:600;

}

.consent-check-row input{

    width:18px;
    height:18px;
    accent-color:var(--accent);

}

.consent-details{

    padding:14px 16px;
    border-radius:18px;
    background:#f8fbff;
    border:1px solid rgba(0,53,102,.08);
    margin-bottom:12px;

}

.consent-details summary{

    cursor:pointer;
    font-weight:700;
    color:var(--primary);

}

.consent-details div{

    margin-top:12px;
    display:grid;
    gap:10px;

}

.consent-details p{

    margin:0;
    color:#667487;
    line-height:var(--line-relaxed);

}

.booking-summary{

    display:none;
    padding:22px 20px 20px;
    border-radius:24px;
    box-shadow:0 18px 48px rgba(12,33,71,.10);

}

.booking-summary h2{

    margin-bottom:18px;
    font-size:clamp(1.2rem, 1.8vw, 1.45rem);

}

.summary-row{

    padding:12px 0;

}

.summary-row strong{

    font-size:var(--text-base);

}

.summary-divider{

    margin:18px 0;

}

.summary-hint{

    color:#5f6d7e;
    min-height:58px;
    margin:0;
    font-size:var(--text-sm);
    line-height:var(--line-relaxed);

}

#continueBtn{

    display:block;
    margin-top:18px;
    background:linear-gradient(135deg, var(--accent), #0062cc);
    box-shadow:0 16px 28px rgba(0,119,255,.22);
    min-height:50px;
    padding:14px;
    font-size:var(--text-base);

}

#continueBtn:disabled{

    background:#dce3ed;
    box-shadow:none;

}

@media(max-width:768px){

    .booking-hero{

        margin:92px 16px 20px;

    }

    .booking-layout{

        padding:0 16px 72px;
        display:flex;
        flex-direction:column;

    }

    .booking-summary{

        position:static;

    }

}

@media(max-width:768px){

    .booking-hero{

        padding:28px 20px;

    }

    .booking-hero h1{

        font-size:clamp(2rem, 8vw, 2.35rem);

    }

    .booking-card{

        padding:20px;

        border-radius:24px;

    }

    .booking-calendar{

        padding:14px;

    }

    .booking-section-intro{

        flex-direction:column;
        align-items:flex-start;

    }

    .booking-slot-grid,
    .spot-grid,
    .spot-meta-grid{

        grid-template-columns:1fr;

    }

    .booking-period{

        padding:16px;

    }

    .booking-period-header{

        align-items:flex-start;
        flex-direction:column;

    }

    .booking-period-title{

        width:100%;

    }

    .calendar-grid{

        gap:8px;

    }

    .calendar-day{

        width:40px;
        height:40px;
        border-radius:14px;

    }

    .spot-panel,
    .booking-summary{

        padding:20px;

        border-radius:22px;

    }

    .booking-auth-modal{

        width:95vw;

    }

    .auth-summary-grid{

        grid-template-columns:1fr;

    }

    .issue-chip-grid,
    .toggle-option-grid{

        grid-template-columns:1fr;

    }

    .advanced-service-footer{

        justify-content:center;

    }

    .addon-total-card{

        width:100%;
        text-align:left;

    }

    .consent-check-row{

        align-items:flex-start;

    }

}

