/* ============================================================
   SEE — Quote Form  (.seeqf-*)
   Two-column layout: brand copy on the left, form card on right.
   Mobile: stacks. Buttons stack on narrow phones.
   ============================================================ */

.seeqf {
  --seeqf-red:        #CC1B1B;
  --seeqf-red-dark:   #A01515;
  --seeqf-wa:         #25D366;
  --seeqf-wa-dark:    #1ebe57;
  --seeqf-ink:        #1C1C1C;
  --seeqf-ink-soft:   #404040;
  --seeqf-muted:      #6B6B6B;
  --seeqf-line:       #E5E5E5;
  --seeqf-bg:         #F7F4F0;
  --seeqf-card:       #FFFFFF;

  background: var(--seeqf-bg);
  padding: clamp(40px, 8vw, 100px) 0;
  color: var(--seeqf-ink);
  scroll-margin-top: 80px;
}

.seeqf__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

@media (max-width: 880px) {
  .seeqf__inner { grid-template-columns: 1fr; }
}

/* ─── Left column: brand copy ─── */

.seeqf__eyebrow {
  display: inline-block;
  font: 600 11px/1 'Inter', system-ui, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--seeqf-red);
  padding: 6px 12px;
  border: 1px solid var(--seeqf-red);
  border-radius: 99px;
  margin-bottom: 18px;
}

.seeqf__h {
  font: 800 clamp(28px, 4.4vw, 44px)/1.08 'Inter', system-ui, sans-serif;
  letter-spacing: -0.02em;
  color: var(--seeqf-ink);
  margin: 0 0 14px;
}

.seeqf__intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--seeqf-ink-soft);
  margin: 0 0 28px;
  max-width: 460px;
}

.seeqf__trust {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.seeqf__trust li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--seeqf-ink-soft);
  border-bottom: 1px dashed var(--seeqf-line);
}
.seeqf__trust li:last-child { border-bottom: none; }
.seeqf__tdot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--seeqf-red);
  flex-shrink: 0;
}

.seeqf__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  color: var(--seeqf-muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.seeqf__divider::before,
.seeqf__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--seeqf-line);
}

.seeqf__directs {
  display: grid;
  gap: 10px;
}
.seeqf__direct {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--seeqf-line);
  border-radius: 12px;
  background: var(--seeqf-card);
  color: var(--seeqf-ink) !important;
  text-decoration: none !important;
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.seeqf__direct:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.seeqf__direct span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.seeqf__direct span strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--seeqf-ink);
}
.seeqf__direct span:not(strong) {
  font-size: 13px;
  color: var(--seeqf-muted);
}
.seeqf__direct--call { color: var(--seeqf-red) !important; }
.seeqf__direct--call:hover { border-color: var(--seeqf-red); }
.seeqf__direct--wa { color: var(--seeqf-wa) !important; }
.seeqf__direct--wa:hover { border-color: var(--seeqf-wa); }

/* ─── Right column: form card ─── */

.seeqf__formcard {
  background: var(--seeqf-card);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 36px);
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 24px 60px -28px rgba(0,0,0,0.18);
  border: 1px solid var(--seeqf-line);
  position: relative;
}

.seeqf__form {
  display: grid;
  gap: 18px;
}

.seeqf__form--sent { display: none; }

.seeqf__row {
  display: grid;
  gap: 16px;
}
.seeqf__row--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 540px) {
  .seeqf__row--2 { grid-template-columns: 1fr; }
}

.seeqf__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.seeqf__field--full { grid-column: 1 / -1; }

