.elementor-9402 .elementor-element.elementor-element-711668d > .elementor-container{max-width:800px;}.elementor-9402 .elementor-element.elementor-element-711668d{padding:0px 0px 60px 0px;}.elementor-9402 .elementor-element.elementor-element-468146e5:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-9402 .elementor-element.elementor-element-468146e5 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F4F1EC;}.elementor-9402 .elementor-element.elementor-element-468146e5 > .elementor-element-populated, .elementor-9402 .elementor-element.elementor-element-468146e5 > .elementor-element-populated > .elementor-background-overlay, .elementor-9402 .elementor-element.elementor-element-468146e5 > .elementor-background-slideshow{border-radius:15px 15px 15px 15px;}.elementor-9402 .elementor-element.elementor-element-468146e5 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:20px 20px 20px 20px;}.elementor-9402 .elementor-element.elementor-element-468146e5 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}@media(max-width:767px){.elementor-9402 .elementor-element.elementor-element-4fb25a38 > .elementor-widget-container{padding:0px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-4fb25a38 */:root {
      --clr-bg: #F4F1EC;
      --clr-surface: #FFFFFF;
      --clr-primary: #1A3C5E;
      --clr-primary-light: #2A5A8C;
      --clr-accent: #D4572A;
      --clr-accent-hover: #B8441F;
      --clr-text: #2C2C2C;
      --clr-text-muted: #6B7280;
      --clr-border: #D6D0C6;
      --clr-border-focus: #1A3C5E;
      --clr-success: #16803C;
      --clr-error: #DC2626;
      --clr-required: #D4572A;
      --clr-tag-bg: #EDE9E3;
      --radius: 8px;
      --radius-lg: 14px;
      --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 6px 24px rgba(0,0,0,0.04);
      --shadow-input-focus: 0 0 0 3px rgba(26,60,94,0.12);
      --font-display: 'Fraunces', Georgia, serif;
      --font-body: 'DM Sans', system-ui, sans-serif;
      --transition: 0.2s ease;
    }

    
    .form-section.hidden{visibility: hidden;
    height: 0; padding: 0;}


    /* ── FORM CONTAINER ── */
    .form-container {
      max-width: 780px;
      margin: 0 auto ;
    }

    /* ── SECTIONS ── */
    .form-section {
      background: var(--clr-surface);
      border-radius: var(--radius-lg);
      padding: 22px 2rem 1.75rem;
      margin-bottom: 1.25rem;
      box-shadow: var(--shadow-card);
      animation: fadeUp 0.4s ease both;
    }
    .form-section:nth-child(2) { animation-delay: 0.05s; }
    .form-section:nth-child(3) { animation-delay: 0.1s; }
    .form-section:nth-child(4) { animation-delay: 0.15s; }
    .form-section:nth-child(5) { animation-delay: 0.2s; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .section-label {
      font-weight: 500;
      font-size: 18px;
      color: var(--clr-primary);
      margin-bottom: 1.25rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .section-label .icon {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: var(--clr-tag-bg);
      display: grid;
      place-items: center;
      font-size: 14px;
      flex-shrink: 0;
    }

    /* ── GRID ── */
    .field-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem 1.25rem;
    }
    .field-grid .full-width { grid-column: 1 / -1; }

    @media (max-width: 600px) {
      .field-grid { grid-template-columns: 1fr; }
    }

    /* ── FIELDS ── */
    .field { display: flex; flex-direction: column; gap: 0; }

    .field label {
      font-size: 12px;
      font-weight: 600;
      color: var(--clr-text);
      letter-spacing: 0.03em;
      margin-bottom: 0 !important;
      text-transform: uppercase;
    }
    .field label .req {
      color: var(--clr-required);
      margin-left: 2px;
    }

    body form .field input,
    body form .field select,
    body form .field textarea {
      width: 100%;
      padding: 0.8rem 0.85rem !important;
      border: 1.5px solid var(--clr-border);
      border-radius: 8px !important;
      font-size: 16px !important;
      color: var(--clr-text);
      background: #FDFCFA;
      transition: border-color var(--transition), box-shadow var(--transition);
      outline: none;
    }
    .field input::placeholder,
    .field textarea::placeholder {
      color: #B0A99E;
    }
    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: var(--clr-border-focus);
      box-shadow: var(--shadow-input-focus);
      background: #fff;
    }

    .field textarea { resize: vertical; min-height: 90px; }
    .field select { cursor: pointer; }

    /* ── RADIO GROUP ── */
    .radio-row {
      display: flex;
      gap: 1rem;
      padding-top: 0.15rem;
    }
    .radio-option {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      cursor: pointer;
      font-size: 0.9rem;
    }
    .radio-option input[type="radio"] {
      width: 18px;
      height: 18px;
      accent-color: var(--clr-primary);
      cursor: pointer;
    }

    /* ── HELPER TEXT ── */
    .field-hint {
      font-size: 0.75rem;
      color: var(--clr-text-muted);
      margin-top: -0.1rem;
    }

    /* ── HIDDEN FIELDS NOTICE ── */
    .hidden-fields-note {
      background: var(--clr-tag-bg);
      border-radius: var(--radius);
      padding: 0.75rem 1rem;
      font-size: 0.8rem;
      color: var(--clr-text-muted);
      line-height: 1.5;
      margin-top: 0.5rem;
    }
    .hidden-fields-note code {
      background: rgba(26,60,94,0.08);
      padding: 0.1em 0.4em;
      border-radius: 4px;
      font-size: 0.78rem;
      color: var(--clr-primary);
    }

    /* ── SUBMIT ── */
    .submit-row {
      text-align: center;
      margin-top: 0.5rem;
    }
    .submit-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.85rem 2.8rem;
      border: none;
      border-radius: 60px;
      background: #ffc513;
      color: #000;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: background var(--transition), transform 0.15s ease, box-shadow var(--transition);
      box-shadow: 0 3px 12px rgba(212,87,42,0.3);
    }
    .submit-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 5px 18px rgba(212,87,42,0.35);
    }
    .submit-btn:active { transform: translateY(0); }
    .submit-btn svg { width: 18px; height: 18px; }

    .required-note {
      font-size: 12px;
      color: var(--clr-text-muted);
      margin-top: 0.75rem; text-align: center;
    }
    .required-note span { color: var(--clr-required); font-weight: 600; }

    /* ── ESTIMATE EXTRAS ── */
    .estimate-only { display: none; }
    .estimate-only.visible { display: block; }

    .booking-only { }
    .booking-only.hidden { display: none; }

    /* ── FOOTER ── */
    .form-footer {
      text-align: center;
      padding: 0 0 10px;
      font-size: 0.78rem;
      color: var(--clr-text-muted);
    }
    .form-footer a {
      color: var(--clr-primary-light);
      text-decoration: none;
    }
    .form-footer a:hover { text-decoration: underline; }

    /* ── RESPONSIVE ── */
    @media (max-width: 600px) {
      .form-section { padding: 1.5rem 1.25rem; }
      .submit-btn { width: 100%; justify-content: center; }
    }/* End custom CSS */