/*
Theme Name: Divi Child
Theme URI: https://www.elegantthemes.com/gallery/divi/
Description: Child theme for Divi customizations on Praktijk in Groei en Bloei.
Author: Eline Brosens
Template: Divi
Version: 1.0.0
Text Domain: divi-child
*/
        :root {
            /* Primary (Ochre/Gold) */
            --primary-50: #fdf6ee; --primary-100: #f9ead6; --primary-200: #f2d1ac;
            --primary-300: #eab57f; --primary-400: #dfa25d; --primary-500: #ce8f40;
            --primary-600: #b97936; --primary-700: #9a612d; --primary-800: #7c4e28;
            --primary-900: #5d3313; --primary-950: #371a06;

            /* Accent (Olive Green) */
            --accent-50: #f6f8ee; --accent-100: #ebf0d6; --accent-200: #d3dfac;
            --accent-300: #b6c97f; --accent-400: #99b15a; --accent-500: #789344;
            --accent-600: #5e7534; --accent-700: #485a2a; --accent-800: #3b4925;
            --accent-900: #333f22; --accent-950: #1a220f;

            /* Neutrals (Cream/Parchment) */
            --neutral-50: #ffffff; --neutral-100: #fff8f4; --neutral-200: #ffeedf;
            --neutral-300: #f6e1d0; --neutral-400: #e6cfbc; --neutral-500: #ceb7a1;
            --neutral-600: #b09c87; --neutral-700: #927c68; --neutral-800: #73604e;
            --neutral-900: #564738; --neutral-950: #3a2f24;

            /* Typography */
            --text-body: #5d3313;
            --text-heading: #4A321B;

            /* Spacing */
            --space-xs: clamp(8px, 0.73vw + 5.09px, 16px);
            --space-s: clamp(16px, 1.45vw + 10.18px, 32px);
            --space-m: clamp(24px, 2.18vw + 15.27px, 48px);
            --space-l: clamp(32px, 2.91vw + 20.36px, 64px);
            --space-xl: clamp(48px, 4.36vw + 30.55px, 96px);
            --space-2xl: clamp(64px, 5.82vw + 40.73px, 128px);
            
            /* UI */
            --radius-card: 15px;
            --radius-btn: 9999px;
            --shadow-std: 0 2px 8px rgba(55, 26, 6, 0.15);
            --shadow-hover: 0 8px 20px rgba(55, 26, 6, 0.2);
        }

/*quick patch image rounding */
.et_pb_image.et_pb_module.eb-img-fix img {
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-std);
}

/* button fixes */
body #page-container .et_pb_section a.et_pb_button {
        padding: 0.3em 1.7em !important;
}

body #page-container .et_pb_section a.et_pb_button:hover {
        padding: 0.3em 1.7em !important;
}

/* Add space before headings */
:where(.et_pb_text) :is(p,ul,ol,blockquote) ~ :is(h1,h2,h3,h4,h5,h6) {
  padding-top:.75em;
  padding-bottom: .5em
}

/* Fix bottom spacing on elements */
:where(.et_pb_text) p:last-of-type {
  padding-bottom:1em;
}
:where(.et_pb_text) :is(p,ul,ol,blockquote):last-child {
  padding-bottom:0;
}

/* Style Lists */
:where(.et_pb_text) ::marker {
  color:var(--gcid-primary-color);
  font-family:var(--et_global_heading_font);
  font-weight: 900;
}
:where(.et_pb_text) :is(ol,ul) li:not(:last-child) {
  padding-bottom:.5em;
}

/* Style Blockquotes */
        .quote-block {
            background-color: var(--neutral-100);
            padding: var(--space-s) var(--space-l);
            border-radius: var(--radius-card);
            box-shadow: 0 2px 8px rgba(55, 26, 6, 0.15);
            max-width: 900px;
        }
        
        .quote-block::before {
            content: "“";
            position: absolute;
            top: -10px;
            left: 15px;
            font-size: 140px;
            font-family: 'Times New Roman', Times, serif;
            color: var(--primary-200);
            opacity: 0.4;
            line-height: 1;
        }
        
 :where(.et_pb_text) blockquote {
  border:none;
  padding:.5em 1em;
}

/* Style Links */
:where(.et_pb_text) a {
  transition: all .3s linear;
  text-underline-offset:.24em;
  text-decoration-thickness:.1em;
}
:where(.et_pb_text) a:hover {
  text-underline-offset:.12em;
}

/* BLURB STYLINGS */
/* Blurb with custom icon left from centered title */
.eb-blurb-horizontal h4 {padding-bottom:0}

