/* ── Fancy Contact Form — Frontend CSS ── */
.fcf-wrap {
  font-family: -apple-system, 'DM Sans', 'Segoe UI', sans-serif;
  padding: 48px 10%;
  box-sizing: border-box;
  width: 100%;
}

/* ── Split layout ── */
.fcf-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.fcf-split:only-child { }

/* ── Left: form column ── */
.fcf-form-col { }

.fcf-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.fcf-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 10px;
  color: #1a1a1a;
}
.fcf-sub {
  font-size: 14px;
  color: #666;
  margin: 0 0 28px;
  line-height: 1.65;
}

/* ── Right: image column ── */
.fcf-img-col {
  display: flex;
  align-items: stretch;
  height: 100%;
}
.fcf-side-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

/* ── Form rows ── */
.fcf-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.fcf-row-1 { display: grid; grid-template-columns: 1fr;   gap: 16px; margin-bottom: 16px; }
.fcf-field { display: flex; flex-direction: column; gap: 6px; }
.fcf-field label {
  font-size: 11px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; color: #888;
}

/* ── Consent ── */
.fcf-consent {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 12px; color: #777; line-height: 1.55;
  margin: 12px 0 20px;
}
.fcf-consent input[type=checkbox] { margin-top: 2px; flex-shrink: 0; width: 14px; height: 14px; }

/* ── Submit row ── */
.fcf-submit-row { display: flex; align-items: center; gap: 12px; }
.fcf-submit-btn {
  display: inline-flex; align-items: center; gap: 9px;
  border: none; border-radius: 10px;
  padding: 13px 28px; font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: inherit;
  letter-spacing: .02em; transition: all .2s;
}
.fcf-submit-btn svg { transition: transform .2s; }
.fcf-submit-btn:hover svg { transform: translateX(4px); }
.fcf-btn-dark  { background: #1a1a1a; color: #fff; }
.fcf-btn-dark:hover  { background: #0f6e56; }
.fcf-btn-teal  { background: #0f6e56; color: #fff; }
.fcf-btn-teal:hover  { opacity: .88; }
.fcf-btn-lime  { background: #c8f060; color: #111; }
.fcf-btn-lime:hover  { opacity: .88; }

.fcf-spinner { font-size: 18px; }
.fcf-success {
  margin-top: 14px; padding: 13px 18px;
  background: #e1f5ee; border: 0.5px solid #9fe1cb;
  border-radius: 10px; font-size: 14px; color: #085041;
}
.fcf-error {
  margin-top: 14px; padding: 13px 18px;
  background: #fde8ea; border: 0.5px solid #f5a3ab;
  border-radius: 10px; font-size: 14px; color: #7a1a22;
}

/* ══════════════════════════════
   DESIGN A — Classic (underline)
══════════════════════════════ */
.fcf-design-a .fcf-field input,
.fcf-design-a .fcf-field textarea,
.fcf-design-a .fcf-field select {
  border: none;
  border-bottom: 1.5px solid rgba(0,0,0,.18);
  border-radius: 0;
  padding: 10px 0;
  font-size: 15px;
  font-family: inherit;
  background: transparent;
  color: #1a1a1a;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  box-sizing: border-box;
}
.fcf-design-a .fcf-field input:focus,
.fcf-design-a .fcf-field textarea:focus { border-bottom-color: #0f6e56; }
.fcf-design-a .fcf-field textarea { resize: none; min-height: 90px; }
.fcf-design-a .fcf-consent input { accent-color: #0f6e56; }

/* ══════════════════════════════
   DESIGN B — Minimal (boxed)
══════════════════════════════ */
.fcf-design-b .fcf-field input,
.fcf-design-b .fcf-field textarea,
.fcf-design-b .fcf-field select {
  border: 0.5px solid rgba(0,0,0,.18);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  background: #f8f8f7;
  color: #1a1a1a;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
  box-sizing: border-box;
}
.fcf-design-b .fcf-field input:focus,
.fcf-design-b .fcf-field textarea:focus {
  border-color: #0f6e56; background: #fff;
}
.fcf-design-b .fcf-field textarea { resize: none; min-height: 90px; }
.fcf-design-b .fcf-consent input { accent-color: #0f6e56; }

/* ══════════════════════════════
   DESIGN C — Bold Dark
══════════════════════════════ */
.fcf-design-c {
  background: #0d0d0d;
  border-radius: 20px;
  padding: 48px 10%;
}
.fcf-design-c .fcf-title { color: #f0f0ee; }
.fcf-design-c .fcf-sub   { color: #777; }
.fcf-design-c .fcf-field label { color: #666; }
.fcf-design-c .fcf-field input,
.fcf-design-c .fcf-field textarea,
.fcf-design-c .fcf-field select {
  border: 0.5px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  background: rgba(255,255,255,.07);
  color: #f0f0ee;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  box-sizing: border-box;
}
.fcf-design-c .fcf-field input:focus,
.fcf-design-c .fcf-field textarea:focus { border-color: #c8f060; }
.fcf-design-c .fcf-field textarea { resize: none; min-height: 90px; }
.fcf-design-c .fcf-consent { color: #666; }
.fcf-design-c .fcf-consent input { accent-color: #c8f060; }
.fcf-design-c .fcf-success { background: rgba(200,240,96,.12); border-color: rgba(200,240,96,.3); color: #c8f060; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 768px) {
  .fcf-wrap { padding: 32px 5%; }

  .fcf-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .fcf-img-col {
    order: -1; /* image on top on mobile */
  }
  .fcf-side-img { min-height: 200px; max-height: 260px; }

  .fcf-row-2 { grid-template-columns: 1fr; gap: 12px; }
  .fcf-title { font-size: 28px; }
}

@media (max-width: 480px) {
  .fcf-wrap { padding: 24px 4%; }
  .fcf-submit-btn { width: 100%; justify-content: center; }
}
