/* ============================================================
   W2S Contact Tool — Frontend CSS
   ============================================================ */

:root {
  --w2s-purple-deep:    #4B126E;
  --w2s-purple:         #CE8261;
  --w2s-magenta:        #E13B92;
  --w2s-lavender-bg:    #FBF5FF;
  --w2s-lavender-light: #F3E8FF;
  --w2s-white:          #ffffff;
  --w2s-text:           #23112F;
  --w2s-text-secondary: #6F6178;
  --w2s-border:         #EADDF2;
  --w2s-field-bg:       #FAF7FD;
  --w2s-success:        #16a34a;
  --w2s-error:          #dc2626;
  --w2s-radius-sm:      8px;
  --w2s-radius-md:      14px;
  --w2s-radius-lg:      20px;
  --w2s-radius-xl:      28px;
  --w2s-shadow-card:    0 20px 60px rgba(75,18,110,0.12);
  --w2s-shadow-sm:      0 4px 16px rgba(75,18,110,0.08);
  --w2s-transition:     0.25s ease;
  --w2s-font:           'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ------------------------------------------------------------------ */
/* Base Reset                                                          */
/* ------------------------------------------------------------------ */
.w2s-contact-section *,
.w2s-contact-section *::before,
.w2s-contact-section *::after {
  box-sizing: border-box;
}
.w2s-contact-section {
  font-family: var(--w2s-font);
  color: var(--w2s-text);
  background-color: transparent;
  padding: 0;
  position: relative;
}

.w2s-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------------------------ */
/* Grid                                                                */
/* ------------------------------------------------------------------ */
.w2s-contact-grid {
  display: grid;
  gap: 60px;
  align-items: start;
}
.w2s-contact-grid--two-col {
  grid-template-columns: 1fr 1fr;
}
.w2s-contact-grid--one-col {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}

/* ------------------------------------------------------------------ */
/* Left Column                                                         */
/* ------------------------------------------------------------------ */
.w2s-left-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.w2s-section-badge {
  display: inline-flex;
  align-items: center;
  background: var(--w2s-lavender-light);
  color: var(--w2s-purple);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  width: fit-content;
}

.w2s-main-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--w2s-text);
  margin: 0;
}
.w2s-title-accent {
  color: var(--w2s-magenta);
  font-style: italic;
}

.w2s-intro-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--w2s-text-secondary);
  margin: 0;
}

/* Benefits */
.w2s-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.w2s-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--w2s-text);
}
.w2s-benefit-icon {
  color: #702CA8;
  flex-shrink: 0;
  font-size: 13px;
  width: 18px;
  text-align: center;
}

/* CTA Button */
.w2s-cta-wrap {
  margin-top: 8px;
}
.w2s-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--w2s-purple);
  border: 2px solid var(--w2s-purple);
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--w2s-font);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--w2s-transition);
  cursor: pointer;
}
.w2s-btn-cta:hover {
  background: var(--w2s-purple);
  color: #fff;
}

/* ------------------------------------------------------------------ */
/* Right Column — Panel                                                */
/* ------------------------------------------------------------------ */
.w2s-right-col {
  position: relative;
}
.w2s-right-panel {
  background: var(--w2s-white);
  border-radius: var(--w2s-radius-xl);
  padding: 32px;
  box-shadow: var(--w2s-shadow-card);
  position: relative;
}

/* ------------------------------------------------------------------ */
/* Direct mode — panel fills widget area cleanly                       */
/* ------------------------------------------------------------------ */
.w2s-mode-direct .w2s-right-panel {
  width: 100%;
}

/* Hide back button on step 1 (no initial view to return to) */
.w2s-mode-direct .w2s-booking-step[data-step="1"] .w2s-btn-back,
.w2s-mode-direct .w2s-custom-step[data-step="1"] .w2s-btn-back {
  display: none;
}
.w2s-mode-direct .w2s-booking-step[data-step="1"] .w2s-step-nav,
.w2s-mode-direct .w2s-custom-step[data-step="1"] .w2s-step-nav {
  justify-content: flex-end;
}

/* ------------------------------------------------------------------ */
/* Modal mode                                                          */
/* ------------------------------------------------------------------ */
.w2s-mode-modal {
  display: inline-block;
}