/* Gradient Hover Effect */
.gradient-hover {
  background-size: 200% 200%;
  background-position: left center;
  transition: background-position 0.6s ease;
}

.gradient-hover:hover {
  background-position: right center;
}


/* =====================================
   Home page Styles
   =============================== */
/* =========================================
   Hero Section Image Fade Mask
========================================= */

/*
 * Legacy hero column fade.
 * Kept for reference while the reusable section-level hero is tested.
 *
 * Desktop: Fades the left edge of the column
 * .hero-image-fade {
 *     -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 35%);
 *     mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 35%);
 * }
 *
 * Mobile: Changes the fade to the top edge when columns stack vertically
 * @media (max-width: 980px) {
 *     .hero-image-fade {
 *         min-height: 400px;
 *         -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 35%);
 *         mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 35%);
 *     }
 * }
 */

/* Reusable section-level hero image layer.
   Set --eb-hero-image on the Divi section, e.g.
   selector { --eb-hero-image: url("..."); }
*/
.eb-hero-media {
    --eb-hero-image: none;
    --eb-hero-min-height: 100vh;
    min-height: var(--eb-hero-min-height);
    display: flex;
    align-items: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.eb-hero-media::before {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: min(58vw, 980px);
    background-image: var(--eb-hero-image);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 35%);
    mask-image: linear-gradient(to right, transparent 0%, #000 35%);
}

.eb-hero-media > .et_pb_row {
    position: relative;
    z-index: 1;
}

@media (max-width: 980px) {
    .eb-hero-media {
        min-height: auto;
        display: block;
        padding-top: 0;
        overflow: hidden;
    }

    .eb-hero-media::before {
        display: none;
    }

    .eb-hero-mobile-image img,
    .eb-hero-mobile-media img {
        display: block;
        width: 100%;
        -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%);
        mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%);
    }

    .eb-hero-media .eb-hero-content-row {
        width: min(100% - 40px, 680px);
        margin-left: auto;
        margin-right: auto;
    }
}

/* =====================================
   Custom Form Styles
   =============================== */

   #page-container h1.et_pb_contact_main_title {
    display:none !important;
   }

/* GPT Styles for the Forms */
.eb-intake-form .et_pb_contact_form {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.eb-intake-form .eb-form-card {
  --eb-field-gap: 18px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px var(--eb-field-gap);
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid var(--primary-200);
  border-radius: 18px;
  background: var(--neutral-100);
  box-shadow: var(--shadow-std)
}

/* Reset Divi text-module spacing inside generated cards */
.eb-intake-form .eb-form-card > .et_pb_text,
.eb-intake-form .eb-provider-card > .et_pb_text {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.eb-intake-form .eb-section-heading h5,
.eb-intake-form .eb-provider-heading h6,
.eb-intake-form .eb-standalone-heading h5 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Custom generated headings need explicit sizing because they are not Divi text modules */
.eb-intake-form .eb-standalone-heading h5 {
  font-size: clamp(21.3px, 0.45vw + 19.88px, 26.7px);
  font-weight: 700;
  line-height: 1.2;
  color: #26311c;
}

.eb-intake-form .eb-provider-heading h6,
.eb-intake-form .eb-availability-group-title {
  font-size: clamp(16px, 0.34vw + 14.92px, 20px);
  font-weight: 700;
  line-height: 1.25;
  color: #26311c;
}

/* Optional section cards: tighter collapsed state, with button/chips on the right */
.eb-intake-form .eb-form-card--optional {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 24px;
  row-gap: 8px;
  align-items: start;
  padding: clamp(18px, 2.2vw, 26px);
}

.eb-intake-form .eb-section-heading,
.eb-intake-form .eb-section-helper,
.eb-intake-form .eb-chip-row,
.eb-intake-form .eb-provider-card,
.eb-intake-form .eb-optional-fields,
.eb-intake-form .eb-form-card--optional > .et_pb_text:not(.eb-section-heading),
.eb-intake-form .eb-form-card--optional > input[type="hidden"] {
  grid-column: 1 / -1;
}

.eb-intake-form .eb-section-heading,
.eb-intake-form .eb-standalone-heading {
  width: 100%;
  margin-bottom: 0;
}

.eb-intake-form .eb-form-card--optional .eb-section-heading {
  grid-column: 1;
}

.eb-intake-form .eb-section-heading h5,
.eb-intake-form .eb-standalone-heading h5 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.eb-intake-form .eb-optional-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25em 0.7em;
  border-radius: 999px;
  background: rgba(120, 147, 68, 0.12);
  color: #4c5f2f;
  font-size: 0.55em;
  font-weight: 600;
  line-height: 1;
}

.eb-intake-form .eb-section-helper,
.eb-intake-form .eb-standalone-helper {
  width: 100%;
  margin: 0;
  font-size: 0.9em;
  line-height: 1.45;
  opacity: 0.75;
}

.eb-intake-form .eb-form-card--optional .eb-section-helper {
  grid-column: 1;
  margin-top: 0;
}

/* Keeps expanded optional fields aligned like normal Divi fields instead of forcing every field full width */
.eb-intake-form .eb-optional-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 16px var(--eb-field-gap);
  width: 100%;
  margin-top: 10px;
}

