/* Banes Residence - Tour Scheduler wizard styles */

.banes-tour-scope {
  --color-deep-blue: #021537;
  --color-electric-blue: #003D9A;
  --color-red: #911018;
  --color-gray: #C0C9CE;
  --color-black: #090909;
  --blue-500: #1A55C2;
  --blue-400: #4178DE;
  --blue-300: #7BA1EC;
  --surface-base: #fff;
  --surface-subtle: #F6F8F9;
  --text-strong: #021537;
  --text-body: #232A30;
  --text-muted: #586068;
  --border-default: #C0C9CE;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --glow-action: 0 0 0 1px rgba(0,61,154,.35), 0 8px 24px rgba(0,61,154,.45);
  --dur-base: .22s;
  --ease-standard: cubic-bezier(.4,0,.2,1);
  font-family: var(--font-sans);
  color: var(--text-body);
  line-height: 1.5;
}
.banes-tour-scope *,
.banes-tour-scope *::before,
.banes-tour-scope *::after { box-sizing: border-box; }
.banes-tour-scope img { max-width: 100%; }

.banes-tour-scope .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 700; text-decoration: none; cursor: pointer; border: 0;
  transition: all var(--dur-base) var(--ease-standard);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 0 100%);
}
.banes-tour-scope .btn-primary { background: var(--color-electric-blue); color: #fff; box-shadow: var(--glow-action); }
.banes-tour-scope .btn-primary:hover { background: #0049B8; color: #fff; }
.banes-tour-scope .btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.banes-tour-scope .btn-ghost:hover { border-color: #fff; color: #fff; }
.banes-tour-scope .btn-sm { font-size: 14px; padding: 10px 18px; }
.banes-tour-scope .btn-md { font-size: 15px; padding: 13px 24px; }
.banes-tour-scope .btn-lg { font-size: 16px; padding: 16px 30px; }
.banes-tour-scope .btn[disabled], .banes-tour-scope .btn.is-off { opacity: .45; pointer-events: none; }

.banes-tour-scope .book { position: relative; background: var(--color-deep-blue); overflow: hidden; }
.banes-tour-scope .book .inner { max-width: 1040px; margin: 0 auto; padding: 90px 40px 100px; }
.banes-tour-scope .eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.banes-tour-scope .eyebrow i { width: 26px; height: 2px; background: var(--color-red); display: inline-block; }
.banes-tour-scope .eyebrow span { color: var(--color-gray); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; }
.banes-tour-scope .book h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px,5.5vw,60px); line-height: 1.02; letter-spacing: -.02em; color: #fff; margin: 0 0 14px; }
.banes-tour-scope .book .sub { color: rgba(255,255,255,.72); font-size: 18px; margin: 0 0 40px; max-width: 50ch; }

.banes-tour-scope .stepper { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; margin-bottom: 40px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.14); }
.banes-tour-scope .sdot { display: flex; align-items: center; gap: 10px; }
.banes-tour-scope .sdot .n {
  width: 30px; height: 30px; flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: rgba(255,255,255,.5); background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.16);
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
}
.banes-tour-scope .sdot.active .n { color: #fff; background: var(--blue-500); border-color: var(--blue-400); }
.banes-tour-scope .sdot.done .n { color: #fff; background: var(--color-red); border-color: var(--color-red); }
.banes-tour-scope .sdot .lbl { color: rgba(255,255,255,.6); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.banes-tour-scope .sdot.active .lbl { color: #fff; }
.banes-tour-scope .sdash { color: rgba(255,255,255,.25); }

.banes-tour-scope .tour-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.banes-tour-scope .tour-card {
  cursor: pointer; text-align: left; padding: 28px 24px; background: rgba(255,255,255,.02);
  border: 1.5px solid rgba(255,255,255,.16);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  transition: all var(--dur-base) var(--ease-standard); color: inherit; font-family: inherit;
}
.banes-tour-scope .tour-card.on { background: rgba(65,120,222,.14); border-color: var(--blue-400); box-shadow: var(--glow-action); }
.banes-tour-scope .tour-card .ic { display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1.5px solid var(--blue-400); color: #fff; margin-bottom: 18px; }
.banes-tour-scope .tour-card.on .ic { border-color: var(--blue-300); }
.banes-tour-scope .tour-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: #fff; margin: 0 0 8px; }
.banes-tour-scope .tour-card p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.5; margin: 0; }

.banes-tour-scope .sec-h { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 20px; margin: 0 0 18px; }
.banes-tour-scope .days { display: grid; grid-template-columns: repeat(7,1fr); gap: 10px; margin-bottom: 40px; }
.banes-tour-scope .day {
  cursor: pointer; padding: 14px 6px; text-align: center; background: rgba(255,255,255,.02);
  border: 1.5px solid rgba(255,255,255,.14);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 0 100%);
  transition: all var(--dur-base) var(--ease-standard);
}
.banes-tour-scope .day.on { background: var(--blue-500); border-color: var(--blue-400); }
.banes-tour-scope .day .dow { display: block; color: rgba(255,255,255,.55); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.banes-tour-scope .day.on .dow { color: #fff; }
.banes-tour-scope .day .num { display: block; color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 22px; margin: 4px 0 2px; }
.banes-tour-scope .day .mon { display: block; color: rgba(255,255,255,.4); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.banes-tour-scope .day.on .mon { color: rgba(255,255,255,.85); }
.banes-tour-scope .slots { display: flex; flex-wrap: wrap; gap: 12px; }
.banes-tour-scope .slot {
  cursor: pointer; padding: 13px 22px; font-weight: 700; font-size: 15px; color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.02); border: 1.5px solid rgba(255,255,255,.16);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 0 100%);
  transition: all var(--dur-base) var(--ease-standard);
}
.banes-tour-scope .slot.on { background: var(--blue-500); border-color: var(--blue-400); color: #fff; }

.banes-tour-scope .details { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.banes-tour-scope .fields { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.banes-tour-scope .fields .full { grid-column: 1 / -1; }
.banes-tour-scope .fields label > span { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.72); margin-bottom: 8px; }
.banes-tour-scope .fields input, .banes-tour-scope .fields textarea, .banes-tour-scope .fields select {
  width: 100%; box-sizing: border-box; font-family: var(--font-sans); font-size: 15px; color: #fff;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.2); border-radius: 4px; padding: 13px 14px; outline: none;
}
.banes-tour-scope .fields input::placeholder, .banes-tour-scope .fields textarea::placeholder { color: rgba(255,255,255,.4); }
.banes-tour-scope .fields textarea { resize: vertical; min-height: 82px; }
.banes-tour-scope .fields select option { color: #021537; }
.banes-tour-scope .summary {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.14); padding: 28px 26px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}
.banes-tour-scope .summary h3 { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: #fff; margin: 0 0 20px; }
.banes-tour-scope .summary .r { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.10); }
.banes-tour-scope .summary .r .l { color: rgba(255,255,255,.55); font-size: 13px; font-weight: 600; }
.banes-tour-scope .summary .r .v { color: #fff; font-size: 14px; font-weight: 700; text-align: right; }

.banes-tour-scope .navbtns { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 44px; flex-wrap: wrap; }
.banes-tour-scope .bookerr { color: #F0A0A6; background: rgba(145,16,24,.18); border: 1px solid rgba(145,16,24,.4); padding: 12px 16px; margin-top: 18px; font-size: 14px; border-radius: 4px; }

.banes-tour-scope .done-wrap { position: relative; min-height: 70vh; display: flex; align-items: center; }
.banes-tour-scope .done-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; padding: 100px 40px; text-align: center; }
.banes-tour-scope .done-check {
  display: inline-flex; width: 72px; height: 72px; align-items: center; justify-content: center; border: 2px solid var(--color-red); color: #fff; margin-bottom: 28px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.banes-tour-scope .done-inner h1 { font-family: var(--font-display); font-weight: 800; font-size: 44px; letter-spacing: -.02em; color: #fff; margin: 0 0 16px; }
.banes-tour-scope .done-inner p { color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.6; margin: 0 0 32px; }
.banes-tour-scope .done-inner strong { color: #fff; }
.banes-tour-scope .done-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.banes-tour-scope .reassure { background: var(--surface-base); }
.banes-tour-scope .reassure .row { max-width: 1040px; margin: 0 auto; padding: 80px 40px; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.banes-tour-scope .re-item { display: flex; gap: 16px; align-items: flex-start; }
.banes-tour-scope .re-ic { display: inline-flex; width: 46px; height: 46px; flex: 0 0 auto; align-items: center; justify-content: center; border: 1.5px solid var(--color-electric-blue); color: var(--color-electric-blue); }
.banes-tour-scope .re-item h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--text-strong); margin: 0 0 6px; }
.banes-tour-scope .re-item p { color: var(--text-body); font-size: 14px; line-height: 1.55; margin: 0; }

@media (max-width: 820px) {
  .banes-tour-scope .tour-grid { grid-template-columns: 1fr; }
  .banes-tour-scope .days { grid-template-columns: repeat(4,1fr); }
  .banes-tour-scope .details { grid-template-columns: 1fr; }
  .banes-tour-scope .reassure .row { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .banes-tour-scope .fields { grid-template-columns: 1fr; }
  .banes-tour-scope .days { grid-template-columns: repeat(3,1fr); }
}
