/* ============================================================
   MONÈRA – Consultation Page Styles  (consultation.css)
   All classes prefixed .cns-  →  zero global conflicts
   ============================================================ */

:root {
  --cns-navy:       #022F38;
  --cns-dark-navy:  #011C22;
  --cns-deep-teal:  #063844;
  --cns-gold:       #CDA77B;
  --cns-gold-dark:  #a8854f;
  --cns-warm-white: #F8F7F4;
  --cns-text-dark:  #112228;
  --cns-muted:      #68757A;
  --cns-card-bg:    #ffffff;
  --cns-border:     rgba(205,167,123,0.22);
}

/* ── Shared background ───────────────────────────────────────── */
.cns-header,
.cns-tz-section,
.cns-main-section,
.cns-help-section {
  background-color: var(--cns-warm-white);
  font-family: 'Inter', sans-serif;
  color: var(--cns-text-dark);
}

/* ══════════════════════════════════════════════════════════════
   PAGE HEADER
══════════════════════════════════════════════════════════════ */
.cns-header { padding: 64px 0 40px; text-align: center; }

.cns-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--cns-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cns-eyebrow-rule {
  width: 32px;
  height: 1px;
  background: var(--cns-gold);
  margin-bottom: 20px;
}

.cns-main-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 6vw, 58px);
  font-weight: 600;
  color: var(--cns-navy);
  line-height: 1.1;
  margin-bottom: 20px;
}

.cns-diamond-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.cns-diamond-rule::before,
.cns-diamond-rule::after {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: var(--cns-gold);
}

.cns-diamond {
  font-size: 10px;
  color: var(--cns-gold);
}

.cns-intro-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--cns-muted);
  line-height: 1.75;
  max-width: 600px;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   TIMEZONE BAR
══════════════════════════════════════════════════════════════ */
.cns-tz-section { padding: 0 0 28px; }

.cns-tz-bar {
  background: var(--cns-card-bg);
  border: 1px solid var(--cns-border);
  border-radius: 12px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cns-tz-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cns-tz-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cns-warm-white);
  border: 1px solid var(--cns-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--cns-navy);
  flex-shrink: 0;
}

.cns-tz-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--cns-text-dark);
}

.cns-tz-value {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--cns-muted);
  margin-top: 2px;
}

.cns-tz-right { text-align: right; }

.cns-tz-note {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--cns-muted);
  margin-bottom: 4px;
}

.cns-tz-auto {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--cns-muted);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.cns-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  display: inline-block;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   MAIN SECTION
══════════════════════════════════════════════════════════════ */
.cns-main-section { padding: 0 0 48px; }

/* Step block */
.cns-step-block { }

.cns-step-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cns-step-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cns-navy);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cns-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: var(--cns-navy);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   CONSULTATION TYPE CARDS
══════════════════════════════════════════════════════════════ */
.cns-type-list { display: flex; flex-direction: column; gap: 10px; }

.cns-type-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cns-card-bg);
  border: 1px solid var(--cns-border);
  border-radius: 12px;
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}

.cns-type-card:hover {
  border-color: var(--cns-gold);
  box-shadow: 0 2px 16px rgba(205,167,123,0.15);
}

.cns-type-selected {
  border-color: var(--cns-gold) !important;
  box-shadow: 0 2px 16px rgba(205,167,123,0.18);
}

.cns-type-radio {
  width: 18px;
  height: 18px;
  accent-color: var(--cns-navy);
  flex-shrink: 0;
  cursor: pointer;
}

.cns-type-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cns-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--cns-gold);
}

.cns-type-text { flex: 1; }

.cns-type-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--cns-text-dark);
  margin-bottom: 3px;
}

.cns-type-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: var(--cns-muted);
  line-height: 1.5;
}

.cns-type-price {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--cns-gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   CALENDAR & TIME SLOTS CARD
══════════════════════════════════════════════════════════════ */
.cns-datetime-card {
  background: var(--cns-card-bg);
  border: 1px solid var(--cns-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(2,47,56,0.05);
}

/* Calendar column */
.cns-cal-col {
  border-right: 1px solid var(--cns-border);
  padding: 20px;
}

.cns-calendar { }

.cns-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cns-cal-arrow {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--cns-navy);
  cursor: pointer;
  padding: 0 6px;
  line-height: 1;
  transition: color 0.2s;
}

.cns-cal-arrow:hover { color: var(--cns-gold); }

.cns-cal-month {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--cns-text-dark);
}

.cns-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 16px;
}

.cns-cal-dow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--cns-muted);
  text-align: center;
  padding: 4px 0 6px;
  letter-spacing: 0.05em;
}

