@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap');

:root{
  --andora-dark:#070e17;
  --andora-blue:#3e7aca;
  --andora-blue-hover:#3469af;
  --andora-red:#b51e27;
  --andora-white:#ffffff;
  --andora-surface:#f4f4f4;
  --andora-border:#d9dde3;
  --andora-text:#20242b;
  --andora-text-secondary:#5d626b;
  --andora-success:#137333;
}

.booking-page{
  min-height:100vh;
  margin:0;
  color:var(--andora-text);
  background:var(--andora-dark);
  font-family:'Jost',Arial,sans-serif;
  overflow-x:hidden;
}

.booking-shell{
  width:calc(100% - 32px);
  max-width:580px;
  min-height:100vh;
  margin:0 auto;
  padding:38px 0 28px;
  box-sizing:border-box;
}

.booking-brand{
  width:max-content;
  max-width:100%;
  margin:0 auto 18px;
  padding:11px 22px;
  box-sizing:border-box;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border-radius:8px;
  box-shadow:0 8px 24px rgba(0,0,0,.24);
}
.booking-brand-logo{
  display:block;
  width:170px;
  max-width:100%;
  height:auto;
}

.booking-page .booking-card{
  position:relative;
  overflow:hidden;
  margin:0;
  padding:0;
  border:1px solid rgba(255,255,255,.12);
  border-radius:8px;
  background:var(--andora-white);
  box-shadow:0 14px 38px rgba(0,0,0,.38);
}
.booking-card-accent{
  height:4px;
  background:linear-gradient(90deg,var(--andora-red) 0 23%,var(--andora-blue) 23% 100%);
}
.booking-card-header{
  padding:29px 32px 24px;
  border-bottom:1px solid var(--andora-border);
  background:#fff;
}
.booking-eyebrow{
  margin:0 0 9px;
  color:var(--andora-red);
  font-size:.75rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.booking-page .booking-card h1{
  margin:0;
  color:var(--andora-text);
  font-size:clamp(1.55rem,4vw,2rem);
  font-weight:500;
  line-height:1.18;
  letter-spacing:-.015em;
}
.booking-page .booking-intro{
  margin:10px 0 0;
  color:var(--andora-text-secondary);
  font-size:1rem;
}
.booking-duration{
  width:max-content;
  max-width:100%;
  margin:15px 0 0;
  padding:7px 10px;
  display:flex;
  align-items:center;
  gap:8px;
  color:#4b5563;
  background:#f2f6fb;
  border:1px solid #d7e1ed;
  border-radius:4px;
  font-size:.82rem;
  line-height:1.2;
}
.booking-duration span{
  font-weight:500;
}
.booking-duration strong{
  color:#254d83;
  font-weight:700;
}
.booking-content{padding:27px 32px 32px;}

.booking-page .booking-date-label{margin:0;}
.booking-date-label>span{
  display:block;
  margin-bottom:8px;
  color:#3f454e;
  font-size:.76rem;
  font-weight:600;
  letter-spacing:.07em;
  text-transform:uppercase;
}
.booking-page #date{
  min-height:48px;
  padding:11px 13px;
  color:var(--andora-text);
  background:#fff;
  border:1px solid #bfc5cd;
  border-radius:4px;
  color-scheme:light;
  transition:border-color .15s ease,box-shadow .15s ease;
}
.booking-page #date:hover{border-color:#8f969f;}
.booking-page #date:focus{
  outline:none;
  border-color:var(--andora-blue);
  box-shadow:0 0 0 3px rgba(62,122,202,.22);
}

.booking-availability-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin:28px 0 13px;
}
.booking-page .booking-availability-head h2{
  margin:0;
  color:var(--andora-text);
  font-size:1.08rem;
  font-weight:500;
}
.booking-status{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:var(--andora-success);
  font-size:.76rem;
  font-weight:600;
  white-space:nowrap;
}
.booking-status>span{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--andora-success);
}

.booking-page .slots{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(118px,1fr));
  gap:9px;
  min-height:44px;
  color:var(--andora-text-secondary);
}
.booking-page .slot{
  width:100%;
  min-height:44px;
  padding:10px 12px;
  color:#254d83;
  background:#fff;
  border:1px solid #bfc9d6;
  border-radius:4px;
  font-weight:600;
  box-shadow:none;
  transition:background .15s ease,border-color .15s ease,color .15s ease,transform .12s ease;
}
.booking-page .slot:hover{
  transform:translateY(-1px);
  color:#fff;
  background:var(--andora-blue);
  border-color:var(--andora-blue);
}
.booking-page .slot:focus-visible{
  outline:2px solid var(--andora-blue);
  outline-offset:2px;
}
.booking-page .slot.active{
  color:#fff;
  background:var(--andora-blue);
  border-color:var(--andora-blue);
}
.booking-page .slot.active:hover{background:var(--andora-blue-hover);border-color:var(--andora-blue-hover);}

.booking-page .booking-form-card{
  margin:24px 0 0;
  padding:22px;
  border:1px solid var(--andora-border);
  border-radius:4px;
  background:var(--andora-surface);
  box-shadow:none;
}
.booking-page .booking-form-card h2{
  margin-bottom:14px;
  color:var(--andora-text);
  font-size:1.08rem;
  font-weight:500;
}
.booking-page .booking-form-card label{
  margin-top:12px;
  color:#474c54;
  font-size:.84rem;
  font-weight:600;
}
.booking-page .booking-form-card input,
.booking-page .booking-form-card textarea{
  min-height:44px;
  margin-top:6px;
  color:var(--andora-text);
  background:#fff;
  border-radius:4px;
}
.booking-page .booking-form-card input:focus,
.booking-page .booking-form-card textarea:focus{
  outline:none;
  border-color:var(--andora-blue);
  box-shadow:0 0 0 3px rgba(62,122,202,.2);
}
.booking-page .booking-form-card button{
  width:100%;
  min-height:48px;
  margin-top:18px;
  color:#fff;
  background:var(--andora-blue);
  border-radius:4px;
  font-weight:600;
  transition:background .15s ease,transform .12s ease;
}
.booking-page .booking-form-card button:hover{background:var(--andora-blue-hover);transform:translateY(-1px);}
.booking-page .booking-form-card button:focus-visible{outline:2px solid #fff;outline-offset:2px;box-shadow:0 0 0 4px var(--andora-blue);}

.booking-footer{
  margin:16px 0 0;
  color:#b6bfca;
  font-size:.78rem;
  font-weight:400;
  letter-spacing:.04em;
  text-align:center;
}
.booking-footer span{color:var(--andora-red);padding:0 5px;}

@media (max-width:640px){
  .booking-shell{width:calc(100% - 24px);max-width:580px;padding:22px 0 20px;}
  .booking-brand{margin-bottom:14px;padding:9px 19px;}
  .booking-brand-logo{width:150px;}
  .booking-card-header{padding:24px 20px 20px;}
  .booking-content{padding:22px 20px 24px;}
  .booking-page .booking-card h1{font-size:1.5rem;}
  .booking-availability-head{align-items:flex-end;margin-top:24px;}
  .booking-status{font-size:.71rem;}
  .booking-page .slots{grid-template-columns:repeat(2,minmax(0,1fr));}
  .booking-page .booking-form-card{padding:18px;}
}

@media (prefers-reduced-motion:reduce){
  .booking-page *, .booking-page *::before, .booking-page *::after{scroll-behavior:auto!important;transition:none!important;animation:none!important;}
}
