/* Booking module styles. Extracted from app/templates/booking/*.html. */

/* Landing page: /booking */
        :root{
            --g-dark: #1E3932;
            --g-mid: #00704A;
            --g-lite: #6EE7B7;
            --beige: #F5F0E8;
            --cream: #FAFAF7;
            --white: #FFFFFF;
            --t-dark: #1A2E25;
            --t-mid: #3A5248;
            --t-mute: #8A9E98;
            --gold: #C4923A;
            --r-sm: 12px;
            --r-md: 20px;
            --r-lg: 32px;
            --r-xl: 48px;
            --sh-sm: 0 2px 12px rgba(0, 112, 74, .08);
            --sh-md: 0 8px 32px rgba(0, 0, 0, .08);
            --sh-lg: 0 24px 64px rgba(0, 0, 0, .14);
            --font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        *,
body.booking-index *::before,
body.booking-index *::after{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html{
            scroll-behavior: smooth;
        }

        body.booking-index{
            font-family: var(--font-family);
            background: var(--cream);
            color: var(--t-dark);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body.booking-index a{
            text-decoration: none;
            color: inherit;
        }

        body.booking-index img{
            max-width: 100%;
        }

        /* ── NAV ── */
        body.booking-index nav{
            font-family: var(--font-family);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 200;
            padding: 16px 0;
            transition: all .3s;
        }

        body.booking-index nav.sc{
            background: rgba(250, 250, 247, .94);
            backdrop-filter: blur(22px);
            border-bottom: 1px solid rgba(0, 112, 74, .1);
            padding: 10px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
        }

        body.booking-index nav:not(.sc){
            background: linear-gradient(180deg, rgba(10, 34, 27, .58), rgba(10, 34, 27, 0));
        }

        body.booking-index .ni{
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        body.booking-index .logo{
            display: flex;
            align-items: center;
            gap: 10px;
        }

        body.booking-index .logo-icon{
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--g-mid), #0E5C36);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            box-shadow: 0 6px 18px rgba(0, 112, 74, .28);
        }

        body.booking-index .logo-text{
            font-family: var(--font-family);
            font-weight: 700;
            font-size: 1.3rem;
            letter-spacing: -.02em;
            color: var(--g-dark);
        }

        body.booking-index .logo-text span{
            color: var(--g-mid);
        }

        body.booking-index nav:not(.sc) .logo-text{
            color: rgba(255, 255, 255, .92);
            text-shadow: 0 1px 14px rgba(0, 0, 0, .24);
        }

        body.booking-index nav:not(.sc) .logo-text span{
            color: var(--g-lite);
        }

        body.booking-index .nl{
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }

        body.booking-index .nl a{
            font-family: var(--font-family);
            font-size: .88rem;
            font-weight: 600;
            letter-spacing: -.01em;
            color: var(--t-mid);
            transition: color .2s;
        }

        body.booking-index .nl a:hover{
            color: var(--g-mid);
        }

        body.booking-index nav:not(.sc) .nl a{
            color: rgba(255, 255, 255, .86);
            text-shadow: 0 1px 12px rgba(0, 0, 0, .22);
        }

        body.booking-index nav:not(.sc) .nl a:hover{
            color: #fff;
        }

        body.booking-index .nc{
            display: flex;
            gap: 10px;
            align-items: center;
        }

        body.booking-index .btn{
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 22px;
            border-radius: 100px;
            font-size: .88rem;
            font-weight: 600;
            letter-spacing: -.01em;
            cursor: pointer;
            border: none;
            transition: all .25s;
            font-family: var(--font-family);
        }

        body.booking-index .btn-gh{
            background: transparent;
            color: var(--g-dark);
            border: 1.5px solid rgba(30, 57, 50, .2);
        }

        body.booking-index .btn-gh:hover{
            border-color: var(--g-mid);
            color: var(--g-mid);
        }

        body.booking-index .btn-pr{
            background: var(--g-mid);
            color: #fff;
            box-shadow: 0 4px 16px rgba(0, 112, 74, .28);
        }

        body.booking-index nav:not(.sc) .btn-pr{
            background: #079B68;
            color: #fff;
            box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
        }

        body.booking-index .btn-pr:hover{
            background: var(--g-dark);
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(0, 112, 74, .38);
        }

        body.booking-index .btn-wh{
            background: #fff;
            color: var(--g-dark);
        }

        body.booking-index .btn-wh:hover{
            background: var(--beige);
            transform: translateY(-2px);
        }

        body.booking-index .btn-gl{
            background: rgba(255, 255, 255, .1);
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, .2);
            backdrop-filter: blur(10px);
        }

        body.booking-index .btn-gl:hover{
            background: rgba(255, 255, 255, .18);
            transform: translateY(-2px);
        }

        body.booking-index .btn-lg{
            padding: 15px 34px;
            font-size: .97rem;
        }

        /* ── HERO ── */
        body.booking-index .hero{
            min-height: 100vh;
            background: linear-gradient(160deg, #112A20 0%, var(--g-dark) 50%, #0A3826 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 120px 28px 80px;
        }

        body.booking-index .hero::before{
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }

        body.booking-index .orb{
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: .38;
            pointer-events: none;
        }

        body.booking-index .o1{
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, #00704A, transparent);
            top: -200px;
            right: -120px;
            animation: forb 10s ease-in-out infinite;
        }

        body.booking-index .o2{
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, #0E5C36, transparent);
            bottom: -150px;
            left: -100px;
            animation: forb 12s ease-in-out infinite;
            animation-delay: -5s;
        }

        body.booking-index .o3{
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(196, 146, 58, .3), transparent);
            top: 38%;
            left: 22%;
            animation: forb 8s ease-in-out infinite;
            animation-delay: -3s;
        }

        @keyframes forb {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            50% {
                transform: translate(22px, -18px) scale(1.06);
            }
        }

        body.booking-index .hero-inner{
            position: relative;
            z-index: 2;
            max-width: 880px;
            width: 100%;
            margin: 0 auto;
            text-align: center;
        }

        body.booking-index .hero-badge{
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px 6px 10px;
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 100px;
            color: rgba(255, 255, 255, .82);
            font-size: .76rem;
            font-weight: 600;
            margin-bottom: 28px;
            backdrop-filter: blur(10px);
        }

        body.booking-index .bdot{
            width: 8px;
            height: 8px;
            background: #4ADE80;
            border-radius: 50%;
            animation: pdot 2s ease infinite;
            flex-shrink: 0;
        }

        @keyframes pdot {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: .55;
                transform: scale(1.4);
            }
        }

        body.booking-index .hero h1{
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2.4rem, 5vw, 4.2rem);
            font-weight: 600;
            color: #fff;
            line-height: 1.06;
            letter-spacing: -2px;
            margin-bottom: 22px;
        }

        body.booking-index .hero h1 em{
            font-style: normal;
            color: var(--g-lite);
        }

        body.booking-index .hero-sub{
            font-size: 1.08rem;
            color: rgba(255, 255, 255, .6);
            line-height: 1.78;
            max-width: 620px;
            margin: 0 auto 44px;
        }

        /* ── SEARCH BOX ── */
        body.booking-index .search-card{
            background: rgba(255, 255, 255, .97);
            border-radius: var(--r-lg);
            padding: 28px 32px;
            max-width: 860px;
            width: 100%;
            margin: 0 auto;
            box-shadow: 0 32px 80px rgba(0, 0, 0, .35), 0 0 0 1px rgba(255, 255, 255, .08);
            backdrop-filter: blur(20px);
        }

        body.booking-index .search-row{
            display: grid;
            grid-template-columns: 1fr 1fr auto;
            gap: 12px;
            align-items: end;
        }

        body.booking-index .sf{
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        body.booking-index .sf label{
            font-size: .76rem;
            font-weight: 600;
            color: var(--t-mute);
            text-transform: uppercase;
            letter-spacing: .6px;
        }

        body.booking-index .si-wrap{
            position: relative;
            display: flex;
            align-items: center;
        }

        body.booking-index .si-wrap i{
            position: absolute;
            left: 14px;
            color: var(--g-mid);
            font-size: .9rem;
            pointer-events: none;
        }

        body.booking-index .search-input{
            width: 100%;
            padding: 13px 14px 13px 40px;
            border: 1.5px solid rgba(0, 112, 74, .2);
            border-radius: 12px;
            font-family: 'Montserrat', sans-serif;
            font-size: .92rem;
            color: var(--t-dark);
            background: #fff;
            outline: none;
            transition: border-color .2s, box-shadow .2s;
        }

        body.booking-index .search-input:focus{
            border-color: var(--g-mid);
            box-shadow: 0 0 0 3px rgba(0, 112, 74, .12);
        }

        body.booking-index .search-input::placeholder{
            color: var(--t-mute);
        }

        body.booking-index .btn-search{
            background: linear-gradient(135deg, var(--g-mid), #0E5C36);
            color: #fff;
            border: none;
            border-radius: 12px;
            padding: 13px 30px;
            font-family: 'Montserrat', sans-serif;
            font-size: .95rem;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
            transition: all .25s;
            box-shadow: 0 6px 20px rgba(0, 112, 74, .3);
        }

        body.booking-index .btn-search:hover{
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(0, 112, 74, .4);
        }

        body.booking-index .search-tags{
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 16px;
        }

        body.booking-index .search-tag{
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 5px 13px;
            border-radius: 100px;
            border: 1.5px solid rgba(0, 112, 74, .18);
            background: rgba(0, 112, 74, .05);
            color: var(--g-dark);
            font-size: .76rem;
            font-weight: 600;
            cursor: pointer;
            transition: all .2s;
        }

        body.booking-index .search-tag:hover{
            background: var(--g-mid);
            color: #fff;
            border-color: var(--g-mid);
        }

        body.booking-index .search-tag i{
            color: var(--g-mid);
            font-size: .82rem;
        }

        body.booking-index .search-tag:hover i{
            color: #fff;
        }

        /* ── HERO STATS ── */
        body.booking-index .hero-stats{
            display: flex;
            gap: 0;
            justify-content: center;
            margin-top: 48px;
            position: relative;
            z-index: 2;
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: var(--r-md);
            backdrop-filter: blur(16px);
            overflow: hidden;
            max-width: 720px;
            width: 100%;
        }

        body.booking-index .hstat{
            flex: 1;
            padding: 20px 24px;
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, .1);
        }

        body.booking-index .hstat:last-child{
            border-right: none;
        }

        body.booking-index .hstat-n{
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: #fff;
            letter-spacing: -1px;
        }

        body.booking-index .hstat-l{
            font-size: .74rem;
            color: rgba(255, 255, 255, .48);
            margin-top: 3px;
        }

        /* ── SECTION BASE ── */
        body.booking-index .sec{
            padding: 96px 0;
        }

        body.booking-index .si{
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 28px;
        }

        body.booking-index .ey{
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 5px 14px;
            background: rgba(0, 112, 74, .09);
            border-radius: 100px;
            color: var(--g-mid);
            font-size: .74rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .8px;
            margin-bottom: 16px;
        }

        body.booking-index .st2{
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.9rem, 3.5vw, 2.7rem);
            font-weight: 600;
            color: var(--g-dark);
            letter-spacing: -1.2px;
            line-height: 1.1;
            margin-bottom: 14px;
        }

        body.booking-index .sub{
            font-size: .97rem;
            color: var(--t-mute);
            line-height: 1.78;
            max-width: 540px;
        }

        body.booking-index .sec-header{
            text-align: center;
            margin-bottom: 60px;
        }

        body.booking-index .sec-header .sub{
            margin: 0 auto;
        }

        /* ── HOW IT WORKS ── */
        body.booking-index .how-bg{
            background: var(--beige);
        }

        body.booking-index .how-grid{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
        }

        body.booking-index .how-grid::before{
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: linear-gradient(90deg, var(--g-mid), rgba(0, 112, 74, .15));
            z-index: 0;
        }

        body.booking-index .how-card{
            background: #fff;
            border-radius: var(--r-md);
            padding: 28px 22px;
            border: 1px solid rgba(0, 0, 0, .05);
            position: relative;
            z-index: 1;
            transition: all .32s;
            text-align: center;
        }

        body.booking-index .how-card:hover{
            transform: translateY(-5px);
            box-shadow: var(--sh-md);
        }

        body.booking-index .how-num{
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--g-dark);
            color: #fff;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
        }

        body.booking-index .how-icon{
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(0, 112, 74, .09);
            color: var(--g-mid);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin: 0 auto 16px;
        }

        body.booking-index .how-card h3{
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--g-dark);
            margin-bottom: 8px;
        }

        body.booking-index .how-card p{
            font-size: .83rem;
            color: var(--t-mute);
            line-height: 1.7;
        }

        /* ── SPECIALTIES SEARCH RESULTS ── */
        body.booking-index .spec-bar{
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 56px;
        }

        body.booking-index .spec-chip{
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 10px 18px;
            border-radius: 100px;
            border: 1.5px solid rgba(0, 112, 74, .18);
            background: #fff;
            color: var(--t-dark);
            font-size: .84rem;
            font-weight: 600;
            cursor: pointer;
            transition: all .2s;
        }

        body.booking-index .spec-chip:hover,