.w2s-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 5, 25, 0.55);
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: w2sModalFadeIn 0.25s ease both;
  backdrop-filter: blur(2px);
}
@keyframes w2sModalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.w2s-modal-box {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  animation: w2sModalSlideIn 0.3s cubic-bezier(0.34, 1.26, 0.64, 1) both;
}
@keyframes w2sModalSlideIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.w2s-modal-box .w2s-right-panel {
  border-radius: var(--w2s-radius-xl);
  padding: 40px 36px 36px;
}

.w2s-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  color: var(--w2s-text);
  transition: background var(--w2s-transition), transform var(--w2s-transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.w2s-modal-close:hover {
  background: var(--w2s-white);
  transform: scale(1.1);
}

/* Hide back button on step 1 inside modal */
.w2s-mode-modal .w2s-booking-step[data-step="1"] .w2s-btn-back,
.w2s-mode-modal .w2s-custom-step[data-step="1"] .w2s-btn-back {
  display: none;
}
.w2s-mode-modal .w2s-booking-step[data-step="1"] .w2s-step-nav,
.w2s-mode-modal .w2s-custom-step[data-step="1"] .w2s-step-nav {
  justify-content: flex-end;
}

/* Body scroll lock */
body.w2s-modal-open {
  overflow: hidden;
}

/* Modal trigger button styles */
.w2s-modal-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-family: var(--w2s-font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: all var(--w2s-transition);
  text-decoration: none;
  border: 2px solid transparent;
}
.w2s-modal-trigger.w2s-btn-primary {
  background: var(--w2s-purple);
  color: #fff;
  border-color: var(--w2s-purple);
  padding: 14px 28px;
  border-radius: 50px;
}
.w2s-modal-trigger.w2s-btn-primary:hover {
  background: var(--w2s-purple-deep);
  border-color: var(--w2s-purple-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,36,184,0.3);
}
.w2s-modal-trigger.w2s-btn-secondary {
  background: transparent;
  color: var(--w2s-purple);
  border-color: var(--w2s-purple);
  padding: 12px 24px;
  border-radius: 50px;
}
.w2s-modal-trigger.w2s-btn-secondary:hover {
  background: var(--w2s-lavender-light);
}
.w2s-modal-trigger.w2s-btn-outline {
  background: transparent;
  color: var(--w2s-magenta);
  border-color: var(--w2s-magenta);
  padding: 12px 24px;
  border-radius: 50px;
}
.w2s-modal-trigger.w2s-btn-outline:hover {
  background: rgba(225,59,146,0.08);
}
.w2s-modal-trigger.w2s-btn--full {
  width: 100%;
}

/* ------------------------------------------------------------------ */
/* Views (show/hide logic)                                             */
/* ------------------------------------------------------------------ */
.w2s-view {
  display: none;
}
.w2s-view--active {
  display: block;
}

/* ------------------------------------------------------------------ */
/* Panel Header                                                        */
/* ------------------------------------------------------------------ */
.w2s-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.w2s-panel-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--w2s-text);
  margin: 0;
  line-height: 1.3;
}
.w2s-chip-confidence {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--w2s-magenta);
  border: 1.5px solid var(--w2s-magenta);
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0.85;
}

/* ------------------------------------------------------------------ */
/* Choice Cards                                                        */
/* ------------------------------------------------------------------ */
.w2s-choice-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.w2s-choice-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 2px solid var(--w2s-border);
  border-radius: var(--w2s-radius-md);
  background: var(--w2s-white);
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: all var(--w2s-transition);
  font-family: var(--w2s-font);
}
.w2s-choice-card:hover {
  border-color: var(--w2s-purple);
  box-shadow: var(--w2s-shadow-sm);
  transform: translateY(-2px);
}
.w2s-choice-card.featured {
  border-color: var(--w2s-purple);
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}
.w2s-choice-card-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--w2s-magenta);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}
.w2s-choice-card-icon {
  width: 44px;
  height: 44px;
  background: var(--w2s-lavender-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--w2s-purple);
  font-size: 18px;
  flex-shrink: 0;
}
.w2s-choice-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.w2s-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--w2s-text);
}
.w2s-card-subtitle {
  font-size: 13px;
  color: var(--w2s-text-secondary);
  line-height: 1.5;
}
.w2s-choice-card-arrow {
  color: var(--w2s-text-secondary);
  flex-shrink: 0;
  transition: transform var(--w2s-transition);
}
.w2s-choice-card:hover .w2s-choice-card-arrow {
  transform: translateX(4px);
}

/* Footer privacy */
.w2s-footer-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--w2s-text-secondary);
  margin: 0;
  text-align: center;
  justify-content: center;
}

