/* ============================================================
   CONTACTANOS
   ============================================================ */

.page-hero {
  padding: 80px var(--pad-x) 60px;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.page-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  background: var(--b2);
}

/* INFO PANEL */
.info-panel { padding: 64px 48px; background: var(--b3); display: flex; flex-direction: column; }
.info-title { font-family: var(--fd); font-size: 38px; color: var(--white); line-height: 0.95; margin-bottom: 24px; }
.info-title span { color: var(--orange); }
.info-intro { font-size: 14px; line-height: 1.8; color: var(--w2); margin-bottom: 36px; }
.info-intro strong { color: var(--white); }

.c-block { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.c-block:first-of-type { border-top: 1px solid var(--border); }
.c-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--og12); border: 1px solid var(--og30);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}
.c-block:hover .c-icon { background: var(--orange); border-color: var(--orange); }
.c-icon svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; transition: stroke 0.25s; }
.c-block:hover .c-icon svg { stroke: #fff; }
.c-label { font-family: var(--fc); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--orange); margin-bottom: 5px; }
.c-val { font-size: 14px; color: var(--w2); line-height: 1.65; }
.c-val a { color: var(--w2) !important; transition: color 0.2s; }
.c-val a:hover { color: var(--orange) !important; }

.info-locations {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.info-loc-title {
  font-family: var(--fc);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.info-loc-item { padding: 10px 0; border-bottom: 1px solid var(--border); }
.info-loc-item:last-child { border-bottom: none; }
.info-loc-name { font-family: var(--fc); font-size: 13px; font-weight: 600; color: var(--white); letter-spacing: 0.05em; }
.info-loc-addr { font-size: 12px; color: var(--w3); margin-top: 2px; }

/* FORM PANEL */
.form-panel { padding: 64px 48px; background: var(--b2); }
.form-title { font-family: var(--fd); font-size: 32px; color: var(--white); margin-bottom: 8px; }
.form-subtitle { font-family: var(--fc); font-size: 12px; letter-spacing: 0.15em; color: var(--w3); margin-bottom: 40px; }

.cf { display: flex; flex-direction: column; gap: 20px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cf-group { display: flex; flex-direction: column; gap: 7px; }
.cf-label { font-family: var(--fc); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--w3); }
.cf-input, .cf-select, .cf-textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-bottom: 1px solid var(--border2);
  color: var(--white);
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 300;
  padding: 13px 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.22s, background 0.22s;
  -webkit-appearance: none;
  appearance: none;
}
.cf-select { cursor: pointer; }
.cf-textarea { resize: vertical; min-height: 130px; }
.cf-input:focus, .cf-select:focus, .cf-textarea:focus { border-color: var(--orange); background: #181818; }
.cf-input::placeholder, .cf-textarea::placeholder { color: var(--w3); }
.cf-select option { background: var(--card); color: var(--white); }

.cf-privacy {
  font-family: var(--fc);
  font-size: 11px;
  color: var(--w3);
  letter-spacing: 0.04em;
  line-height: 1.7;
  padding: 12px 0;
}

.cf-submit {
  font-family: var(--fc);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff !important;
  border: 2px solid var(--orange);
  padding: 16px 44px;
  transition: background 0.25s, color 0.25s, opacity 0.25s;
  align-self: flex-start;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cf-submit:hover:not(:disabled) { background: transparent !important; color: var(--orange) !important; }
.cf-submit:disabled { opacity: 0.5; cursor: wait; }
.cf-submit svg { stroke: #fff; fill: none; }

.contact-status {
  font-family: var(--fc);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 12px 0;
  margin-top: 10px;
  min-height: 24px;
}
.contact-status.is-pending { color: var(--w2); }
.contact-status.is-success { color: #28c840; }
.contact-status.is-error { color: var(--orange); }

/* MAP */
.map-wrap {
  background: var(--card);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.map-wrap iframe { display: block; }

/* Responsive */
@media (max-width: 1099px) {
  .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 859px) {
  .info-panel, .form-panel { padding: 48px var(--pad-x); }
  .cf-row { grid-template-columns: 1fr; }
}
