/* ── CONTACT PAGE ── */

/* Floating scroll arrow */
.contact-arrow {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10,16,30,.6);
  border: 1px solid rgba(234,179,8,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  color: var(--gold);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 12px rgba(234,179,8,.25);
  animation: arrow-bounce 2s ease-in-out infinite;
  transition: opacity .3s, border-color .2s, background .2s;
  z-index: 100;
}
.contact-arrow svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2.5; fill: none; }
.contact-arrow:hover { background: rgba(234,179,8,.1); border-color: var(--gold); animation: none; transform: translateX(-50%) translateY(4px); }
.contact-arrow.hidden { opacity: 0; pointer-events: none; }

/* Success box */
.contact-success { padding: 20px 0; }
.success-box {
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.success-icon { font-size: 2.2rem; margin-bottom: 12px; }
.success-box h2 { color: #4ade80; margin: 0 0 10px; font-size: 1.4rem; }
.success-box p { color: var(--text2); margin: 0; }
.success-box a { color: var(--gold); }

/* Forms section */
.contact-forms { padding: 20px 0 80px; }

/* Two-column layout */
.contact-layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  max-width: 1060px;
  margin: 0 auto;
}

/* LEFT: Form card */
.contact-form-universal {
  flex: 1;
  min-width: 0;
  background: var(--surface);
  border: 1px solid rgba(234,179,8,.2);
  border-radius: 18px;
  padding: 26px 30px;
  font-size: .93em;
}

/* RIGHT: Sidebar */
.contact-sidebar {
  width: 300px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid rgba(234,179,8,.2);
  border-radius: 18px;
  padding: 32px 28px;
}
.sidebar-title {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(241,245,249,.8);
  margin: 0 0 20px;
}
.sidebar-note {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  text-align: center;
  margin: 18px 0 0;
  font-style: italic;
}

/* Tab toggle */
.form-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.form-tab {
  flex: 1;
  padding: 11px 8px;
  border: none;
  background: rgba(255,255,255,.09);
  color: rgba(241,245,249,.9);
  font-size: .76rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s;
  font-family: inherit;
  letter-spacing: .01em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.form-tab + .form-tab { border-left: 1px solid var(--border); }
.form-tab.active { background: var(--gold); color: #0a0d14; }
.form-tab:not(.active):hover { background: rgba(255,255,255,.07); color: var(--text); }

/* Form fields */
.contact-form { display: flex; flex-direction: column; gap: 13px; }
.form-hidden { display: none !important; }

.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(241,245,249,.9);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.form-row input,
.form-row textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--text);
  font-size: .9rem;
  font-family: inherit;
  transition: border-color .2s;
  width: 100%;
  box-sizing: border-box;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(234,179,8,.5);
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(255,255,255,.45); }
.form-row textarea { resize: vertical; min-height: 86px; }
.form-select {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--text);
  font-size: .9rem;
  font-family: inherit;
  transition: border-color .2s;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
}
.form-select:focus { outline: none; border-color: rgba(234,179,8,.5); }
.form-select option { background: #0d1526; color: var(--text); }

.form-row-2col {
  flex-direction: row;
  gap: 14px;
}
.form-row-2col > div { flex: 1; display: flex; flex-direction: column; gap: 6px; }

.btn-form-submit {
  background: var(--gold);
  color: #0a0d14;
  border: none;
  border-radius: 8px;
  padding: 11px 24px;
  font-size: .92rem;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: 2px;
}
.btn-form-submit:hover { background: #ca9a06; transform: translateY(-1px); }

.form-note {
  font-size: .82rem;
  color: rgba(255,255,255,.62);
  text-align: center;
  margin: 0;
}

/* Budget radio buttons */
.budget-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.budget-option { cursor: pointer; }
.budget-option input[type="radio"] { display: none; }
.budget-option span {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(234,179,8,.3);
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(241,245,249,.75);
  background: rgba(255,255,255,.06);
  transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
.budget-option input[type="radio"]:checked + span {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0d14;
}
.budget-option:hover span {
  border-color: rgba(234,179,8,.7);
  color: var(--text);
}

/* Direct contact items (sidebar) */
.direct-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  text-decoration: none;
  color: var(--text);
  transition: color .15s;
}
.direct-item:last-child { border-bottom: none; }
a.direct-item:hover { color: var(--gold); }
.direct-icon { font-size: 1.4rem; width: 28px; text-align: center; flex-shrink: 0; padding-top: 2px; }
.direct-item span { display: flex; flex-direction: column; gap: 3px; }
.direct-item strong { font-size: .95rem; }
.direct-item small { color: rgba(241,245,249,.72); font-size: .8rem; }

/* Responsive */
@media (max-width: 860px) {
  .contact-layout { flex-direction: column; align-items: stretch; }
  .contact-sidebar { width: 100%; box-sizing: border-box; }
  .contact-form-universal { width: 100%; box-sizing: border-box; }
}
@media (max-width: 720px) {
  .contact-forms .container { padding: 0 5px; }
  .contact-form-universal { padding: 20px 12px; border-radius: 0; }
  .contact-sidebar { padding: 20px 12px; border-radius: 0; }
  .form-row-2col { flex-direction: column; }
}
@media (max-width: 480px) {
  .contact-hero-cta { flex-direction: column; align-items: center; }
  .form-tab { font-size: .78rem; padding: 11px 10px; }
}
