/* ===== CONTACT PAGE ===== */

.contact-hero {
  position: relative;
  padding: calc(var(--nav-h) + 5rem) 0 4rem;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ch-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,184,217,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(0,184,217,.03) 1px,transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.ch-title { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 800; line-height: 1.1; margin: .9rem 0 1.1rem; }
.ch-sub { color: var(--text-2); font-size: 17px; max-width: 500px; line-height: 1.72; }

/* BODY */
.contact-body { padding: 5rem 0 6rem; }
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* FORM */
.form-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.8rem; }
.cform { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg.full { grid-column: span 2; }

label { font-size: 12px; font-weight: 700; color: var(--text-2); letter-spacing: .04em; }

input, select, textarea {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 15px;
  width: 100%;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
input::placeholder, textarea::placeholder { color: var(--text-3); }
input:focus, select:focus, textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,184,217,.1);
}
select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A6678' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
select option { background: var(--dark); }
textarea { resize: vertical; min-height: 130px; line-height: 1.65; }

.btn-submit {
  background: var(--cyan); color: var(--navy);
  border: none; border-radius: 50px;
  font-family: var(--font); font-size: 15px; font-weight: 700;
  padding: 14px 32px; cursor: pointer; width: fit-content;
  transition: opacity .2s, transform .2s;
}
.btn-submit:hover { opacity: .88; transform: translateY(-2px); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.form-success {
  display: flex; align-items: center; gap: 10px;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14px; font-weight: 600; color: var(--cyan);
}

/* INFO SIDE */
.contact-info {
  display: flex; flex-direction: column; gap: 1.2rem;
  position: sticky; top: calc(var(--nav-h) + 2rem);
}

.ci-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  transition: border-color .2s;
}
.ci-item:hover { border-color: var(--cyan-border); }

.ci-ico {
  width: 36px; height: 36px;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-lbl { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 3px; }
.ci-val { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.ci-val a { color: var(--cyan); }
.ci-val a:hover { text-decoration: underline; }
.ci-sub { font-size: 12px; color: var(--text-3); }

.ci-process {
  background: var(--dark); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem;
}
.ci-ptitle { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 1.1rem; }
.cp-step { display: flex; align-items: center; gap: 10px; margin-bottom: .9rem; font-size: 13px; color: var(--text-2); }
.cp-step:last-child { margin-bottom: 0; }
.cp-n {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--cyan-dim); border: 1px solid var(--cyan-border);
  color: var(--cyan); font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.ci-brand {
  display: flex; justify-content: center;
  padding: 1rem 0;
}
.ci-brand img { width: 90px; opacity: .7; }

/* FAQ */
.faq-section {
  padding: 6rem 0;
  background: var(--navy-2);
  border-top: 1px solid var(--border);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item { background: var(--dark); padding: 2rem; transition: background .2s; }
.faq-item:hover { background: var(--dark-2); }
.fq { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: .7rem; }
.fa { font-size: 14px; color: var(--text-2); line-height: 1.72; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info { position: static; }
  .faq-grid { grid-template-columns: 1fr; }
  .ci-brand { display: none; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .fg.full { grid-column: span 1; }
}