body.booking-index .spec-chip.active{
            background: var(--g-mid);
            color: #fff;
            border-color: var(--g-mid);
            box-shadow: 0 6px 18px rgba(0, 112, 74, .24);
        }

        body.booking-index .spec-chip i{
            font-size: 1rem;
        }

        /* ── DOCTOR CARDS ── */
        body.booking-index .doctors-grid{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        body.booking-index .doc-card{
            background: #fff;
            border-radius: var(--r-md);
            border: 1px solid rgba(0, 0, 0, .06);
            overflow: hidden;
            transition: all .3s;
            display: flex;
            flex-direction: column;
        }

        body.booking-index .doc-card:hover{
            transform: translateY(-4px);
            box-shadow: var(--sh-md);
            border-color: rgba(0, 112, 74, .16);
        }

        body.booking-index .doc-card-top{
            padding: 22px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
            border-bottom: 1px solid rgba(0, 0, 0, .04);
        }

        body.booking-index .doc-avatar{
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            color: #fff;
            flex-shrink: 0;
        }

        body.booking-index .doc-info h3{
            font-family: 'Montserrat', sans-serif;
            font-size: .98rem;
            font-weight: 600;
            color: var(--g-dark);
            margin-bottom: 3px;
        }

        body.booking-index .doc-info .doc-spec{
            font-size: .76rem;
            color: var(--g-mid);
            font-weight: 600;
            margin-bottom: 6px;
        }

        body.booking-index .doc-info .doc-city{
            font-size: .74rem;
            color: var(--t-mute);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        body.booking-index .doc-tags{
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            padding: 14px 22px;
        }

        body.booking-index .doc-tag{
            font-size: .68rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 100px;
            background: rgba(0, 112, 74, .08);
            color: var(--g-mid);
        }

        body.booking-index .doc-footer{
            padding: 14px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
        }

        body.booking-index .doc-avail{
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: .74rem;
            font-weight: 600;
            color: var(--g-mid);
        }

        body.booking-index .doc-avail::before{
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--g-mid);
        }

        body.booking-index .btn-rdv{
            background: linear-gradient(135deg, var(--g-mid), #0E5C36);
            color: #fff;
            border: none;
            border-radius: 100px;
            padding: 8px 18px;
            font-size: .78rem;
            font-weight: 600;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            transition: all .2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        body.booking-index .btn-rdv:hover{
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(0, 112, 74, .28);
        }

        body.booking-index .doc-rating{
            display: flex;
            align-items: center;
            gap: 3px;
            font-size: .72rem;
            font-weight: 600;
            color: var(--gold);
        }

        /* ── MAP SECTION ── */
        body.booking-index .map-section{
            background: var(--beige);
        }

        body.booking-index .map-layout{
            display: grid;
            grid-template-columns: 360px 1fr;
            gap: 28px;
            align-items: start;
        }

        body.booking-index .map-results{
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-height: 520px;
            overflow-y: auto;
            padding-right: 4px;
        }

        body.booking-index .map-results::-webkit-scrollbar{
            width: 4px;
        }

        body.booking-index .map-results::-webkit-scrollbar-track{
            background: rgba(0, 0, 0, .04);
            border-radius: 4px;
        }

        body.booking-index .map-results::-webkit-scrollbar-thumb{
            background: rgba(0, 112, 74, .3);
            border-radius: 4px;
        }

        body.booking-index .map-item{
            background: #fff;
            border-radius: var(--r-sm);
            padding: 14px;
            border: 1.5px solid transparent;
            cursor: pointer;
            transition: all .2s;
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        body.booking-index .map-item:hover,
body.booking-index .map-item.active{
            border-color: var(--g-mid);
            box-shadow: 0 4px 16px rgba(0, 112, 74, .14);
        }

        body.booking-index .map-av{
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: .85rem;
            color: #fff;
            flex-shrink: 0;
        }

        body.booking-index .map-info h4{
            font-size: .86rem;
            font-weight: 600;
            color: var(--g-dark);
            margin-bottom: 2px;
        }

        body.booking-index .map-info .map-spec{
            font-size: .72rem;
            color: var(--g-mid);
            font-weight: 600;
        }

        body.booking-index .map-info .map-addr{
            font-size: .7rem;
            color: var(--t-mute);
            margin-top: 4px;
            display: flex;
            align-items: flex-start;
            gap: 3px;
        }

        body.booking-index .map-avail-badge{
            font-size: .66rem;
            font-weight: 600;
            padding: 3px 9px;
            border-radius: 100px;
            background: rgba(0, 112, 74, .1);
            color: var(--g-mid);
            margin-top: 5px;
            display: inline-block;
        }

        body.booking-index #map{
            border-radius: var(--r-md);
            overflow: hidden;
            box-shadow: var(--sh-lg);
            height: 520px;
            border: 1px solid rgba(0, 0, 0, .06);
        }

        body.booking-index .leaflet-popup-content-wrapper{
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
        }

        body.booking-index .leaflet-popup-content{
            margin: 12px 16px;
            font-family: 'Montserrat', sans-serif;
        }

        body.booking-index .popup-name{
            font-weight: 600;
            font-size: .9rem;
            color: var(--g-dark);
            margin-bottom: 3px;
        }

        body.booking-index .popup-spec{
            font-size: .75rem;
            color: var(--g-mid);
            font-weight: 600;
            margin-bottom: 6px;
        }

        body.booking-index .popup-btn{
            display: block;
            width: 100%;
            text-align: center;
            background: var(--g-mid);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 8px;
            font-size: .76rem;
            font-weight: 600;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            margin-top: 8px;
        }

        body.booking-index .popup-btn:hover{
            background: var(--g-dark);
        }

        /* ── FEATURES GRID ── */
        body.booking-index .feat-grid{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        body.booking-index .feat-card{
            background: #fff;
            border-radius: var(--r-md);
            padding: 26px 22px;
            border: 1px solid rgba(0, 0, 0, .05);
            transition: all .3s;
        }

        body.booking-index .feat-card:hover{
            transform: translateY(-4px);
            box-shadow: var(--sh-md);
        }

        body.booking-index .feat-ic{
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            background: rgba(0, 112, 74, .09);
            color: var(--g-mid);
            margin-bottom: 16px;
        }

        body.booking-index .feat-card h3{
            font-family: 'Montserrat', sans-serif;
            font-size: .96rem;
            font-weight: 600;
            color: var(--g-dark);
            margin-bottom: 8px;
        }

        body.booking-index .feat-card p{
            font-size: .8rem;
            color: var(--t-mute);
            line-height: 1.68;
        }

        body.booking-index .feat-card.dark{
            background: linear-gradient(135deg, var(--g-dark), #0E5C36);
            border: none;
        }

        body.booking-index .feat-card.dark h3{
            color: #fff;
        }

        body.booking-index .feat-card.dark p{
            color: rgba(255, 255, 255, .55);
        }

        body.booking-index .feat-card.dark .feat-ic{
            background: rgba(255, 255, 255, .12);
            color: var(--g-lite);
        }

        /* ── PATIENT GUIDE ── */
        body.booking-index .guide-bg{
            background: #fff;
        }

        body.booking-index .guide-split{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        body.booking-index .guide-visual{
            background: var(--cream);
            border-radius: var(--r-lg);
            padding: 28px;
            border: 1px solid rgba(0, 0, 0, .06);
            box-shadow: var(--sh-md);
        }

        body.booking-index .guide-step{
            display: flex;
            gap: 16px;
            padding: 16px;
            border-radius: var(--r-sm);
            transition: background .2s;
            margin-bottom: 8px;
        }

        body.booking-index .guide-step:hover{
            background: #fff;
        }

        body.booking-index .guide-step:last-child{
            margin-bottom: 0;
        }

        body.booking-index .gs-num{
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--g-mid), #0E5C36);
            color: #fff;
            font-weight: 600;
            font-size: .88rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        body.booking-index .gs-body h4{
            font-size: .88rem;
            font-weight: 600;
            color: var(--g-dark);
            margin-bottom: 4px;
        }

        body.booking-index .gs-body p{
            font-size: .8rem;
            color: var(--t-mute);
            line-height: 1.65;
        }

        body.booking-index .flist{
            list-style: none;
            margin-top: 28px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        body.booking-index .flist li{
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: .87rem;
            color: var(--t-mid);
            line-height: 1.65;
        }

        body.booking-index .ck{
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--g-mid);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
            font-size: .65rem;
            color: #fff;
            font-weight: 600;
        }

        /* ── TESTIMONIALS ── */
        body.booking-index .testi-bg{
            background: var(--beige);
        }

        body.booking-index .tg{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        body.booking-index .tc{
            background: #fff;
            border-radius: var(--r-md);
            padding: 28px 26px;
            border: 1px solid rgba(0, 0, 0, .05);
        }

        body.booking-index .tstars{
            color: var(--gold);
            font-size: .78rem;
            margin-bottom: 12px;
        }

        body.booking-index .tquote{
            font-size: .88rem;
            color: var(--t-mid);
            line-height: 1.74;
            margin-bottom: 20px;
            font-style: italic;
        }

        body.booking-index .tauth{
            display: flex;
            align-items: center;
            gap: 12px;
        }

        body.booking-index .tav{
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 600;
            font-size: .88rem;
        }

        body.booking-index .taname{
            font-weight: 600;
            font-size: .84rem;
            color: var(--g-dark);
        }

        body.booking-index .tarole{
            font-size: .72rem;
            color: var(--t-mute);
        }

        /* ── CTA ── */
        body.booking-index .cta-bg{
            background: var(--g-dark);
            padding: 96px 0;
            position: relative;
            overflow: hidden;
        }

        body.booking-index .cta-bg::before{
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        body.booking-index .cta-inner{
            text-align: center;
            position: relative;
            z-index: 1;
        }

        body.booking-index .cta-inner h2{
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.9rem, 3.5vw, 3rem);
            font-weight: 600;
            color: #fff;
            letter-spacing: -1.5px;
            margin-bottom: 14px;
        }

        body.booking-index .cta-inner p{
            color: rgba(255, 255, 255, .55);
            font-size: 1rem;
            margin-bottom: 36px;
        }

        body.booking-index .cta-inner p strong{
            color: var(--g-lite);
        }

        body.booking-index .cta-actions{
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ── FOOTER ── */
        body.booking-index footer{
            background: var(--g-dark);
            border-top: 1px solid rgba(255, 255, 255, .06);
            padding: 64px 0 32px;
        }

        body.booking-index .ft{
            display: grid;
            grid-template-columns: 2.2fr 1fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
            margin-bottom: 28px;
        }

        body.booking-index .fb-desc{
            font-size: .82rem;
            color: rgba(255, 255, 255, .4);
            line-height: 1.72;
            margin-top: 13px;
            max-width: 270px;
        }

        body.booking-index .fcol h4{
            font-family: 'Montserrat', sans-serif;
            font-size: .82rem;
            font-weight: 600;
            color: rgba(255, 255, 255, .75);
            margin-bottom: 14px;
        }

        body.booking-index .fcol a{
            display: block;
            font-size: .8rem;
            color: rgba(255, 255, 255, .42);
            text-decoration: none;
            margin-bottom: 9px;
            transition: color .2s;
        }

        body.booking-index .fcol a:hover{
            color: var(--g-lite);
        }

        body.booking-index .fbot{
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        body.booking-index .fbot p{
            font-size: .74rem;
            color: rgba(255, 255, 255, .28);
        }

        /* ── FLOATING CHAT ── */
        body.booking-index .chat-fab{
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 999;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--g-mid), #0E5C36);
            color: #fff;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            cursor: pointer;
            box-shadow: 0 8px 28px rgba(0, 112, 74, .38);
            transition: all .25s;
        }

        body.booking-index .chat-fab:hover{
            transform: translateY(-3px) scale(1.05);
        }

        body.booking-index .chat-fab .ping{
            position: absolute;
            inset: -2px;
            border-radius: 50%;
            border: 2px solid rgba(0, 112, 74, .4);
            animation: cping 2.2s ease-out infinite;
        }

        @keyframes cping {
            0% {
                transform: scale(1);
                opacity: .7;
            }

            100% {
                transform: scale(1.55);
                opacity: 0;
            }
        }

        body.booking-index .chat-panel{
            position: fixed;
            bottom: 100px;
            right: 28px;
            width: 340px;
            background: #fff;
            border-radius: var(--r-md);
            box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
            z-index: 1000;
            border: 1px solid rgba(0, 0, 0, .07);
            display: none;
            flex-direction: column;
            overflow: hidden;
        }

        body.booking-index .chat-panel.open{
            display: flex;
        }

        body.booking-index .ch-head{
            background: linear-gradient(135deg, var(--g-dark), #0E5C36);
            padding: 14px 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #fff;
        }

        body.booking-index .ch-icon{
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(110, 231, 183, .18);
            border: 1px solid rgba(110, 231, 183, .3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .95rem;
            color: var(--g-lite);
        }

        body.booking-index .ch-name{
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: .9rem;
        }

        body.booking-index .ch-status{
            font-size: .64rem;
            color: rgba(255, 255, 255, .5);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        body.booking-index .ch-close{
            background: rgba(255, 255, 255, .12);
            border: none;
            color: #fff;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .85rem;
        }

        body.booking-index .ch-body{
            background: var(--cream);
            padding: 16px;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        body.booking-index .ch-msg{
            display: flex;
            gap: 8px;
            max-width: 88%;
        }

        body.booking-index .ch-bub{
            background: #fff;
            border-radius: 11px;
            padding: 9px 12px;
            font-size: .76rem;
            color: var(--t-mid);
            line-height: 1.6;
            border: 1px solid rgba(0, 0, 0, .05);
        }

        body.booking-index .ch-av{
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--g-mid);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .75rem;
            flex-shrink: 0;
        }

        body.booking-index .ch-foot{
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 14px;
            border-top: 1px solid rgba(0, 0, 0, .05);
            background: #fff;
        }

        body.booking-index .ch-input{
            flex: 1;
            border: 1.5px solid rgba(0, 112, 74, .15);
            border-radius: 100px;
            padding: 9px 15px;
            font-size: .78rem;
            font-family: 'Montserrat', sans-serif;
            outline: none;
            color: var(--t-dark);
        }

        body.booking-index .ch-input:focus{
            border-color: var(--g-mid);
        }

        body.booking-index .ch-send{
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--g-mid);
            color: #fff;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .82rem;
            cursor: pointer;
        }

        /* ── REVEAL ── */
        body.booking-index .rev{
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .55s ease, transform .55s ease;
        }

        body.booking-index .rev.vis{
            opacity: 1;
            transform: translateY(0);
        }

        /* ── RESPONSIVE ── */
        @media(max-width:1020px) {

            body.booking-index .how-grid,
body.booking-index .feat-grid{
                grid-template-columns: repeat(2, 1fr);
            }

            body.booking-index .doctors-grid{
                grid-template-columns: repeat(2, 1fr);
            }

            body.booking-index .map-layout{
                grid-template-columns: 1fr;
            }

            body.booking-index .ft{
                grid-template-columns: 1fr 1fr;
            }
        }

        @media(max-width:720px) {
            body.booking-index .search-row{
                grid-template-columns: 1fr;
            }

            body.booking-index .how-grid,
body.booking-index .feat-grid,
body.booking-index .tg{
                grid-template-columns: 1fr;
            }

            body.booking-index .doctors-grid{
                grid-template-columns: 1fr;
            }

            body.booking-index .guide-split{
                grid-template-columns: 1fr;
                gap: 40px;
            }

            body.booking-index .hero-stats{
                flex-direction: column;
                gap: 0;
            }

            body.booking-index .hstat{
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, .1);
            }

            body.booking-index .hstat:last-child{
                border-bottom: none;
            }

            body.booking-index .nl,
body.booking-index .nc{
                display: none;
            }

            body.booking-index .ft{
                grid-template-columns: 1fr 1fr;
            }
        }

/* Appointment booking page: /booking/<tenant> */
        :root{
            --g-dark: #1E3932;
            --g-mid: #00704A;
            --g-lite: #6EE7B7;
            --beige: #F5F0E8;
            --cream: #FAFAF7;
            --white: #FFFFFF;
            --t-dark: #1A2E25;
            --t-mid: #3A5248;
            --t-mute: #8A9E98;
            --gold: #C4923A;
            --blue: #2563EB;
            --r-sm: 12px;
            --r-md: 20px;
            --r-lg: 32px;
            --sh-sm: 0 2px 12px rgba(0, 112, 74, .08);
            --sh-md: 0 8px 32px rgba(0, 0, 0, .08);
            --sh-lg: 0 24px 64px rgba(0, 0, 0, .14);
        }

        *,
body.booking-appointment *::before,
body.booking-appointment *::after{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html{
            scroll-behavior: smooth;
        }

        body.booking-appointment{
            font-family: 'Montserrat', sans-serif;
            background: var(--cream);
            color: var(--t-dark);
            min-height: 100vh;
        }

        body.booking-appointment a{
            text-decoration: none;
            color: inherit;
        }

        /* NAV */
        body.booking-appointment nav{
            background: rgba(250, 250, 247, .96);
            backdrop-filter: blur(22px);
            border-bottom: 1px solid rgba(0, 112, 74, .1);
            padding: 12px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
            position: sticky;
            top: 0;
            z-index: 200;
        }

        body.booking-appointment .ni{
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        body.booking-appointment .logo{
            display: flex;
            align-items: center;
            gap: 10px;
        }

        body.booking-appointment .logo-icon{
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--g-mid), #0E5C36);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            box-shadow: 0 6px 18px rgba(0, 112, 74, .28);
        }

        body.booking-appointment .logo-text{
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.25rem;
            color: var(--g-dark);
        }

        body.booking-appointment .logo-text span{
            color: var(--g-mid);
        }

        body.booking-appointment .back-link{
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: .83rem;
            font-weight: 600;
            color: var(--t-mute);
            transition: color .2s;
            cursor: pointer;
        }

        body.booking-appointment .back-link:hover{
            color: var(--g-mid);
        }

        body.booking-appointment .btn{
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 9px 20px;
            border-radius: 100px;
            font-size: .85rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all .25s;
            font-family: 'Montserrat', sans-serif;
        }

        body.booking-appointment .btn-gh{
            background: transparent;
            color: var(--g-dark);
            border: 1.5px solid rgba(30, 57, 50, .2);
        }

        body.booking-appointment .btn-gh:hover{
            border-color: var(--g-mid);
            color: var(--g-mid);
        }

        body.booking-appointment .btn-pr{
            background: var(--g-mid);
            color: #fff;
            box-shadow: 0 4px 16px rgba(0, 112, 74, .28);
        }

        body.booking-appointment .btn-pr:hover{
            background: var(--g-dark);
            transform: translateY(-1px);
        }

        /* LAYOUT */
        body.booking-appointment .page{
            max-width: 1240px;
            margin: 0 auto;
            padding: 32px 28px 80px;
            display: grid;
            grid-template-columns: 340px 1fr;
            gap: 28px;
            align-items: start;
        }

        /* LEFT PANEL */
        body.booking-appointment .left-panel{
            display: flex;
            flex-direction: column;
            gap: 16px;
            position: sticky;
            top: 88px;
        }

        body.booking-appointment .profile-card{
            background: #fff;
            border-radius: var(--r-md);
            padding: 24px;
            border: 1px solid rgba(0, 0, 0, .06);
            box-shadow: var(--sh-sm);
        }

        body.booking-appointment .doc-header{
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 20px;
        }

        body.booking-appointment .doc-av{
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: #8B5CF6;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            color: #fff;
            flex-shrink: 0;
        }

        body.booking-appointment .doc-name{
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            color: var(--g-dark);
            margin-bottom: 3px;
        }

        body.booking-appointment .doc-city{
            font-size: .75rem;
            color: var(--t-mute);
            margin-bottom: 6px;
        }

        body.booking-appointment .spec-badge{
            display: inline-block;
            padding: 3px 12px;
            border-radius: 100px;
            background: rgba(139, 92, 246, .1);
            color: #7C3AED;
            font-size: .72rem;
            font-weight: 600;
        }

        body.booking-appointment .accepts-badge{
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: .74rem;
            font-weight: 600;
            color: var(--g-mid);
            padding: 8px 0;
            border-top: 1px solid rgba(0, 0, 0, .05);
            border-bottom: 1px solid rgba(0, 0, 0, .05);
            margin: 14px 0;
        }

        body.booking-appointment .accepts-badge::before{
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--g-mid);
            flex-shrink: 0;
        }

        body.booking-appointment .addr-row{
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: .78rem;
            color: var(--t-mid);
            line-height: 1.55;
            margin-bottom: 14px;
        }

        body.booking-appointment .addr-row i{
            color: var(--g-mid);
            margin-top: 2px;
            font-size: .8rem;
            flex-shrink: 0;
        }

        body.booking-appointment #mini-map{
            height: 150px;
            border-radius: var(--r-sm);
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, .06);
            margin-bottom: 12px;
        }

        body.booking-appointment .map-btns{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            margin-bottom: 14px;
        }

        body.booking-appointment .map-btn{
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 8px;
            border-radius: 10px;
            border: 1.5px solid rgba(0, 0, 0, .08);
            background: #fff;
            font-size: .74rem;
            font-weight: 600;
            color: var(--t-mid);
            cursor: pointer;
            transition: all .2s;
            text-decoration: none;
        }

        body.booking-appointment .map-btn:hover{
            border-color: var(--g-mid);
            color: var(--g-mid);
        }

        body.booking-appointment .map-btn i{
            font-size: .85rem;
        }

        body.booking-appointment .phone-row{
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: .82rem;
            font-weight: 600;
            color: var(--t-dark);
        }

        body.booking-appointment .phone-row i{
            color: var(--g-mid);
        }

        body.booking-appointment .msg-card{
            background: rgba(0, 112, 74, .04);
            border: 1.5px solid rgba(0, 112, 74, .12);
            border-radius: var(--r-md);
            padding: 18px;
            font-size: .78rem;
            color: var(--t-mid);
            line-height: 1.68;
        }

        body.booking-appointment .msg-card-label{
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: .7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            color: var(--g-mid);
            margin-bottom: 8px;
        }

        body.booking-appointment .acts-card{
            background: #fff;
            border-radius: var(--r-md);
            padding: 18px;
            border: 1px solid rgba(0, 0, 0, .06);
        }

        body.booking-appointment .acts-card-label{
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: .78rem;
            font-weight: 600;
            color: var(--g-dark);
            margin-bottom: 12px;
        }

        body.booking-appointment .acts-card-av{
            width: 32px;
            height: 32px;
            border-radius: 9px;
            background: #8B5CF6;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: .65rem;
            color: #fff;
        }

        body.booking-appointment .act-item{
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: .82rem;
            color: var(--t-mid);
            padding: 4px 0;
        }

        body.booking-appointment .act-item::before{
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--t-mute);
            flex-shrink: 0;
        }

        /* RIGHT PANEL - BOOKING */
        body.booking-appointment .booking-panel{
            background: #fff;
            border-radius: var(--r-lg);
            border: 1px solid rgba(0, 0, 0, .06);
            box-shadow: var(--sh-sm);
            overflow: hidden;
        }

        body.booking-appointment .booking-header{
            padding: 28px 32px 20px;
            border-bottom: 1px solid rgba(0, 0, 0, .05);
        }

        body.booking-appointment .booking-title{
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.4rem;
            color: var(--g-dark);
            margin-bottom: 20px;
        }

        /* STEPPER */
        body.booking-appointment .stepper{
            display: flex;
            align-items: center;
            gap: 0;
            margin-bottom: 4px;
        }

        body.booking-appointment .step{
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
        }

        body.booking-appointment .step:last-child{
            flex: none;
        }

        body.booking-appointment .step-num{
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: .78rem;
            flex-shrink: 0;
            transition: all .3s;
        }

        body.booking-appointment .step-num.done{
            background: var(--g-mid);
            color: #fff;
        }

        body.booking-appointment .step-num.active{
            background: var(--g-dark);
            color: #fff;
            box-shadow: 0 0 0 3px rgba(0, 112, 74, .2);
        }

        body.booking-appointment .step-num.waiting{
            background: rgba(0, 0, 0, .07);
            color: var(--t-mute);
        }

        body.booking-appointment .step-label{
            font-size: .72rem;
            font-weight: 600;
            transition: color .3s;
        }

        body.booking-appointment .step-label.active{
            color: var(--g-dark);
        }

        body.booking-appointment .step-label.done{
            color: var(--g-mid);
        }

        body.booking-appointment .step-label.waiting{
            color: var(--t-mute);
        }

        body.booking-appointment .step-line{
            flex: 1;
            height: 2px;
            background: rgba(0, 0, 0, .08);
            margin: 0 4px;
            border-radius: 2px;
            transition: background .3s;
        }

        body.booking-appointment .step-line.done{
            background: var(--g-mid);
        }

        /* BOOKING BODY */
        body.booking-appointment .booking-body{
            padding: 28px 32px;
        }

        body.booking-appointment .step-section{
            margin-bottom: 28px;
        }

        body.booking-appointment .step-section-title{
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: .72rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .8px;
            color: var(--t-mute);
            margin-bottom: 14px;
        }

        body.booking-appointment .step-section-num{
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .7rem;
            font-weight: 600;
            flex-shrink: 0;
        }

        body.booking-appointment .step-section-num.active-num{
            background: var(--g-dark);
            color: #fff;
        }

        body.booking-appointment .step-section-num.done-num{
            background: var(--g-mid);
            color: #fff;
        }

        body.booking-appointment .step-section-num.wait-num{
            background: rgba(0, 0, 0, .08);
            color: var(--t-mute);
        }

        body.booking-appointment .step-section.locked .step-section-title{
            color: rgba(0, 0, 0, .25);
        }

        body.booking-appointment .step-section.locked p{
            color: rgba(0, 0, 0, .2);
        }

        /* PRATICIEN SELECTED */
        body.booking-appointment .prat-selected{
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            background: var(--g-dark);
            color: #fff;
            border-radius: 12px;
        }

        body.booking-appointment .prat-av-sm{
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: #8B5CF6;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: .62rem;
            color: #fff;
        }

        body.booking-appointment .prat-name-sm{
            font-weight: 600;
            font-size: .83rem;
        }

        body.booking-appointment .prat-spec-sm{
            font-size: .68rem;
            color: rgba(255, 255, 255, .6);
        }

        /* ACT BUTTONS */
        body.booking-appointment .act-btns{
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        body.booking-appointment .act-btn{
            padding: 10px 22px;
            border-radius: 100px;
            border: 1.5px solid rgba(0, 0, 0, .12);
            background: #fff;
            font-size: .84rem;
            font-weight: 600;
            color: var(--t-dark);
            cursor: pointer;
            transition: all .2s;
            font-family: 'Montserrat', sans-serif;
        }

        body.booking-appointment .act-btn:hover{
            border-color: var(--g-mid);
            color: var(--g-mid);
        }

        body.booking-appointment .act-btn.selected{
            background: var(--g-mid);
            color: #fff;
            border-color: var(--g-mid);
            box-shadow: 0 4px 14px rgba(0, 112, 74, .25);
        }

        /* DATE PICKER */
        body.booking-appointment .date-nav{
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px;
        }

        body.booking-appointment .date-nav-title{
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: .9rem;
            color: var(--g-dark);
            text-transform: capitalize;
        }

        body.booking-appointment .date-nav-btn{
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1.5px solid rgba(0, 0, 0, .1);
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: .8rem;
            color: var(--t-mid);
            transition: all .2s;
        }

        body.booking-appointment .date-nav-btn:hover{
            border-color: var(--g-mid);
            color: var(--g-mid);
        }

        body.booking-appointment .days-grid{
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 6px;
            margin-bottom: 6px;
        }

        body.booking-appointment .day-label{
            text-align: center;
            font-size: .65rem;
            font-weight: 600;
            color: var(--t-mute);
            text-transform: uppercase;
            padding-bottom: 4px;
        }

        body.booking-appointment .day-cell{
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            font-size: .82rem;
            font-weight: 600;
            cursor: pointer;
            transition: all .2s;
            border: 1.5px solid transparent;
            position: relative;
        }

        body.booking-appointment .day-cell.empty{
            cursor: default;
        }

        body.booking-appointment .day-cell.past{
            color: rgba(0, 0, 0, .2);
            cursor: default;
        }

        body.booking-appointment .day-cell.has-slots{
            color: var(--g-dark);
            border-color: rgba(0, 112, 74, .15);
            background: rgba(0, 112, 74, .04);
        }

        body.booking-appointment .day-cell.has-slots:hover{
            background: var(--g-mid);
            color: #fff;
            border-color: var(--g-mid);
        }

        body.booking-appointment .day-cell.selected-day{
            background: var(--g-dark);
            color: #fff;
            border-color: var(--g-dark);
            box-shadow: 0 4px 12px rgba(30, 57, 50, .28);
        }

        body.booking-appointment .day-cell.today::after{
            content: '';
            position: absolute;
            bottom: 3px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--g-mid);
        }

        body.booking-appointment .day-cell.selected-day::after{
            background: #fff;
        }

        /* TIME SLOTS */
        body.booking-appointment .slots-grid{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            margin-top: 4px;
        }

        body.booking-appointment .slot-btn{
            padding: 9px 6px;
            border-radius: 10px;
            border: 1.5px solid rgba(0, 112, 74, .18);
            background: rgba(0, 112, 74, .04);
            font-size: .78rem;
            font-weight: 600;
            color: var(--g-dark);
            cursor: pointer;
            transition: all .2s;
            font-family: 'Montserrat', sans-serif;
            text-align: center;
        }

        body.booking-appointment .slot-btn:hover{
            background: var(--g-mid);
            color: #fff;
            border-color: var(--g-mid);
        }

        body.booking-appointment .slot-btn.selected-slot{
            background: var(--g-mid);
            color: #fff;
            border-color: var(--g-mid);
            box-shadow: 0 3px 10px rgba(0, 112, 74, .28);
        }

        body.booking-appointment .slot-btn.unavailable,
        body.booking-appointment .slot-btn.unavailable:hover{
            background: #12382d;
            border-color: #12382d;
            color: rgba(255, 255, 255, .68);
            cursor: not-allowed;
            box-shadow: none;
            opacity: .78;
            transform: none;
        }

        body.booking-appointment .slots-summary{
            font-size: .74rem;
            color: var(--t-mute);
            margin-bottom: 10px;
            line-height: 1.45;
        }

        body.booking-appointment .slots-legend{
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
            color: var(--t-mute);
            font-size: .72rem;
            font-weight: 600;
        }

        body.booking-appointment .slots-legend span{
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        body.booking-appointment .legend-dot{
            width: 9px;
            height: 9px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        body.booking-appointment .legend-dot.free{
            background: var(--g-mid);
        }

        body.booking-appointment .legend-dot.busy{
            background: #12382d;
        }

        body.booking-appointment .slots-status{
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 14px;
            border-radius: 12px;
            background: rgba(0, 112, 74, .05);
            border: 1px solid rgba(0, 112, 74, .12);
            color: var(--t-mid);
            font-size: .82rem;
            font-weight: 600;
            line-height: 1.45;
        }

        body.booking-appointment .slots-status i{
            color: var(--g-mid);
            flex-shrink: 0;
        }

        body.booking-appointment .slots-status-full{
            background: rgba(245, 158, 11, .08);
            border-color: rgba(245, 158, 11, .22);
            color: #92400e;
        }

        body.booking-appointment .slots-status-full i{
            color: #d97706;
        }

        body.booking-appointment .slots-status-error{
            background: rgba(239, 68, 68, .08);
            border-color: rgba(239, 68, 68, .22);
            color: #991b1b;
        }

        body.booking-appointment .slots-status-error i{
            color: #dc2626;
        }

        /* CONFIRM STEP */
        body.booking-appointment .confirm-card{
            background: var(--beige);
            border-radius: var(--r-md);
            padding: 22px;
            border: 1px solid rgba(0, 112, 74, .12);
        }

        body.booking-appointment .confirm-row{
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 10px 0;
            border-bottom: 1px solid rgba(0, 0, 0, .06);
            font-size: .83rem;
        }

        body.booking-appointment .confirm-row:last-child{
            border-bottom: none;
        }

        body.booking-appointment .confirm-label{
            color: var(--t-mute);
            font-weight: 500;
        }

        body.booking-appointment .confirm-val{
            font-weight: 600;
            color: var(--g-dark);
            text-align: right;
            max-width: 60%;
        }

        /* FORM */
        body.booking-appointment .form-grid{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-top: 20px;
        }

        body.booking-appointment .form-group{
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        body.booking-appointment .form-group.full{
            grid-column: 1/-1;
        }

        body.booking-appointment .form-label{
            font-size: .72rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .5px;
            color: var(--t-mute);
        }

        body.booking-appointment .form-input{
            padding: 11px 14px;
            border: 1.5px solid rgba(0, 0, 0, .1);
            border-radius: 11px;
            font-family: 'Montserrat', sans-serif;
            font-size: .88rem;
            color: var(--t-dark);
            outline: none;
            transition: border-color .2s, box-shadow .2s;
            background: #fff;
        }

        body.booking-appointment .form-input:focus{
            border-color: var(--g-mid);
            box-shadow: 0 0 0 3px rgba(0, 112, 74, .1);
        }

        body.booking-appointment .form-input::placeholder{
            color: var(--t-mute);
        }

        body.booking-appointment .gdpr-note{
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 14px;
            background: rgba(0, 112, 74, .04);
            border-radius: 11px;
            font-size: .74rem;
            color: var(--t-mute);
            line-height: 1.6;
            margin-top: 4px;
        }

        body.booking-appointment .gdpr-note i{
            color: var(--g-mid);
            margin-top: 1px;
            flex-shrink: 0;
        }

        /* CTA */
        body.booking-appointment .book-cta{
            background: linear-gradient(135deg, var(--g-mid), #0E5C36);
            color: #fff;
            border: none;
            border-radius: 14px;
            padding: 16px 32px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            margin-top: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all .25s;
            box-shadow: 0 6px 24px rgba(0, 112, 74, .3);
        }

        body.booking-appointment .book-cta:hover{
            transform: translateY(-2px);
            box-shadow: 0 10px 32px rgba(0, 112, 74, .4);
        }

        body.booking-appointment .book-cta:disabled{
            opacity: .45;
            cursor: not-allowed;
            transform: none;
        }

        /* LOCKED PLACEHOLDER */
        body.booking-appointment .locked-placeholder{
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: .82rem;
            color: rgba(0, 0, 0, .25);
            padding: 10px 0;
        }

        body.booking-appointment .locked-placeholder i{
            font-size: .78rem;
        }

        /* SUCCESS */
        body.booking-appointment .success-overlay{
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .5);
            backdrop-filter: blur(8px);
            z-index: 500;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        body.booking-appointment .success-overlay.show{
            display: flex;
        }

        body.booking-appointment .success-card{
            background: #fff;
            border-radius: var(--r-lg);
            padding: 48px 40px;
            max-width: 480px;
            width: 100%;
            text-align: center;
            box-shadow: 0 32px 80px rgba(0, 0, 0, .25);
        }

        body.booking-appointment .success-icon{
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--g-mid), #0E5C36);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #fff;
            margin: 0 auto 22px;
            box-shadow: 0 8px 28px rgba(0, 112, 74, .35);
        }

        body.booking-appointment .success-card h2{
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.5rem;
            color: var(--g-dark);
            margin-bottom: 10px;
        }

        body.booking-appointment .success-card p{
            font-size: .88rem;
            color: var(--t-mute);
            line-height: 1.68;
            margin-bottom: 22px;
        }

        body.booking-appointment .success-summary{
            background: var(--beige);
            border-radius: var(--r-sm);
            padding: 16px;
            margin-bottom: 24px;
            text-align: left;
        }

        body.booking-appointment .ss-row{
            display: flex;
            justify-content: space-between;
            font-size: .8rem;
            padding: 5px 0;
        }

        body.booking-appointment .ss-label{
            color: var(--t-mute);
        }

        body.booking-appointment .ss-val{
            font-weight: 600;
            color: var(--g-dark);
        }

        body.booking-appointment .wa-btn{
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 24px;
            background: #25D366;
            color: #fff;
            border: none;
            border-radius: 12px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: .9rem;
            cursor: pointer;
            width: 100%;
            margin-bottom: 10px;
            transition: all .2s;
        }

        body.booking-appointment .wa-btn:hover{
            background: #1ebb57;
            transform: translateY(-1px);
        }

        body.booking-appointment .close-success{
            background: transparent;
            border: 1.5px solid rgba(0, 0, 0, .1);
            color: var(--t-mute);
            border-radius: 12px;
            padding: 11px 24px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: .85rem;
            cursor: pointer;
            width: 100%;
            transition: all .2s;
        }

        body.booking-appointment .close-success:hover{
            border-color: var(--g-mid);
            color: var(--g-mid);
        }

        /* FLOATING CHAT */
        body.booking-appointment .chat-fab{
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 999;
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--g-mid), #0E5C36);
            color: #fff;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            cursor: pointer;
            box-shadow: 0 8px 28px rgba(0, 112, 74, .38);
            transition: all .25s;
        }

        body.booking-appointment .chat-fab:hover{
            transform: translateY(-3px) scale(1.05);
        }

        body.booking-appointment .chat-fab .ping{
            position: absolute;
            inset: -2px;
            border-radius: 50%;
            border: 2px solid rgba(0, 112, 74, .4);
            animation: cping 2.2s ease-out infinite;
        }

        @keyframes cping {
            0% {
                transform: scale(1);
                opacity: .7;
            }

            100% {
                transform: scale(1.55);
                opacity: 0;
            }
        }

        @media(max-width:900px) {
            body.booking-appointment .page{
                grid-template-columns: 1fr;
            }

            body.booking-appointment .left-panel{
                position: static;
            }

            body.booking-appointment #mini-map{
                height: 130px;
            }
        }

        @media(max-width:580px) {
            body.booking-appointment .page{
                padding: 16px 14px 60px;
            }

            body.booking-appointment .booking-body{
                padding: 18px 18px;
            }

            body.booking-appointment .booking-header{
                padding: 20px 18px 16px;
            }

            body.booking-appointment .slots-grid{
                grid-template-columns: repeat(3, 1fr);
            }

            body.booking-appointment .form-grid{
                grid-template-columns: 1fr;
            }
        }
