.elementor-17461 .elementor-element.elementor-element-b6b47ec{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-17461 .elementor-element.elementor-element-656a9ca{--display:flex;}/* Start custom CSS for html, class: .elementor-element-d3793e1 */*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f1eb;
  --surface: #ffffff;
  --primary: #1e3a2a;
  --primary-mid: #2c5640;
  --accent: #c8572b;
  --accent-h: #b34a22;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --border: #ddd5c8;
  --green-tint: #eaf3ed;
  --error: #c0392b;
  --success: #1e7d44;
  --r: 12px;
  --r-sm: 8px;
  --shadow: 0 2px 14px rgba(30,58,42,.07);
  --shadow-lg: 0 6px 28px rgba(30,58,42,.12);
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding: 48px 20px 100px;
}

.page-header {
  max-width: 660px;
  margin: 0 auto 52px;
  text-align: center;
}

.brand-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--green-tint);
  border: 1px solid #c5dfc9;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

.page-header h1 {
  font-size: 38px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 12px;
}

.page-header p {
  color: var(--muted);
  font-size: 16px;
}

#formContainer {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--surface);
  border-radius: var(--r);
  padding: 32px 32px 36px;
  box-shadow: var(--shadow);
}

.section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--bg);
}

.step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-head h2 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
}

.section-head small {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  margin-left: 2px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

.full {
  grid-column: 1 / -1;
}

.fgroup {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fgroup label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.req {
  color: var(--accent);
  margin-left: 2px;
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: border-color .18s, box-shadow .18s;
  outline: none;
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,58,42,.09);
}

input.err,
select.err,
textarea.err {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(192,57,43,.09);
}

select {
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 40px;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.errtxt {
  font-size: 12px;
  color: var(--error);
  display: none;
}

.errtxt.on {
  display: block;
}

/* Stepper */
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.stepper-item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.stepper-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, color .2s;
  flex-shrink: 0;
}

.stepper-circle.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.stepper-circle.done {
  border-color: var(--primary);
  background: var(--green-tint);
  color: var(--primary);
}

.stepper-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s;
}

.stepper-label.active {
  color: var(--primary);
}

.stepper-line {
  width: 36px;
  height: 2px;
  background: var(--border);
  transition: background .2s;
}

.stepper-line.done {
  background: var(--primary);
}

/* Step panels */
.step-panel {
  display: none;
  flex-direction: column;
  gap: 20px;
}

.step-panel.on {
  display: flex;
}

.step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.btn-next,
.btn-back {
  padding: 13px 30px;
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, color .15s, transform .15s;
}

.btn-next {
  background: var(--primary);
  color: #fff;
  border: none;
  margin-left: auto;
}

.btn-next:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.btn-back {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-back:hover {
  background: var(--green-tint);
}

/* Services */
.services-wrap {
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  display: grid;
  grid-template-columns: 210px 1fr;
}

.cat-nav {
  background: var(--bg);
  border-right: 1.5px solid var(--border);
}

.cat-item {
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-left: 3px solid transparent;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: background .14s, color .14s;
  user-select: none;
}

.cat-item:last-child {
  border-bottom: none;
}

.cat-item:hover {
  background: #ede8e1;
  color: var(--primary);
}

.cat-item.on {
  background: var(--surface);
  border-left-color: var(--primary);
  color: var(--primary);
}

.cat-badge {
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 10px;
  padding: 2px 7px;
  display: none;
  flex-shrink: 0;
}

.cat-badge.on {
  display: block;
}

.sub-pane-wrap {
  padding: 20px;
  min-height: 240px;
}

.sub-pane {
  display: none;
}

.sub-pane.on {
  display: block;
}

.sub-pane-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.sub-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  background: #fff;
  user-select: none;
}

.sub-item:hover {
  border-color: var(--primary);
  background: #f1f7f3;
}

.sub-item.on {
  border-color: var(--primary);
  background: var(--green-tint);
}

.sub-item input[type=checkbox] {
  width: 15px;
  height: 15px;
  accent-color: var(--primary);
  flex-shrink: 0;
  cursor: pointer;
}

.sub-item span {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
}

.tags-row {
  margin-top: 14px;
  display: none;
}

.tags-row.on {
  display: block;
}

.tags-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  padding: 4px 11px;
  margin: 3px;
}

.tag-pill button {
  background: none;
  border: none;
  color: rgba(255,255,255,.75);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  margin-left: 1px;
}

/* Date + Time */
.field-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.date-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.date-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 18px 10px;
  text-align: center;
  cursor: pointer;
  background: #fff;
}

.date-card:hover {
  border-color: var(--primary);
  background: #f1f7f3;
}

.date-card.on {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.dc-day {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  opacity: .65;
  margin-bottom: 5px;
}

.dc-num {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.dc-month {
  font-size: 12px;
  font-weight: 600;
  opacity: .8;
}

.time-slots {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.time-slot {
  padding: 12px 28px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
}

.time-slot:hover {
  border-color: var(--primary);
  background: #f1f7f3;
  color: var(--primary);
}

.time-slot.on {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

/* Submit */
.submit-card {
  background: var(--surface);
  border-radius: var(--r);
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
}

.btn-submit {
  width: 100%;
  max-width: 400px;
  padding: 17px 32px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.btn-submit:hover {
  background: var(--accent);
}

.submit-note {
  margin-top: 13px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Success */
#successScreen {
  display: none;
  max-width: 740px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--r);
  padding: 72px 32px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

#successScreen.on {
  display: block;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

#successScreen h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

#successScreen p {
  color: var(--muted);
  font-size: 15px;
  max-width: 420px;
  margin: 0 auto 10px;
}

.meeting-summary {
  display: inline-flex;
  gap: 24px;
  margin-top: 28px;
  background: var(--green-tint);
  border: 1px solid #c5dfc9;
  border-radius: var(--r);
  padding: 18px 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.meeting-summary span {
  display: flex;
  align-items: center;
  gap: 7px;
}

/* Mobile */
@media (max-width: 620px) {

  body {
    padding: 24px 16px 80px;
  }

  .page-header h1 {
    font-size: 26px;
  }

  .card {
    padding: 24px 18px 28px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .services-wrap {
    grid-template-columns: 1fr;
  }

  .cat-nav {
    display: flex;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1.5px solid var(--border);
  }

  .cat-item {
    border-left: none;
    border-bottom: 3px solid transparent;
    border-right: 1px solid var(--border);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .cat-item:last-child {
    border-right: none;
  }

  .cat-item.on {
    border-bottom-color: var(--primary);
    border-left-color: transparent;
    background: var(--bg);
  }

  .sub-grid {
    grid-template-columns: 1fr;
  }

  .time-slot {
    padding: 12px 18px;
  }

  .meeting-summary {
    flex-direction: column;
    gap: 10px;
    text-align: left;
  }

  .stepper-label {
    display: none;
  }

  .stepper-line {
    width: 20px;
  }

  .step-nav {
    flex-wrap: wrap;
  }

  .btn-next,
  .btn-back {
    flex: 1;
    text-align: center;
  }
}/* End custom CSS */