.eb-intake-form .eb-optional-fields:empty {
  display: none;
}

/* Prevent hidden conditional fields from leaving a visual gap in collapsed optional cards. */
.eb-intake-form .eb-form-card--optional:not(.eb-is-open) > .eb-optional-fields {
  display: none !important;
  margin-top: 0 !important;
}

/* Correct Divi fractional widths inside our flex wrappers.
   Divi's 16/24 + 8/24 widths add up to 100%, but once we add CSS gap they need calc() widths. */
.eb-intake-form .eb-form-card > .et_pb_contact_field.et_flex_column_24_24,
.eb-intake-form .eb-optional-fields > .et_pb_contact_field.et_flex_column_24_24,
.eb-intake-form .eb-provider-card > .et_pb_contact_field.et_flex_column_24_24,
.eb-intake-form .eb-progressive-card > .et_pb_contact_field.et_flex_column_24_24 {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
}

.eb-intake-form .eb-form-card > .et_pb_contact_field.et_flex_column_12_24,
.eb-intake-form .eb-optional-fields > .et_pb_contact_field.et_flex_column_12_24,
.eb-intake-form .eb-provider-card > .et_pb_contact_field.et_flex_column_12_24,
.eb-intake-form .eb-progressive-card > .et_pb_contact_field.et_flex_column_12_24 {
  width: calc((100% - var(--eb-field-gap)) / 2) !important;
  max-width: calc((100% - var(--eb-field-gap)) / 2) !important;
  flex: 0 0 calc((100% - var(--eb-field-gap)) / 2) !important;
}

.eb-intake-form .eb-form-card > .et_pb_contact_field.et_flex_column_16_24,
.eb-intake-form .eb-optional-fields > .et_pb_contact_field.et_flex_column_16_24,
.eb-intake-form .eb-provider-card > .et_pb_contact_field.et_flex_column_16_24,
.eb-intake-form .eb-progressive-card > .et_pb_contact_field.et_flex_column_16_24 {
  width: calc((100% - var(--eb-field-gap)) * 0.6666667) !important;
  max-width: calc((100% - var(--eb-field-gap)) * 0.6666667) !important;
  flex: 0 0 calc((100% - var(--eb-field-gap)) * 0.6666667) !important;
}

.eb-intake-form .eb-form-card > .et_pb_contact_field.et_flex_column_8_24,
.eb-intake-form .eb-optional-fields > .et_pb_contact_field.et_flex_column_8_24,
.eb-intake-form .eb-provider-card > .et_pb_contact_field.et_flex_column_8_24 {
  width: calc((100% - var(--eb-field-gap)) * 0.3333333) !important;
  max-width: calc((100% - var(--eb-field-gap)) * 0.3333333) !important;
  flex: 0 0 calc((100% - var(--eb-field-gap)) * 0.3333333) !important;
}

.eb-intake-form .eb-progressive-card > .et_pb_contact_field.et_flex_column_8_24 {
  width: calc((100% - (2 * var(--eb-field-gap))) / 3) !important;
  max-width: calc((100% - (2 * var(--eb-field-gap))) / 3) !important;
  flex: 0 0 calc((100% - (2 * var(--eb-field-gap))) / 3) !important;
}

/* Standalone large text-area cards such as Hulpvraag and Wanneer bereikbaar */
.eb-intake-form .eb-form-card--standalone {
  gap: 10px;
}

.eb-intake-form .eb-form-card--standalone .eb-standalone-main-field {
  width: 100% !important;
  flex-basis: 100% !important;
  margin-top: 8px !important;
}