/* ------------------------------------------------------------------ */
/* Progress Bar                                                        */
/* ------------------------------------------------------------------ */
.w2s-progress-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.w2s-progress-track {
  flex: 1;
  height: 6px;
  background: var(--w2s-border);
  border-radius: 50px;
  overflow: hidden;
}
.w2s-progress-fill {
  height: 100%;
  background: var(--w2s-purple);
  border-radius: 50px;
  transition: width 0.4s cubic-bezier(.4,0,.2,1);
}
.w2s-step-indicator {
  font-size: 12px;
  font-weight: 600;
  color: var(--w2s-text-secondary);
  white-space: nowrap;
}

/* ------------------------------------------------------------------ */
/* Step                                                                */
/* ------------------------------------------------------------------ */
.w2s-step {
  animation: w2sFadeSlideIn 0.3s ease both;
}
@keyframes w2sFadeSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.w2s-step-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--w2s-text);
  margin: 0 0 8px;
}
.w2s-step-subtitle {
  font-size: 14px;
  color: var(--w2s-text-secondary);
  line-height: 1.6;
  margin: 0 0 20px;
}

/* Step Nav */
.w2s-step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------------ */
/* Calendar                                                            */
/* ------------------------------------------------------------------ */
.w2s-calendar {
  background: var(--w2s-field-bg);
  border-radius: var(--w2s-radius-md);
  padding: 16px;
  margin-bottom: 16px;
  border: 1.5px solid var(--w2s-border);
}
.w2s-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.w2s-cal-prev,
.w2s-cal-next {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--w2s-purple);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--w2s-transition);
  padding: 0;
}
.w2s-cal-prev:hover,
.w2s-cal-next:hover {
  background: var(--w2s-lavender-light);
}
.w2s-cal-month-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--w2s-text);
  text-transform: capitalize;
}
.w2s-cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 8px;
}
.w2s-cal-days-header span {
  font-size: 11px;
  font-weight: 700;
  color: var(--w2s-text-secondary);
  text-align: center;
  padding: 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.w2s-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.w2s-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  border-radius: 50%;
  cursor: default;
  color: var(--w2s-text-secondary);
  transition: all var(--w2s-transition);
  min-height: 34px;
  font-family: var(--w2s-font);
  border: none;
  background: none;
  white-space: nowrap;
  overflow: hidden;
}
.w2s-cal-day.disabled {
  color: #c5b6d0;
  cursor: not-allowed;
}
.w2s-cal-day.available {
  background: var(--w2s-lavender-light);
  color: var(--w2s-purple-deep);
  cursor: pointer;
  font-weight: 600;
}
.w2s-cal-day.available:hover {
  background: var(--w2s-purple);
  color: #fff;
  transform: scale(1.1);
}
.w2s-cal-day.selected {
  background: var(--w2s-purple) !important;
  color: #fff !important;
  font-weight: 700;
  transform: scale(1.1);
}
.w2s-cal-day.today:not(.selected) {
  border: 2px solid var(--w2s-purple);
  color: var(--w2s-purple);
  font-weight: 700;
}
.w2s-cal-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--w2s-text-secondary);
  margin: 0;
}

/* ------------------------------------------------------------------ */
/* Selected date label (step 2)                                        */
/* ------------------------------------------------------------------ */
.w2s-selected-date-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--w2s-lavender-light);
  color: var(--w2s-purple);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ------------------------------------------------------------------ */
/* Slots                                                               */
/* ------------------------------------------------------------------ */
.w2s-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.w2s-slot {
  padding: 12px 8px;
  border: 2px solid var(--w2s-border);
  border-radius: var(--w2s-radius-sm);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--w2s-text);
  background: var(--w2s-white);
  cursor: pointer;
  transition: all var(--w2s-transition);
  font-family: var(--w2s-font);
}
.w2s-slot.available:hover {
  border-color: var(--w2s-purple);
  color: var(--w2s-purple);
  background: var(--w2s-lavender-light);
}
.w2s-slot.selected {
  border-color: var(--w2s-purple);
  color: var(--w2s-purple);
  background: var(--w2s-lavender-light);
  font-weight: 700;
}
.w2s-slot.unavailable {
  background: #f5f0f8;
  color: #c5b6d0;
  cursor: not-allowed;
  text-decoration: line-through;
}
.w2s-slots-note {
  font-size: 12px;
  color: var(--w2s-text-secondary);
  margin: 0;
}
.w2s-slots-empty {
  text-align: center;
  padding: 24px;
  color: var(--w2s-text-secondary);
  font-size: 14px;
}

