/* =========================================================
   NUVREN - Contact page
   File: /wp-content/themes/nuvren/assets/css/contact.css
   Version: 1.0.0
   Автор: nuvren.com
   Описание: Стили страницы Contact (форма + блоки связи).
   ========================================================= */

/* Контактная страница: ритм секций */
.nv-hero--contact{
  padding-bottom: 92px;
}

/* Базовая секция контакта */
.nv-contact{
  padding: 56px 0;
}

/* Двухколоночная сетка: форма + информация */
.nv-contact__grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items:start;
}

/* Панель формы */
.nv-contact__panel{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}

/* Заголовок панели */
.nv-contact__head{
  margin-bottom: 16px;
}
.nv-contact__title{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .02em;
}
.nv-contact__subtitle{
  margin: 0;
  color: #bfc4cf;
  font-size: 14px;
  line-height: 1.55;
}

/* Форма */
.nv-contact__form{
  margin-top: 16px;
}

/* Поля */
.nv-field{
  margin-bottom: 14px;
}
.nv-field label{
  display:block;
  margin-bottom: 8px;
  color: #ccd3df;
  font-size: 13px;
  letter-spacing: .02em;
}

.nv-field input,
.nv-field textarea{
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .08s ease;
}

.nv-field textarea{
  resize: vertical;
  min-height: 140px;
}

.nv-field input:focus,
.nv-field textarea:focus{
  border-color: rgba(42,163,255,.5);
  box-shadow: 0 0 40px rgba(42,163,255,.25);
}

.nv-field input:invalid:focus,
.nv-field textarea:invalid:focus{
  box-shadow: 0 0 40px rgba(122,44,255,.18);
}

/* Чекбокс согласия */
.nv-check{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  margin: 10px 0 8px;
  color: #c9cfda;
  font-size: 14px;
  line-height: 1.45;
}
.nv-check input{
  margin-top: 3px;
}

/* Примечание */
.nv-form-note{
  color: #aeb5c2;
  font-size: 13px;
  margin: 6px 0 14px;
  line-height: 1.55;
}
.nv-form-note a{
  color:#cbd2de;
  text-decoration:none;
}
.nv-form-note a:hover,
.nv-form-note a:focus-visible{
  color:#fff;
  text-decoration: underline;
}

/* Кнопка + статус */
.nv-contact__actions{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  align-items:center;
}

.nv-form-status{
  margin-top: 14px;
  font-weight: 600;
  min-height: 20px;
  color: #dfe3ea;
}

/* Honeypot */
.nv-hp{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

/* Правая колонка: карточки связи */
.nv-contact__aside{
  display:grid;
  gap: 14px;
}

.nv-contact-card{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 18px 18px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.nv-contact-card:hover{
  transform: translateY(-2px);
  border-color: rgba(42,163,255,.35);
  box-shadow: 0 0 32px rgba(42,163,255,.12);
}

.nv-contact-card__kicker{
  display:flex;
  gap: 10px;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 6px;
}
.nv-contact-card__label{
  font-size: 12px;
  color: #aeb5c2;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nv-contact-card__tag{
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #dfe3ea;
}

.nv-contact-card__value{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .01em;
}
.nv-contact-card__value a{
  color:#fff;
  text-decoration:none;
}
.nv-contact-card__value a:hover,
.nv-contact-card__value a:focus-visible{
  text-decoration: underline;
}

.nv-contact-card__desc{
  margin: 0;
  color: #bfc4cf;
  font-size: 13px;
  line-height: 1.55;
}

/* Быстрые ссылки */
.nv-contact__links{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 12px;
}
.nv-contact__link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color:#fff;
  text-decoration:none;
  font-weight: 700;
  font-size: 13px;
  transition: transform .12s ease, border-color .2s ease, box-shadow .2s ease;
}
.nv-contact__link:hover,
.nv-contact__link:focus-visible{
  border-color: rgba(42,163,255,.45);
  box-shadow: 0 0 28px rgba(42,163,255,.18);
}
.nv-contact__link:active{
  transform: translateY(1px);
}

/* Адаптив */
@media (max-width:1024px){
  .nv-hero--contact{ padding-bottom: 72px; }
}
@media (max-width:900px){
  .nv-contact__grid{
    grid-template-columns: 1fr;
  }
  .nv-contact__panel{
    padding: 18px;
  }
}
