/* ── CONTACT HERO ──────────────────────────────────── */
.contact-hero {
  padding: 160px 48px 72px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── CONTACT SECTION ───────────────────────────────── */
.contact-section {
  padding: 0 48px 140px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── LAYOUT ────────────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 80px;
  align-items: start;
}

/* ── FORM ──────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.form-label .required {
  color: #4caf6e;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 13px 16px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #4caf6e;
  background: rgba(76,175,110,0.05);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,0.2);
}
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-select option {
  background: #111;
  color: #fff;
}
.form-textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  display: block;
  width: 100%;
  margin-top: 4px;
  text-align: center;
}
.form-note {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin-top: 12px;
  text-align: center;
}

/* ── SUCCESS ───────────────────────────────────────── */
.form-success {
  display: none;
  padding: 64px 40px;
  text-align: center;
  background: rgba(76,175,110,0.07);
  border: 1px solid rgba(76,175,110,0.18);
  border-radius: 16px;
}
.form-success-icon {
  width: 52px;
  height: 52px;
  background: rgba(76,175,110,0.15);
  border: 1px solid rgba(76,175,110,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  color: #4caf6e;
}
.form-success h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.form-success p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
}

/* ── CONTACT INFO ──────────────────────────────────── */
.contact-info {
  position: sticky;
  top: 120px;
}
.contact-info .label {
  margin-bottom: 24px;
}
.contact-response-promise {
  padding: 18px 20px;
  background: rgba(76,175,110,0.07);
  border: 1px solid rgba(76,175,110,0.2);
  border-radius: 12px;
}
.contact-response-promise strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.contact-response-promise p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.5;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.contact-info-dot {
  width: 5px;
  height: 5px;
  background: #4caf6e;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 9px;
}
.contact-info-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 0;
}

/* ── ÅF BLOCK ──────────────────────────────────────── */
.contact-af-block {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.contact-af-block > p:first-of-type {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 20px;
}

.contact-af-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin-top: 8px;
}

.contact-private-block {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.contact-private-block p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin: 0;
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-info {
    position: static;
  }
}
@media (max-width: 640px) {
  .contact-hero {
    padding: 120px 24px 56px;
  }
  .contact-section {
    padding: 0 24px 100px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