/* ------------------------------------------------------------------ */
/* Need Cards (step 1 — custom request)                                */
/* ------------------------------------------------------------------ */
.w2s-need-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}
.w2s-need-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 2px solid var(--w2s-border);
  border-radius: var(--w2s-radius-md);
  cursor: pointer;
  transition: all var(--w2s-transition);
  background: var(--w2s-white);
  text-align: left;
  width: 100%;
  font-family: var(--w2s-font);
}
.w2s-need-card:hover {
  border-color: var(--w2s-purple);
  background: #faf5ff;
}
.w2s-need-card.selected {
  border-color: var(--w2s-purple);
  background: var(--w2s-lavender-light);
}
.w2s-need-card-icon {
  width: 36px;
  height: 36px;
  background: var(--w2s-lavender-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--w2s-purple);
  font-size: 15px;
  flex-shrink: 0;
}
.w2s-need-card.selected .w2s-need-card-icon {
  background: var(--w2s-purple);
  color: #fff;
}
.w2s-need-card-body {
  flex: 1;
}
.w2s-need-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--w2s-text);
  display: block;
}
.w2s-need-card-desc {
  font-size: 12px;
  color: var(--w2s-text-secondary);
  line-height: 1.5;
  display: block;
  margin-top: 2px;
}
.w2s-need-card-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--w2s-border);
  flex-shrink: 0;
  transition: all var(--w2s-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.w2s-need-card.selected .w2s-need-card-check {
  background: var(--w2s-purple);
  border-color: var(--w2s-purple);
  color: #fff;
}

/* ------------------------------------------------------------------ */
/* Situation Chips (step 3 — custom request)                           */
/* ------------------------------------------------------------------ */
.w2s-situations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.w2s-situation-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: 2px solid var(--w2s-border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--w2s-text);
  cursor: pointer;
  transition: all var(--w2s-transition);
  background: var(--w2s-white);
  font-family: var(--w2s-font);
}
.w2s-situation-chip:hover {
  border-color: var(--w2s-purple);
  color: var(--w2s-purple);
}
.w2s-situation-chip.selected {
  background: var(--w2s-purple);
  border-color: var(--w2s-purple);
  color: #fff;
}
.w2s-situation-chip.selected::before {
  content: '✓ ';
}

/* ------------------------------------------------------------------ */
/* Forms                                                               */
/* ------------------------------------------------------------------ */
.w2s-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.w2s-form-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.w2s-form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.w2s-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.w2s-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--w2s-text);
}
.w2s-required {
  color: var(--w2s-magenta);
  margin-left: 2px;
}
.w2s-field input,
.w2s-field textarea,
.w2s-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--w2s-border);
  border-radius: var(--w2s-radius-sm);
  background: var(--w2s-field-bg);
  font-family: var(--w2s-font);
  font-size: 14px;
  color: var(--w2s-text);
  outline: none;
  transition: border-color var(--w2s-transition), box-shadow var(--w2s-transition);
  -webkit-appearance: none;
  appearance: none;
}
.w2s-field input::placeholder,
.w2s-field textarea::placeholder {
  color: #b0a0be;
}
.w2s-field input:focus,
.w2s-field textarea:focus,
.w2s-field select:focus {
  border-color: var(--w2s-purple);
  box-shadow: 0 0 0 3px rgba(107,36,184,0.12);
}
.w2s-field.w2s-field--error input,
.w2s-field.w2s-field--error textarea {
  border-color: var(--w2s-error);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}
.w2s-field-error-msg {
  font-size: 12px;
  color: var(--w2s-error);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.w2s-field textarea {
  resize: vertical;
  min-height: 90px;
}
.w2s-form-note {
  font-size: 12px;
  color: var(--w2s-text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 0;
  line-height: 1.5;
}
.w2s-activity-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}

/* ------------------------------------------------------------------ */
/* Buttons                                                             */
/* ------------------------------------------------------------------ */
.w2s-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--w2s-purple);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--w2s-font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--w2s-transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.w2s-btn-primary:hover:not(:disabled) {
  background: var(--w2s-purple-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,36,184,0.3);
}
.w2s-btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.w2s-btn-primary.w2s-loading {
  position: relative;
  color: transparent;
}
.w2s-btn-primary.w2s-loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: w2sSpin 0.7s linear infinite;
}
@keyframes w2sSpin {
  to { transform: rotate(360deg); }
}
.w2s-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--w2s-text-secondary);
  border: 1.5px solid var(--w2s-border);
  padding: 12px 20px;
  border-radius: 50px;
  font-family: var(--w2s-font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--w2s-transition);
}
.w2s-btn-secondary:hover {
  border-color: var(--w2s-purple);
  color: var(--w2s-purple);
  background: var(--w2s-lavender-light);
}
.w2s-btn-back {
  background: none;
  border: none;
  font-family: schoolbell;
  font-size: 14px;
  font-weight: 500;
  color: var(--w2s-text-secondary);
  cursor: pointer;
  padding: 8px 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--w2s-transition);
}
.w2s-btn-back:hover {
  color: var(--w2s-purple);
}

