/*!******************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/styles/pages/contact.scss ***!
  \******************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/** Хедер: горизонтальний ряд замість бургера. */
/* Shared section eyebrow / subtitle style — one source of truth.
   Use via `@include eyebrow;` (colour + margin stay per-block) or the
   global `.subtitle` class. */
/* ===========================================================
   Кнопки-пігулки — ОДНЕ джерело правди для розмірів.

   Раніше ту саму кнопку було написано в кількох місцях окремо, і вони
   розповзлись: .process-btn 15/30 gap 8, .cta-btn 13/22 gap 10,
   .btn-secondary 14/28. Тобто «однакова» кнопка мала різні розміри.

   Тепер геометрія лише тут; споживачі: .btn-primary / .btn-secondary
   (банер), .process-btn (CTA), .cta-btn (services), core/button (is-style-*).

   Прозора рамка 1.5px у базі — щоб обведений варіант мав ІДЕНТИЧНУ
   геометрію, а не був на 3px нижчим через товщину рамки.
   =========================================================== */
/* темна пігулка — головна кнопка (банер «Замовити сайт») */
/* амбер пігулка — CTA («Обговорити проєкт», services) */
/* обведена пігулка — вторинна кнопка (банер «Мої послуги») */
/* стрілка ↗ через CSS — для кнопок, куди SVG у розмітку не вставити
   (core/button). Там, де SVG уже є в розмітці (.btn-primary, .cta-btn),
   анімацію робить `svg` у pill-base. */
/* ===========================================================
   Contact page — dykyiivan/contact pattern (info + CF7 form).
   =========================================================== */