.eb-intake-form .eb-form-card--standalone .eb-standalone-main-field > .et_pb_contact_form_label,
.eb-intake-form .eb-form-card--standalone .eb-standalone-main-field > .et_pb_contact_field_desc,
.eb-intake-form .eb-form-card--standalone .et_pb_contact_field_options_title,
.eb-intake-form .eb-form-card--standalone .et_pb_contact_field_desc {
  display: none !important;
}

/* Hide raw checkbox labels/titles, then restyle their visible label */
.eb-intake-form .eb-toggle-field .et_pb_contact_form_label,
.eb-intake-form .eb-toggle-field .et_pb_contact_field_options_title {
  display: none !important;
}

.eb-intake-form .eb-toggle-field input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.eb-intake-form .eb-toggle-field label {
  cursor: pointer;
  user-select: none;
}

.eb-intake-form .eb-toggle-field label i {
  display: none !important;
}

/* Compact add button for Ouder 2 and similar optional card toggles */
.eb-intake-form .eb-toggle-field--card {
  width: auto !important;
  flex-basis: auto !important;
}

.eb-intake-form .eb-form-card--optional > .eb-toggle-field--card {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: center;
  margin: 0 !important;
}

.eb-intake-form .eb-toggle-field--card .et_pb_contact_field_checkbox label {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 0;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px dashed rgba(80, 95, 47, 0.65);
  border-radius: 999px;
  background: transparent;
  color: #4c5f2f;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.eb-intake-form .eb-toggle-field--card .et_pb_contact_field_checkbox label:hover {
  background: rgba(120, 147, 68, 0.08);
  border-color: rgba(80, 95, 47, 0.8);
}

.eb-intake-form .eb-toggle-icon::before {
  display: inline-block;
  min-width: 1.1em;
  text-align: left;
  font-weight: 700;
}

.eb-intake-form .eb-toggle-field--card .eb-toggle-icon::before {
  content: "+\00a0";
  font-size: 1.08em;
}

.eb-intake-form .eb-toggle-field--card.eb-is-selected .et_pb_contact_field_checkbox label {
  border-style: solid;
  border-color: rgba(80, 95, 47, 0.8);
  background: rgba(120, 147, 68, 0.16);
}

.eb-intake-form .eb-toggle-field--card.eb-is-selected .eb-toggle-icon::before {
  content: "✓\00a0";
}

/* Chip row for help providers */
.eb-intake-form .eb-chip-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* On desktop, chips sit to the right of the Andere hulpverlening heading/helper */
.eb-intake-form .eb-form-card--chips > .eb-chip-row {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: center;
  width: auto;
  margin-top: 0;
}

.eb-intake-form .eb-chip-row .eb-toggle-field--chip {
  width: auto !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
}

.eb-intake-form .eb-toggle-field--chip .et_pb_contact_field_checkbox label {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 18px;
  border: 1px dashed rgba(80, 95, 47, 0.65);
  border-radius: 999px;
  background: transparent;
  color: #4c5f2f;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.eb-intake-form .eb-toggle-field--chip .et_pb_contact_field_checkbox label:hover {
  background: rgba(120, 147, 68, 0.08);
  border-color: rgba(80, 95, 47, 0.8);
}

.eb-intake-form .eb-toggle-field--chip .eb-toggle-icon::before {
  content: "+\00a0";
}

.eb-intake-form .eb-toggle-field--chip.eb-is-selected .et_pb_contact_field_checkbox label {
  border-style: solid;
  background: rgba(120, 147, 68, 0.16);
  border-color: rgba(80, 95, 47, 0.8);
  color: #4c5f2f;
}

.eb-intake-form .eb-toggle-field--chip.eb-is-selected .eb-toggle-icon::before {
  content: "✓\00a0";
}

/* Progressive children section */
.eb-intake-form .eb-form-card--progressive {
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 24px;
  row-gap: 16px;
  align-items: start;
}

.eb-intake-form .eb-form-card--progressive > .eb-section-heading {
  grid-column: 1;
}

.eb-intake-form .eb-form-card--progressive > .eb-progressive-control {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: center;
}

.eb-intake-form .eb-form-card--progressive > .eb-progressive-card,
.eb-intake-form .eb-form-card--progressive > .eb-progressive-extra,
.eb-intake-form .eb-form-card--progressive > input[type="hidden"] {
  grid-column: 1 / -1;
}

.eb-intake-form .eb-form-card--progressive .eb-section-heading p,
.eb-intake-form .eb-form-card--progressive .eb-section-heading .et_pb_text_inner p {
  width: 100%;
  max-width: 58rem;
  margin: 8px 0 0 0 !important;
  font-size: clamp(13px, 0.15vw + 12.5px, 15px) !important;
  line-height: 1.45 !important;
  opacity: 0.75;
}