.cns-cal-day {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  text-align: center;
  padding: 7px 2px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cns-day-empty { cursor: default; }

.cns-day-avail {
  color: var(--cns-text-dark);
  background: rgba(205,167,123,0.15);
}

.cns-day-avail:hover { background: rgba(205,167,123,0.35); }

.cns-day-unavail { color: #ccc; cursor: not-allowed; }

.cns-day-selected {
  background: var(--cns-navy);
  color: #fff;
  font-weight: 600;
  cursor: default;
}

.cns-day-other { color: #ccc; cursor: not-allowed; }

/* Legend */
.cns-cal-legend {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cns-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--cns-muted);
}

.cns-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.cns-dot-selected { background: var(--cns-navy); }
.cns-dot-avail    { background: rgba(205,167,123,0.4); }
.cns-dot-unavail  { background: #ddd; }

/* Time Slots column */
.cns-slots-col { padding: 20px; }

.cns-slots-header {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--cns-text-dark);
  margin-bottom: 14px;
}

.cns-slots-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cns-time-slot {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--cns-border);
  border-radius: 8px;
  background: var(--cns-card-bg);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--cns-text-dark);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  text-align: center;
}

.cns-time-slot:hover {
  border-color: var(--cns-gold);
}

.cns-slot-active {
  background: var(--cns-navy);
  border-color: var(--cns-navy);
  color: #fff;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   APPROVAL NOTICE
══════════════════════════════════════════════════════════════ */
.cns-notice-bar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--cns-card-bg);
  border: 1px solid var(--cns-border);
  border-radius: 10px;
  padding: 16px 20px;
}

.cns-notice-icon {
  font-size: 18px;
  color: var(--cns-gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.cns-notice-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--cns-muted);
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   FORM
══════════════════════════════════════════════════════════════ */
.cns-form-card {
  background: var(--cns-card-bg);
  border: 1px solid var(--cns-border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(2,47,56,0.04);
}

.cns-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--cns-text-dark);
  display: block;
  margin-bottom: 6px;
}

.cns-required { color: #d94f4f; }

.cns-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dde2e6;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--cns-text-dark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.cns-input::placeholder { color: #b0bac0; }

.cns-input:focus {
  border-color: var(--cns-gold);
  box-shadow: 0 0 0 3px rgba(205,167,123,0.12);
}

.cns-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Phone group */
.cns-phone-group {
  display: flex;
  align-items: stretch;
  border: 1px solid #dde2e6;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.cns-phone-group:focus-within {
  border-color: var(--cns-gold);
  box-shadow: 0 0 0 3px rgba(205,167,123,0.12);
}

.cns-phone-prefix {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  background: var(--cns-warm-white);
  border-right: 1px solid #dde2e6;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--cns-text-dark);
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
}

.cns-flag { font-size: 16px; }

.cns-phone-code { font-weight: 500; }

.cns-phone-arrow { font-size: 11px; color: var(--cns-muted); }

.cns-phone-input {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  flex: 1;
}

/* ══════════════════════════════════════════════════════════════
   BOOKING SUMMARY
══════════════════════════════════════════════════════════════ */
.cns-summary-card {
  background: var(--cns-card-bg);
  border: 1px solid var(--cns-border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(2,47,56,0.05);
}

.cns-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.cns-summary-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cns-navy);
}

.cns-summary-edit {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--cns-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.cns-summary-edit:hover { color: var(--cns-gold); }

.cns-summary-type-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.cns-summary-type-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cns-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--cns-gold);
  flex-shrink: 0;
}

.cns-summary-type-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--cns-text-dark);
}

.cns-summary-divider {
  height: 1px;
  background: var(--cns-border);
  margin: 14px 0;
}

.cns-summary-meta { display: flex; flex-direction: column; gap: 10px; }

.cns-summary-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--cns-muted);
}

.cns-summary-meta-icon {
  font-size: 15px;
  color: var(--cns-gold);
  flex-shrink: 0;
}

.cns-summary-duration-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cns-summary-duration-label,
.cns-summary-duration-val {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--cns-muted);
}

.cns-summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cns-summary-total-label {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--cns-text-dark);
}

.cns-summary-total-val {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cns-gold);
}

/* ══════════════════════════════════════════════════════════════
   GOLD BUTTON
══════════════════════════════════════════════════════════════ */
.btn-gold {
  display: inline-block;
  background: var(--cns-gold);
  color: var(--cns-dark-navy);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 6px;
  border: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  text-align: center;
}

.btn-gold:hover {
  background: var(--cns-gold-dark);
  color: #fff;
}

.btn-gold-outline {
  display: inline-block;
  background: transparent;
  color: var(--cns-dark-navy);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 6px;
  border: 1px solid var(--cns-gold);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
}
.btn-gold-outline:hover {
  background: var(--cns-gold);
  color: var(--cns-dark-navy);
}