/* ------------------------------------------------------------------ */
/* Success State                                                        */
/* ------------------------------------------------------------------ */
.w2s-step--success {
  text-align: center;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.w2s-success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--w2s-success);
  animation: w2sSuccessPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes w2sSuccessPop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.w2s-step--success .w2s-step-title {
  color: var(--w2s-purple-deep);
}
.w2s-step--success .w2s-step-subtitle {
  max-width: 380px;
  margin: 0 auto;
}

/* ------------------------------------------------------------------ */
/* Toast                                                               */
/* ------------------------------------------------------------------ */
.w2s-toast {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--w2s-radius-sm);
  font-size: 13px;
  font-weight: 500;
  animation: w2sFadeSlideIn 0.3s ease both;
}
.w2s-toast--error {
  background: #fef2f2;
  color: var(--w2s-error);
  border: 1.5px solid #fecaca;
}
.w2s-toast--success {
  background: #f0fdf4;
  color: var(--w2s-success);
  border: 1.5px solid #bbf7d0;
}

/* ------------------------------------------------------------------ */
/* Honeypot                                                            */
/* ------------------------------------------------------------------ */
.w2s-contact-section div[style*="position:absolute"] {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* ------------------------------------------------------------------ */
/* Responsive — Tablet                                                 */
/* ------------------------------------------------------------------ */
@media (max-width: 1024px) {
  .w2s-contact-grid--two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .w2s-left-col {
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
    align-items: flex-start;
  }
  .w2s-benefits {
    text-align: left;
  }
}

/* ------------------------------------------------------------------ */
/* Responsive — Mobile                                                 */
/* ------------------------------------------------------------------ */
@media (max-width: 640px) {
  .w2s-right-col {
    min-width: 0;
  }
  .w2s-right-panel {
    padding: 20px 16px;
    border-radius: var(--w2s-radius-lg);
    width: 100%;
  }
  .w2s-modal-box .w2s-right-panel {
    padding: 32px 20px 24px;
  }
  .w2s-main-title {
    font-size: 24px;
  }
  .w2s-form-row--2 {
    grid-template-columns: 1fr;
  }
  .w2s-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .w2s-btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 14px 20px;
    white-space: normal;
    word-break: break-word;
  }
  .w2s-step-nav {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .w2s-step-nav .w2s-btn-back {
    justify-content: center;
  }
  .w2s-calendar {
    padding: 12px 8px;
  }
  .w2s-cal-grid,
  .w2s-cal-days-header {
    gap: 2px;
  }
  .w2s-cal-day {
    font-size: 11px;
    min-height: 28px;
  }
  .w2s-panel-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .w2s-choice-cards {
    gap: 10px;
  }
  .w2s-need-cards {
    gap: 6px;
  }
  .w2s-need-card {
    padding: 12px 14px;
  }
  /* Modal full-screen on small screens */
  .w2s-modal-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .w2s-modal-box {
    max-width: 100%;
    max-height: 92vh;
    border-radius: var(--w2s-radius-xl) var(--w2s-radius-xl) 0 0;
    overflow: hidden;
  }
  .w2s-modal-box .w2s-right-panel {
    border-radius: var(--w2s-radius-xl) var(--w2s-radius-xl) 0 0;
    overflow-y: auto;
    max-height: 92vh;
  }
}

/* ------------------------------------------------------------------ */
/* Elementor Editor — prevent interference                             */
/* ------------------------------------------------------------------ */
.elementor-editor-active .w2s-contact-section {
  pointer-events: none;
}
.elementor-editor-active .w2s-contact-section button,
.elementor-editor-active .w2s-contact-section a {
  pointer-events: none;
}