.eb-intake-form .eb-progressive-control {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 2px;
}

.eb-intake-form .eb-progressive-button,
.eb-intake-form .eb-progressive-count {
  min-height: 42px;
  border: 1px dashed rgba(80, 95, 47, 0.65);
  border-radius: 999px;
  background: transparent;
  color: #4c5f2f;
  font-weight: 700;
  line-height: 1.1;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.eb-intake-form .eb-progressive-button {
  width: 42px;
  padding: 0;
  cursor: pointer;
}

.eb-intake-form .eb-progressive-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  padding: 9px 18px;
  border-style: solid;
  background: rgba(120, 147, 68, 0.16);
}

.eb-intake-form .eb-progressive-button:hover:not(:disabled) {
  background: rgba(120, 147, 68, 0.08);
  border-color: rgba(80, 95, 47, 0.8);
}

.eb-intake-form .eb-progressive-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.eb-intake-form .eb-progressive-toggle {
  display: none !important;
}

/* Keep the real Divi controller field alive for conditional logic.
   Do not use display:none here: Divi/PA conditional logic can stop reacting
   when the source field is fully removed from layout. */
.eb-intake-form .eb-progressive-counter-field,
.eb-intake-form .et_pb_contact_field[data-id="aantal_kinderen"] {
  position: absolute !important;
  width: 1px !important;
  max-width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  flex: 0 0 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.eb-intake-form .eb-progressive-card,
.eb-intake-form .eb-progressive-extra {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px var(--eb-field-gap);
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid rgba(120, 90, 60, 0.16);
  border-radius: 14px;
  background: transparent;
  margin-top: 10px;
}

.eb-intake-form .eb-progressive-card:not(.eb-is-active),
.eb-intake-form .eb-progressive-extra:not(.eb-is-active) {
  display: none !important;
}

.eb-intake-form .eb-progressive-extra > .et_pb_contact_field {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
}

#page-container .eb-intake-form .eb-progressive-extra-title {
  width: 100%;
  margin: 0 0 6px 0 !important;
  padding: 0;
  font-size: clamp(16px, 0.34vw + 14.92px, 20px);
  font-weight: 700;
  line-height: 1.2;
  color: #26311c;
}

.eb-intake-form .eb-progressive-extra .et_pb_contact_form_label {
  display: none !important;
}

/* Inner provider cards */
.eb-intake-form .eb-provider-card {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid rgba(120, 90, 60, 0.16);
  border-radius: 14px;
  background: transparent;
  margin-top: 10px;
}

.eb-intake-form .eb-provider-card:not(.eb-is-active) {
  display: none !important;
}

.eb-intake-form .eb-provider-card + .eb-provider-card.eb-is-active {
  margin-top: 18px;
}

.eb-intake-form .eb-provider-heading {
  width: 100%;
  margin-bottom: -4px;
}

.eb-intake-form .eb-provider-heading h6 {
  margin-bottom: 0;
}

/* Availability field: checkbox list becomes a grouped time-slot selector */
.eb-intake-form .eb-availability-field .et_pb_contact_field_options_wrapper,
.eb-intake-form .eb-availability-field .et_pb_contact_field_options_list {
  display: block;
  width: 100%;
}

.eb-intake-form .eb-availability-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.eb-intake-form .eb-availability-group {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

#page-container .eb-intake-form .eb-availability-group-title {
  margin: 0 0 12px 0;
}

.eb-intake-form .eb-availability-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.eb-intake-form .eb-availability-field .et_pb_contact_field_checkbox {
  display: block;
  width: 100%;
}

.eb-intake-form .eb-availability-field .et_pb_contact_field_checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.eb-intake-form .eb-availability-field .et_pb_contact_field_checkbox label {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px dashed rgba(80, 95, 47, 0.65);
  border-radius: 999px;
  background: transparent;
  color: #4c5f2f;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.eb-intake-form .eb-availability-field .et_pb_contact_field_checkbox label:hover {
  background: rgba(120, 147, 68, 0.08);
  border-color: rgba(80, 95, 47, 0.8);
}

.eb-intake-form .eb-availability-field .et_pb_contact_field_checkbox label i {
  display: none !important;
}

.eb-intake-form .eb-availability-field .et_pb_contact_field_checkbox label::before {
  content: "+";
  flex: 0 0 auto;
  width: 1.2em;
  font-weight: 700;
  color: #4c5f2f;
}

