/* ============================================================
   CTA / contact section, form, footer
   ============================================================ */
.cta {
  background:
    radial-gradient(800px 400px at 20% 50%, rgba(47, 166, 106, .2), transparent 60%),
    radial-gradient(700px 380px at 90% 50%, rgba(217, 119, 23, .12), transparent 60%),
    linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: var(--white);
  text-align: center;
  padding: 96px 0;
}
.cta h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -.01em;
}
.cta p {
  font-size: 16px;
  color: var(--white);
  margin: 0 0 36px;
  max-width: 520px;
  margin-inline: auto;
}
.cta-actions {
  display: inline-flex;
  gap: 14px; flex-wrap: wrap;
  justify-content: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
  transition: all .2s ease;
}
.pill.email {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
}
.pill.email:hover { background: rgba(255, 255, 255, .18); }

/* --- Contact two-column layout --- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}
.contact-side h2 { text-align: left; margin-top: 0; }
.contact-side p  { text-align: left; margin-left: 0; margin-right: 0; }

.contact-info {
  display: flex; flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.contact-info a,
.contact-info span {
  display: inline-flex; align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s ease;
}
.contact-info a:hover { color: var(--white); }
.contact-info .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* --- Form card --- */
.form-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-field {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
}
.form-field label .opt {
  font-weight: 400;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
}

.form-field input,
.form-field textarea {
  font-family: inherit;
  font-size: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  padding: 12px 14px;
  transition: all .2s ease;
  outline: none;
  resize: vertical;
}
.form-field textarea { min-height: 120px; }
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--white);
}
.form-field input:focus,
.form-field textarea:focus {
  background: rgba(255, 255, 255, .1);
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(217, 119, 23, .15);
}
.form-field input.invalid,
.form-field textarea.invalid {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, .15);
}
.form-error {
  font-size: 12px;
  color: #ffb3b3;
  margin-top: 2px;
  display: none;
}
.form-field.has-error .form-error { display: block; }

/* Honeypot — hidden to humans, present for bots */
.hp {
  position: absolute;
  left: -9999px; top: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0; width: 0;
}

.captcha-wrap { margin: 4px 0 16px; }

.form-submit {
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  background: var(--orange);
  color: var(--white);
  border: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  transition: all .2s ease;
}
.form-submit:hover:not(:disabled) {
  background: var(--orange-2);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -8px rgba(217, 119, 23, .5);
}
.form-submit:disabled { opacity: 1; cursor: not-allowed; }
.form-submit .spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spinForm .8s linear infinite;
  display: none;
}
.form-submit.loading .spinner { display: inline-block; }
.form-submit.loading .label   { opacity: 1; }
@keyframes spinForm { to { transform: rotate(360deg); } }

.form-status {
  margin-top: 20px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  display: none;
}
.form-status.ok {
  display: block;
  background: rgba(47, 166, 106, .15);
  border: 1px solid rgba(47, 166, 106, .4);
  color: #b8edd0;
}
.form-status.err {
  display: block;
  background: rgba(255, 107, 107, .12);
  border: 1px solid rgba(255, 107, 107, .35);
  color: #ffc4c4;
}

p.form-privacy {
  font-size: 11.5px;
  color: var(--white);
  margin: 16px 0 0;
  line-height: 1.5;
}

/* --- Footer --- */
footer {
  background: #0B1F26;
  color: var(--white);
  padding: 32px 0;
  font-size: 13px;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { height: 35px; width: auto; display: block; }
.footer-tag {
  font-style: italic;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
}
.footer-loc {
  display: inline-flex; align-items: center;
  gap: 6px;
  font-size: 12.5px;
}
