/* Gharieni Contact Form V2 */
.gcfv2-wrapper {
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 18px 55px rgba(0,0,0,.08);
  overflow: hidden;
  font-family: inherit;
}

.gcfv2-form {
  padding: 44px;
}

.gcfv2-hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

.gcfv2-progress {
  height: 6px;
  background: #eeeeee;
  margin: -44px -44px 36px;
}

.gcfv2-progress__bar {
  height: 100%;
  width: 16.66%;
  background: #111111;
  transition: width .25s ease;
}

.gcfv2-step h3 {
  margin: 0 0 8px;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 500;
  text-transform: uppercase;
  color: #111111;
}

.gcfv2-step p {
  margin: 0 0 24px;
  color: #666666;
}

.gcfv2-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.gcfv2-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 24px 0;
}

.gcfv2-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  padding: 15px 18px;
  cursor: pointer;
  background: #fff;
  color: #111;
  transition: all .18s ease;
}

.gcfv2-option:hover {
  border-color: #111111;
}

.gcfv2-option input {
  width: 18px;
  height: 18px;
  accent-color: #111111;
  flex: 0 0 auto;
}

/* Keep translated labels inside the option cards without changing the checkbox size. */
.gcfv2-option span {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  line-height: 1.15;
  overflow: visible;
  overflow-wrap: normal;
  word-break: normal;
}

/* Long German/Dutch product labels are intentionally split with a line break in the markup.
   They inherit the same typography, padding and gap as every other option card. */

.gcfv2-option.is-selected {
  border-color: #111111;
  background: #f5f5f5;
}

.gcfv2-other {
  display: none;
  grid-column: 1 / -1;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
}

.gcfv2-other.is-visible {
  display: block;
}

.gcfv2-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0;
}

.gcfv2-fields label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14px;
  color: #333;
}

.gcfv2-fields input,
.gcfv2-fields textarea {
  width: 100%;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}

.gcfv2-fields input:focus,
.gcfv2-fields textarea:focus,
.gcfv2-other:focus {
  outline: none;
  border-color: #111111;
}

.gcfv2-full {
  grid-column: 1 / -1;
}

.gcfv2-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
}

.gcfv2-btn {
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
  border-radius: 8px;
  padding: 13px 30px;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  transition: all .18s ease;
}

.gcfv2-back {
  background: #ffffff;
  color: #111111;
}

.gcfv2-btn:hover {
  opacity: .85;
}

.gcfv2-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.gcfv2-alert {
  margin-top: 20px;
  border-radius: 10px;
  padding: 14px 16px;
  background: #f4f4f4;
  color: #111;
}

.gcfv2-alert.is-error {
  background: #fff1f1;
  color: #9b1c1c;
}

.gcfv2-alert.is-success {
  background: #eefaf1;
  color: #166534;
}

@media (max-width: 767px) {
  .gcfv2-form {
    padding: 28px;
  }

  .gcfv2-progress {
    margin: -28px -28px 28px;
  }

  .gcfv2-step h3 {
    font-size: 24px;
  }

  .gcfv2-grid,
  .gcfv2-fields {
    grid-template-columns: 1fr;
  }

  .gcfv2-nav {
    flex-direction: column-reverse;
  }

  .gcfv2-btn {
    width: 100%;
  }
}