.seeqf__label {
  font: 600 12px/1 'Inter', system-ui, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--seeqf-ink-soft);
}
.seeqf__label em {
  color: var(--seeqf-red);
  font-style: normal;
  margin-left: 2px;
}
.seeqf__opt {
  font-weight: 500;
  color: var(--seeqf-muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  margin-left: 6px;
}

.seeqf__field input[type="text"],
.seeqf__field input[type="email"],
.seeqf__field input[type="tel"],
.seeqf__field select,
.seeqf__field textarea {
  width: 100%;
  padding: 12px 14px;
  font: 400 15px/1.4 'Inter', system-ui, sans-serif;
  color: var(--seeqf-ink);
  background: #fff;
  border: 1.5px solid var(--seeqf-line);
  border-radius: 10px;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
  appearance: none;
}
.seeqf__field input:focus,
.seeqf__field select:focus,
.seeqf__field textarea:focus {
  outline: none;
  border-color: var(--seeqf-red);
  box-shadow: 0 0 0 3px rgba(204,27,27,0.10);
}
.seeqf__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.seeqf__field textarea {
  resize: vertical;
  min-height: 90px;
}

.seeqf__phone {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--seeqf-line);
  border-radius: 10px;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.seeqf__phone:focus-within {
  border-color: var(--seeqf-red);
  box-shadow: 0 0 0 3px rgba(204,27,27,0.10);
}
.seeqf__phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: #f6f6f6;
  border-right: 1.5px solid var(--seeqf-line);
  font: 600 14px/1 'Inter', system-ui, sans-serif;
  color: var(--seeqf-ink-soft);
  border-radius: 8px 0 0 8px;
}
.seeqf__phone input {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 8px 8px 0 !important;
  flex: 1;
}

.seeqf__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.seeqf__legal {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--seeqf-muted);
}

/* ─── Action buttons ─── */

.seeqf__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 6px;
}
@media (max-width: 480px) {
  .seeqf__actions { grid-template-columns: 1fr; }
}

.seeqf__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  font: 700 14px/1 'Inter', system-ui, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .12s, box-shadow .15s, background .15s;
  color: #fff;
}
.seeqf__btn:hover  { transform: translateY(-1px); }
.seeqf__btn:active { transform: translateY(0); }

.seeqf__btn--email {
  background: var(--seeqf-red);
}
.seeqf__btn--email:hover {
  background: var(--seeqf-red-dark);
  box-shadow: 0 8px 24px -8px rgba(204,27,27,0.55);
}

.seeqf__btn--wa {
  background: var(--seeqf-wa);
}
.seeqf__btn--wa:hover {
  background: var(--seeqf-wa-dark);
  box-shadow: 0 8px 24px -8px rgba(37,211,102,0.55);
}

.seeqf__btn svg { flex-shrink: 0; }

/* ─── Thanks state ─── */

.seeqf__thanks {
  text-align: center;
  padding: 28px 16px;
  background: #f1faef;
  border: 1px solid #c7e7bf;
  border-radius: 12px;
  margin-bottom: 0;
}
.seeqf__thanks-tick {
  display: inline-flex;
  margin-bottom: 14px;
}
.seeqf__thanks h3 {
  font: 800 22px/1.2 'Inter', system-ui, sans-serif;
  color: #1f6f2f;
  margin: 0 0 8px;
}
.seeqf__thanks p {
  color: #2c5f33;
  margin: 0;
  font-size: 14.5px;
}

/* ============================================================
   SEE Quote Form — Modal popup (2026 design)
   Backdrop blur, glass card, brand-red accent, motion-respectful.
   ============================================================ */

.seeqf__field--err {
  border-color: var(--seeqf-red) !important;
  background: rgba(204, 27, 27, 0.04) !important;
  animation: seeqf-shake 0.4s cubic-bezier(.36,.07,.19,.97);
}
.seeqf__field-err {
  font-size: 12px;
  font-weight: 500;
  color: var(--seeqf-red);
  margin-top: 6px;
  letter-spacing: -.005em;
}
@keyframes seeqf-shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-3px, 0, 0); }
  40%, 60% { transform: translate3d(3px, 0, 0); }
}