.contact-page .container {
  box-sizing: border-box;
  width: 100%;
  max-width: calc(var(--site-container) + var(--site-gutter) * 2);
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .contact-page .container {
    padding: 0 var(--site-gutter);
  }
}
.contact-page .contact-section {
  background: var(--wp--preset--color--background);
  padding: 120px 0 80px;
}
@media screen and (min-width: 1024px) {
  .contact-page .contact-section {
    padding: 160px 0 110px;
  }
}
.contact-page .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}
@media screen and (min-width: 1024px) {
  .contact-page .contact-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
    align-items: start;
  }
}
.contact-page {
  /* ── LEFT: info ── */
}
.contact-page .contact-info-label {
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--wp--preset--color--amber-dark);
}
.contact-page .contact-info-heading {
  margin: 0 0 16px;
  font-family: var(--wp--preset--font-family--heading-font);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--wp--preset--color--foreground);
}
.contact-page .contact-info-desc {
  margin: 0 0 40px;
  max-width: 420px;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--wp--preset--color--muted);
}
.contact-page .contact-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
  /* WP-layout (.is-layout-flow > *) навішує margin-block-start на дітей групи —
     дублює наш gap і роздуває відстань між картками. Гасимо: відстань тут
     задає ЛИШЕ gap. */
}
.contact-page .contact-items > * {
  margin-block-start: 0;
  margin-block-end: 0;
}
.contact-page .contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--wp--preset--color--card);
  border: 1.5px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  color: var(--wp--preset--color--foreground);
  transition: border-color 0.2s, transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.contact-page .contact-item:hover {
  border-color: rgba(8, 8, 8, 0.08);
  transform: translateX(6px);
  background: var(--wp--preset--color--background);
  box-shadow: 0 8px 30px rgba(8, 8, 8, 0.07);
}
.contact-page .contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--wp--preset--color--background);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(8, 8, 8, 0.07);
  transition: background 0.2s, color 0.2s;
  color: var(--wp--preset--color--foreground);
}
.contact-page .contact-item-icon svg {
  width: 20px;
  height: 20px;
}
.contact-page .contact-item-icon img {
  width: 20px;
  height: 20px;
  display: block;
  max-width: none;
}
.contact-page .contact-item-icon {
  /* core/image рендерить <figure class="wp-block-image contact-item-icon"> —
     гасимо дефолтні маржини блока, щоб іконка лишилась у 44×44 боксі. */
}
.contact-page .contact-item-icon.wp-block-image {
  margin: 0;
}
.contact-page .contact-item-icon.wp-block-image img {
  margin: 0;
}
.contact-page {
  /* Значення-посилання в картці — без глобального підкреслення. */
}
.contact-page .contact-item-value a {
  color: inherit;
  text-decoration: none;
}
.contact-page .contact-item:hover .contact-item-icon {
  background: var(--wp--preset--color--primary);
}
.contact-page .contact-item-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1 1 auto;
}
.contact-page {
  /* Стрілка картки — декоративна, через ::after (не окремий блок), тож зʼявляється
     на КОЖНІЙ картці автоматично, у т.ч. доданій користувачем. */
}
.contact-page .contact-item::after {
  content: "";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(8, 8, 8, 0.05);
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23080808%27 stroke-width=%272.2%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M7 17L17 7M7 7h10v10%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
  transition: background-color 0.2s, transform 0.2s;
}
.contact-page .contact-item:hover::after {
  background-color: var(--wp--preset--color--primary);
  transform: translate(2px, -2px);
}
.contact-page .contact-item-label {
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wp--preset--color--muted);
  margin: 0 0 3px;
}
.contact-page .contact-item-value {
  margin: 0;
  font-family: var(--wp--preset--font-family--heading-font);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--wp--preset--color--foreground);
  word-break: break-word;
}
.contact-page .contact-item-arrow {
  margin-left: auto;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.contact-page .contact-item-arrow svg {
  width: 13px;
  height: 13px;
}
.contact-page .contact-item:hover .contact-item-arrow {
  background: var(--wp--preset--color--primary);
  transform: translate(2px, -2px);
}
.contact-page {
  /* ── RIGHT: form card ── */
}
.contact-page .contact-form-wrap {
  background: var(--wp--preset--color--card);
  border-radius: 24px;
  padding: 32px 26px 34px;
}
@media screen and (min-width: 768px) {
  .contact-page .contact-form-wrap {
    padding: 40px 40px 44px;
  }
}
.contact-page .form-heading {
  margin: 0 0 6px;
  font-family: var(--wp--preset--font-family--heading-font);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--wp--preset--color--foreground);
}
.contact-page .form-sub {
  margin: 0 0 26px;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--wp--preset--color--muted);
}
.contact-page {
  /* CF7 fields */
}
.contact-page .cf-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 480px) {
  .contact-page .cf-row {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-page .cf-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.contact-page .cf-label {
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wp--preset--color--muted);
}
.contact-page .cf-label span {
  color: var(--wp--preset--color--amber-dark);
}
.contact-page input[type=text],
.contact-page input[type=email],
.contact-page input[type=tel],
.contact-page textarea,
.contact-page select {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  color: var(--wp--preset--color--foreground);
  background: var(--wp--preset--color--background);
  border: 1.5px solid rgba(8, 8, 8, 0.1);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color 0.2s;
}
.contact-page input[type=text]::-moz-placeholder, .contact-page input[type=email]::-moz-placeholder, .contact-page input[type=tel]::-moz-placeholder, .contact-page textarea::-moz-placeholder, .contact-page select::-moz-placeholder {
  color: var(--wp--preset--color--muted);
  opacity: 0.7;
}
.contact-page input[type=text]::placeholder,
.contact-page input[type=email]::placeholder,
.contact-page input[type=tel]::placeholder,
.contact-page textarea::placeholder,
.contact-page select::placeholder {
  color: var(--wp--preset--color--muted);
  opacity: 0.7;
}
.contact-page input[type=text]:focus,
.contact-page input[type=email]:focus,
.contact-page input[type=tel]:focus,
.contact-page textarea:focus,
.contact-page select:focus {
  outline: none;
  border-color: var(--wp--preset--color--primary);
}
.contact-page textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}
.contact-page select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%237A7670%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M6 9l6 6 6-6%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
  cursor: pointer;
}
.contact-page {
  /* budget radios → pills */
}
.contact-page .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-page .wpcf7-radio .wpcf7-list-item::before,
.contact-page .wpcf7-radio .wpcf7-list-item::after {
  content: none !important;
  display: none !important;
}
.contact-page .wpcf7-radio .wpcf7-list-item {
  margin: 0;
  display: inline-flex;
}
.contact-page .wpcf7-radio .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin: 0;
}
.contact-page .wpcf7-radio input[type=radio] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  margin: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.contact-page .wpcf7-radio .wpcf7-list-item-label {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 100px;
  background: var(--wp--preset--color--background);
  border: 1.5px solid rgba(8, 8, 8, 0.12);
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 13px;
  color: var(--wp--preset--color--muted);
  transition: all 0.2s;
}
.contact-page .wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label {
  background: var(--wp--preset--color--foreground);
  border-color: var(--wp--preset--color--foreground);
  color: var(--wp--preset--color--background);
}
.contact-page .wpcf7-radio label:hover .wpcf7-list-item-label {
  border-color: var(--wp--preset--color--foreground);
  color: var(--wp--preset--color--foreground);
}
.contact-page .wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label:hover {
  color: var(--wp--preset--color--background);
}
.contact-page .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  background: var(--wp--preset--color--foreground);
  background-image: none;
  color: var(--wp--preset--color--background);
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid transparent;
  border-radius: 100px;
  padding: 15px 32px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  /* no transform → nothing shifts in the flow; lift via shadow only */
}
.contact-page .wpcf7-submit:hover {
  background: var(--wp--preset--color--amber-dark);
  background-image: none;
  color: var(--wp--preset--color--foreground);
  border-color: transparent;
  box-shadow: 0 10px 26px rgba(245, 168, 0, 0.3);
}
.contact-page .wpcf7-not-valid-tip {
  color: #d33;
  font-size: 13px;
  margin-top: 5px;
}
.contact-page .wpcf7-response-output {
  margin: 16px 0 0 !important;
  padding: 12px 16px !important;
  border-radius: 10px;
  font-size: 14px;
}

/*# sourceMappingURL=contact.css.map*/