/* ── Confirmation Card ─────────────────────────────────────────── */
.cns-confirm-card {
  max-width: 620px;
  background: #fff;
  border: 1px solid #ece6d8;
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 12px 40px rgba(26,46,74,.08);
}
.cns-confirm-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #24695c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.cns-confirm-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--cns-dark-navy);
  margin-bottom: 8px;
}
.cns-confirm-text {
  color: #5a6a7e;
  font-size: 15px;
  line-height: 1.7;
  margin: 20px 0 28px;
}
.cns-confirm-ref {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 28px;
  border-radius: 10px;
  background: #f7f4ed;
  border: 1px dashed var(--cns-gold);
  margin-bottom: 32px;
}
.cns-confirm-ref-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #b6ab97;
}
.cns-confirm-ref-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--cns-dark-navy);
  letter-spacing: .05em;
}
.cns-confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════
   HELP SECTION
══════════════════════════════════════════════════════════════ */
.cns-help-section { padding: 0 0 72px; }

.cns-help-bar {
  background: var(--cns-card-bg);
  border: 1px solid var(--cns-border);
  border-radius: 12px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.cns-help-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cns-help-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cns-warm-white);
  border: 1px solid var(--cns-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--cns-navy);
  flex-shrink: 0;
}

.cns-help-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--cns-navy);
}

.cns-help-sub {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--cns-muted);
  margin-top: 3px;
}

.cns-help-contacts {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cns-help-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--cns-text-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.cns-help-contact-item i {
  font-size: 16px;
  color: var(--cns-gold);
}

.cns-help-contact-item:hover { color: var(--cns-gold); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .cns-header       { padding: 48px 0 28px; }
  .cns-main-heading { font-size: 34px; }
  .cns-tz-bar       { flex-direction: column; align-items: flex-start; }
  .cns-tz-right     { text-align: left; }
  .cns-tz-auto      { justify-content: flex-start; }
  .cns-type-price   { display: none; }
  .cns-cal-col      { border-right: none; border-bottom: 1px solid var(--cns-border); }
  .cns-help-bar     { flex-direction: column; padding: 24px; }
  .cns-help-contacts{ flex-direction: column; gap: 14px; }
}

@media (max-width: 575px) {
  .cns-form-card    { padding: 18px; }
  .cns-summary-card { padding: 18px; }
  .cns-main-heading { font-size: 28px; }
  .cns-cal-day      { font-size: 11px; padding: 5px 1px; }
}

/* ── Wizard Step Indicator ─────────────────────────────────────── */
.cns-wizard-steps { padding: 8px 0 24px; }
.cns-wizard-track {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 640px;
  margin: 0 auto;
}
.cns-wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.cns-wizard-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid #d9d2c5;
  background: #fff;
  color: #b6ab97;
  transition: all .25s ease;
}
.cns-wizard-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  color: #b6ab97;
  white-space: nowrap;
}
.cns-wizard-line {
  flex: 1;
  height: 2px;
  margin: 0 8px;
  margin-bottom: 26px;
  background: #d9d2c5;
  transition: background .25s ease;
}
/* Active step */
.cns-wizard-active .cns-wizard-circle {
  border-color: #b8924a;
  background: #b8924a;
  color: #fff;
  box-shadow: 0 4px 12px rgba(184,146,74,.35);
}
.cns-wizard-active .cns-wizard-label { color: #1a2e4a; }
/* Done step */
.cns-wizard-done .cns-wizard-circle {
  border-color: #24695c;
  background: #24695c;
  color: #fff;
}
.cns-wizard-done .cns-wizard-label { color: #24695c; }
.cns-wizard-line-done { background: #24695c; }

.cns-type-per { font-size: 12px; font-weight: 500; opacity: .7; }

@media (max-width: 575px) {
  .cns-wizard-label { font-size: 10px; }
  .cns-wizard-circle { width: 36px; height: 36px; font-size: 13px; }
}

/* ── Step 3 toast notifications ─────────────────────────────────────────────── */
.cns-toast { position: fixed; top: 24px; right: 24px; min-width: 280px; max-width: 420px; padding: 14px 20px; border-radius: 10px; font-size: 14px; font-weight: 500; color: #fff; box-shadow: 0 8px 28px rgba(0,0,0,.18); opacity: 0; transform: translateY(-12px); transition: opacity .3s, transform .3s; z-index: 9999; display: flex; align-items: flex-start; gap: 10px; line-height: 1.4; }
.cns-toast.show { opacity: 1; transform: translateY(0); }
.cns-toast.toast-error   { background: #a33b2a; }
.cns-toast.toast-success { background: #24695c; }
.cns-toast-icon  { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.cns-toast-close { margin-left: auto; background: none; border: none; color: #fff; opacity: .7; cursor: pointer; font-size: 16px; padding: 0; line-height: 1; }

/* ── intl-tel-input overrides for cns-input style ───────────────────────────── */
.iti { width: 100%; display: block; }