.seeqf__form--submitting { opacity: 0.7; pointer-events: none; }
.seeqf__btn.is-loading {
  position: relative;
  color: transparent !important;
}
.seeqf__btn.is-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  margin: auto;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: seeqf-spin 0.6s linear infinite;
}
@keyframes seeqf-spin { to { transform: rotate(360deg); } }

/* ─── Modal ────────────────────────────────────────────────── */

body.seeqf-modal-open { overflow: hidden; }

.seeqf-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(.4, 0, .2, 1), visibility 0s linear 0.28s;
}
.seeqf-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.28s cubic-bezier(.4, 0, .2, 1);
}
.seeqf-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 16, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.seeqf-modal__card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border-radius: 22px;
  padding: 44px 36px 32px;
  text-align: center;
  box-shadow:
    0 24px 80px -20px rgba(8, 10, 16, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
  transform: scale(0.94) translateY(12px);
  opacity: 0;
  transition: transform 0.34s cubic-bezier(.16, 1, .3, 1) 0.06s, opacity 0.28s ease 0.06s;
}
.seeqf-modal.is-open .seeqf-modal__card {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.seeqf-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 28, 28, 0.04);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: rgba(28, 28, 28, 0.55);
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.seeqf-modal__close:hover {
  background: rgba(28, 28, 28, 0.08);
  color: var(--seeqf-ink);
  transform: rotate(90deg);
}
.seeqf-modal__icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
}
.seeqf-modal__icon svg { width: 100%; height: 100%; display: block; }
.seeqf-modal__spinner { animation: seeqf-spin 0.9s linear infinite; transform-origin: center; }
.seeqf-modal__title {
  font: 600 22px/1.25 'Inter', system-ui, sans-serif;
  letter-spacing: -0.018em;
  color: var(--seeqf-ink);
  margin: 0 0 10px;
}
.seeqf-modal__msg {
  font: 400 15px/1.55 'Inter', system-ui, sans-serif;
  color: var(--seeqf-ink-soft);
  margin: 0 0 26px;
  letter-spacing: -0.005em;
}
.seeqf-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.seeqf-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  font: 600 14px/1 'Inter', system-ui, sans-serif;
  letter-spacing: 0.005em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s, background 0.18s, color 0.18s, border-color 0.18s;
}
.seeqf-modal__btn--primary {
  background: var(--seeqf-wa);
  color: #fff;
}
.seeqf-modal__btn--primary:hover {
  background: var(--seeqf-wa-dark);
  transform: translateY(-1px);
}
.seeqf-modal__btn--ghost {
  background: transparent;
  color: var(--seeqf-ink-soft);
  border: 1px solid var(--seeqf-line);
}
.seeqf-modal__btn--ghost:hover {
  background: rgba(28, 28, 28, 0.04);
  border-color: var(--seeqf-ink-soft);
  color: var(--seeqf-ink);
}

/* Color the title bar subtly per state */
.seeqf-modal[data-state="success"] .seeqf-modal__card { box-shadow: 0 24px 80px -20px rgba(34, 197, 94, 0.35), 0 1px 0 rgba(255, 255, 255, 0.6) inset; }
.seeqf-modal[data-state="error"]   .seeqf-modal__card { box-shadow: 0 24px 80px -20px rgba(204, 27, 27, 0.4), 0 1px 0 rgba(255, 255, 255, 0.6) inset; }

@media (max-width: 480px) {
  .seeqf-modal__card { padding: 36px 26px 26px; border-radius: 18px; }
  .seeqf-modal__title { font-size: 19px; }
  .seeqf-modal__msg { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .seeqf-modal,
  .seeqf-modal__card { transition: none !important; }
  .seeqf-modal__card { transform: none !important; }
  .seeqf-modal__close { transition: none; }
  .seeqf-modal__close:hover { transform: none; }
  .seeqf__field--err { animation: none; }
  .seeqf__btn.is-loading::after { animation-duration: 1.2s; }
  .seeqf-modal__spinner { animation: none; }
}