.eb-intake-form .eb-availability-field .et_pb_contact_field_checkbox:has(input:checked) label {
  border-style: solid;
  background: rgba(120, 147, 68, 0.16);
  border-color: rgba(80, 95, 47, 0.8);
  color: #4c5f2f;
}

.eb-intake-form .eb-availability-field .et_pb_contact_field_checkbox:has(input:checked) label::before {
  content: "✓";
}

.eb-intake-form .eb-availability-time {
  flex: 1 1 auto;
  font-weight: 700;
}

.eb-intake-form .eb-availability-hours {
  flex: 0 0 auto;
  opacity: 0.72;
  font-size: 0.9em;
}

@media (max-width: 900px) {
  .eb-intake-form .eb-form-card--chips > .eb-chip-row {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: start;
    align-self: start;
    width: 100%;
    margin-top: 8px;
  }
}

@media (max-width: 767px) {
  .eb-intake-form .eb-form-card,
  .eb-intake-form .eb-form-card--optional,
  .eb-intake-form .eb-provider-card,
  .eb-intake-form .eb-progressive-card,
  .eb-intake-form .eb-progressive-extra {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
  }

  .eb-intake-form .et_pb_contact_field,
  .eb-intake-form .eb-section-heading,
  .eb-intake-form .eb-section-helper,
  .eb-intake-form .eb-standalone-heading,
  .eb-intake-form .eb-standalone-helper {
    width: 100% !important;
    flex-basis: 100% !important;
  }

  .eb-intake-form .eb-form-card--optional > .eb-toggle-field--card {
    width: 100% !important;
    flex-basis: 100% !important;
  }

  .eb-intake-form .eb-chip-row .eb-toggle-field--chip {
    width: auto !important;
    flex-basis: auto !important;
  }

  .eb-intake-form .eb-toggle-field--card .et_pb_contact_field_checkbox label {
    width: 100%;
  }

  .eb-intake-form .eb-availability-groups {
    grid-template-columns: 1fr;
  }

  .eb-intake-form .eb-progressive-control {
    width: 100%;
    justify-content: flex-start;
  }

  .eb-intake-form .eb-form-card > .et_pb_contact_field,
  .eb-intake-form .eb-optional-fields > .et_pb_contact_field,
  .eb-intake-form .eb-provider-card > .et_pb_contact_field,
  .eb-intake-form .eb-progressive-card > .et_pb_contact_field,
  .eb-intake-form .eb-progressive-extra > .et_pb_contact_field {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
  }
}

/* Date time picker styling */
/* Brand-styled xdan/datetimepicker for Divi Contact Form Helper */

.xdsoft_datetimepicker.divi_contact_form_helper_0 {
  --brand-green: #789344;
  --brand-green-hover: rgba(120, 147, 68, 0.16);
  --brand-cream: #fbf6ef;
  --brand-border: #f1e4d3;
  --brand-brown: #5a3518;
  --brand-text: #4a4a4a;
  --brand-muted: #b8b2aa;

  background: var(--brand-cream) !important;
  border: 1px solid var(--brand-border) !important;
  border-radius: 16px !important;
  box-shadow: 0 16px 32px rgba(61, 45, 30, 0.16) !important;
  padding: 14px !important;
  font-family: inherit !important;
  color: var(--brand-text) !important;
}

.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_datepicker {
  width: 240px !important;
  margin: 0 !important;
}

/* Header alignment */
.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_monthpicker {
  position: relative !important;
  height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 0 34px 10px !important;
  background: transparent !important;
}

.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_today_button {
  display: none !important;
}

.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_label {
  width: auto !important;
  margin: 0 !important;
  padding: 5px 4px !important;
  background: transparent !important;
  border: 0 !important;
  color: var(--brand-brown) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-align: center !important;
}

.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_label:hover {
  color: var(--brand-green) !important;
}

/* Arrows */
.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_prev,
.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_next {
  position: absolute !important;
  top: 0 !important;
  width: 28px !important;
  height: 28px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  opacity: 1 !important;
  cursor: pointer !important;
}

.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_prev {
  left: 0 !important;
}

.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_next {
  right: 0 !important;
}

.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_prev:hover,
.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_next:hover {
  background: var(--brand-green-hover) !important;
}

.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_prev::before,
.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_next::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 2px solid var(--brand-green);
  border-right: 2px solid var(--brand-green);
}

.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_prev::before {
  transform: rotate(-135deg);
}

.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_next::before {
  transform: rotate(45deg);
}

/* Calendar grid */
.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_calendar table {
  width: 100% !important;
  table-layout: fixed !important;
  border-collapse: separate !important;
  border-spacing: 4px !important;
  background: transparent !important;
}

.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_calendar th {
  padding: 4px 0 8px !important;
  background: transparent !important;
  border: 0 !important;
  color: var(--brand-brown) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-align: center !important;
  opacity: 0.7 !important;
}

.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_calendar td {
  height: 30px !important;
  padding: 0 !important;
  background: #fffaf5 !important;
  border: 1px solid rgba(90, 53, 24, 0.07) !important;
  border-radius: 10px !important;
  color: var(--brand-text) !important;
  text-align: center !important;
  vertical-align: middle !important;
  box-shadow: none !important;
}

.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_calendar td > div {
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
  line-height: 1 !important;
}

.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_calendar td:hover {
  background: var(--brand-green-hover) !important;
  border-color: rgba(120, 147, 68, 0.3) !important;
  color: var(--brand-green) !important;
}

/* Selected / today */
.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_calendar td.xdsoft_current:hover {
  background: var(--brand-green) !important;
  border-color: var(--brand-green) !important;
  color: #fff !important;
  font-weight: 700 !important;
}

.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_calendar td.xdsoft_today:not(.xdsoft_current) {
  border-color: rgba(120, 147, 68, 0.45) !important;
  color: var(--brand-green) !important;
  font-weight: 700 !important;
}

/* Muted / disabled dates */
.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_calendar td.xdsoft_other_month {
  color: var(--brand-muted) !important;
  background: rgba(255, 250, 245, 0.55) !important;
}

.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_calendar td.xdsoft_disabled,
.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_calendar td.xdsoft_disabled:hover {
  color: #c8c1b8 !important;
  background: rgba(255, 250, 245, 0.45) !important;
  border-color: rgba(90, 53, 24, 0.04) !important;
  cursor: not-allowed !important;
}

/* Month/year dropdowns */
.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_select {
  border: 1px solid var(--brand-border) !important;
  border-radius: 12px !important;
  background: #fffaf5 !important;
  box-shadow: 0 12px 24px rgba(61, 45, 30, 0.14) !important;
  overflow: hidden !important;
}

.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_option {
  background: transparent !important;
  color: var(--brand-text) !important;
  padding: 7px 10px !important;
}

.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_option:hover {
  background: var(--brand-green-hover) !important;
  color: var(--brand-green) !important;
}

.xdsoft_datetimepicker.divi_contact_form_helper_0 .xdsoft_option.xdsoft_current {
  background: var(--brand-green) !important;
  color: #fff !important;
}

/* Footer concept v1 CSS disabled on 20260517-210521; layout kept in Divi for comparison.
Footer concept review template
.eb-footer-concept-main,
.eb-footer-concept-bottom {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.eb-footer-concept-main {
  background: var(--neutral-100);
  color: var(--text-body);
  border-top: 1px solid rgba(93, 51, 19, 0.08);
}

.eb-footer-concept-main::before,
.eb-footer-concept-main::after,
.eb-footer-concept-bottom::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  opacity: 0.12;
  background-repeat: no-repeat;
  background-size: contain;
}

.eb-footer-concept-main::before {
  right: 4vw;
  bottom: -18px;
  width: min(24vw, 360px);
  height: min(34vw, 520px);
  background-image:
    radial-gradient(ellipse at 50% 12%, transparent 0 20%, var(--primary-700) 21% 23%, transparent 24%),
    linear-gradient(70deg, transparent 0 48%, var(--primary-700) 49% 51%, transparent 52%);
  transform: rotate(9deg);
}

.eb-footer-concept-main::after {
  left: 5vw;
  top: 52px;
  width: 138px;
  height: 138px;
  border: 2px solid var(--primary-500);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  opacity: 0.7;
}

.eb-footer-concept-bottom {
  background:
    linear-gradient(180deg, rgba(206, 143, 64, 0.08), rgba(206, 143, 64, 0.14)),
    var(--neutral-200);
  border-top: 1px solid rgba(93, 51, 19, 0.14);
}

.eb-footer-concept-bottom::before {
  left: 3vw;
  bottom: 8px;
  width: 150px;
  height: 96px;
  opacity: 0.24;
  background-image:
    radial-gradient(ellipse at 24% 20%, var(--primary-700) 0 18%, transparent 19%),
    radial-gradient(ellipse at 48% 10%, var(--primary-700) 0 18%, transparent 19%),
    radial-gradient(ellipse at 68% 34%, var(--primary-700) 0 18%, transparent 19%),
    linear-gradient(65deg, transparent 0 48%, var(--primary-700) 49% 51%, transparent 52%);
}

.eb-footer-main-row {
  width: min(90%, 1280px) !important;
}

.eb-footer-main-row .et_pb_column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eb-footer-brand-title h1,
.eb-footer-brand-title h2,
.eb-footer-brand-title h3,
.eb-footer-column-title h4 {
  color: var(--primary-900) !important;
}

.eb-footer-brand-title h3 {
  max-width: 320px;
  font-size: clamp(34px, 2.1vw, 48px) !important;
  line-height: 1.08 !important;
}

.eb-footer-column-title h4 {
  font-size: clamp(24px, 1.4vw, 32px) !important;
  line-height: 1.15 !important;
}

.eb-footer-column-title::after,
.eb-footer-brand-copy::before {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 12px;
  background: var(--primary-700);
}

.eb-footer-kicker {
  color: var(--primary-700);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eb-footer-brand-copy p,
.eb-footer-social-copy p,
.eb-footer-practical p,
.eb-footer-legal p,
.eb-footer-policy p,
.eb-footer-credit p {
  color: var(--text-body);
  font-size: clamp(15px, 0.25vw + 14px, 18px);
  line-height: 1.65;
}

.eb-footer-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eb-footer-list li {
  position: relative;
  padding-left: 24px;
}

.eb-footer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 12px;
  height: 7px;
  border: 1px solid var(--accent-700);
  border-left: 0;
  border-bottom: 0;
  border-radius: 100% 0;
  transform: rotate(-28deg);
}

.eb-footer-concept-main a,
.eb-footer-concept-bottom a {
  color: var(--text-body);
  text-decoration-color: rgba(93, 51, 19, 0.34);
  text-underline-offset: 0.24em;
}

.eb-footer-concept-main a:hover,
.eb-footer-concept-bottom a:hover {
  color: var(--accent-700);
}

.eb-footer-contact {
  display: grid;
  gap: 18px;
}

.eb-footer-contact p {
  position: relative;
  margin: 0;
  padding-left: 42px;
}

.eb-footer-contact-icon {
  position: absolute;
  left: 0;
  top: 0.15em;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--primary-600);
  font-size: 14px;
  font-weight: 700;
}

.eb-footer-social {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(206, 143, 64, 0.16);
  color: var(--primary-900) !important;
  text-decoration: none !important;
  font-size: 0;
}

.eb-footer-social::before {
  content: "IG";
  font-size: 16px;
  font-weight: 700;
}

.eb-footer-cta .et_pb_button {
  box-shadow: var(--shadow-std);
}

.eb-footer-bottom-row {
  width: min(90%, 980px) !important;
  align-items: center;
}

.eb-footer-policy p {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.eb-footer-credit p {
  text-align: right;
}

@media (max-width: 980px) {
  .eb-footer-main-row .et_pb_column {
    gap: 12px;
  }

  .eb-footer-social-column {
    margin-top: 12px;
  }

  .eb-footer-concept-main::before {
    width: 260px;
    height: 360px;
    opacity: 0.08;
  }
}

@media (max-width: 767px) {
  .eb-footer-main-row,
  .eb-footer-bottom-row {
    width: min(100% - 40px, 620px) !important;
  }

  .eb-footer-bottom-row .et_pb_column,
  .eb-footer-credit p,
  .eb-footer-legal p {
    text-align: left;
  }

  .eb-footer-policy p {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .eb-footer-concept-main::after {
    left: auto;
    right: 24px;
    top: 24px;
    width: 86px;
    height: 86px;
  }
}
*/

/* Footer concept v2 minimal helpers */
.eb-footer-v2-nav {
  display: grid;
  gap: 0.55em;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eb-footer-v2-contact {
  display: grid;
  gap: 0.9em;
}

.eb-footer-v2-contact-row {
  display: flex;
  align-items: center;
  gap: 0.85em;
  margin: 0;
}

.eb-footer-v2-contact-icon {
  display: inline-grid;
  place-items: center;
  width: 1.85em;
  height: 1.85em;
  border-radius: 50%;
  color: var(--primary-700);
  background: rgba(206, 143, 64, 0.12);
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 767px) {
  .eb-footer-v2-main-row .et_pb_column {
    margin-bottom: 28px;
  }

  .eb-footer-v2-main-row .et_pb_column:last-child,
  .eb-footer-v2-bottom-row .et_pb_column:last-child {
    margin-bottom: 0;
  }
}
