/* ===============================
   Contact & FAQ (local system)
   =============================== */

/* Sections */
.section {
  padding: 2rem 0 4rem;
}

@media (min-width:640px) {
  .section {
    padding: 3rem 0 5rem;
  }
}

@media (min-width:1024px) {
  .section {
    padding: 4rem 0 6rem;
  }
}

.section--alt {
  background: var(--orange-100);
}

.section--dots {
  background: var(--orange-100);
}

/* Section header */
.section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.section__badge {
  display: inline-block;
  padding: .6rem 1.1rem;
  border-radius: 999px;
  font-weight: 900;
}

.badge--brand {
  background: var(--orange-600);
  color: #fff;
}

.badge--red {
  background: var(--red-600);
  color: #fff;
}

.section__title {
  margin: .75rem 0;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--orange-900);
}

.section__rule {
  width: 96px;
  height: 8px;
  background: var(--orange-600);
  border-radius: 999px;
  margin: 0 auto;
}

/* Cards & borders (reuse your .card) */
.card--b-orange {
  border-color: var(--orange-200);
}

.card--b-blue {
  border-color: #bfdbfe;
}

.card--b-green {
  border-color: #86efac;
}

.card--b-yellow {
  border-color: #fde68a;
}

/* Grid helpers */
.grid-auto {
  display: grid;
  gap: 1.25rem;
}

.grid-two {
  display: grid;
  gap: 1.25rem;
}

@media (min-width:1024px) {
  .grid-two {
    grid-template-columns: 1fr 1fr;
  }
}

/* Form */
.form {
  display: grid;
  gap: 1rem;
}

.form__row-2 {
  display: grid;
  gap: 1rem;
}

@media (min-width:640px) {
  .form__row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: block;
}

.field__label {
  display: block;
  font-size: .9rem;
  font-weight: 900;
  color: var(--orange-900);
  margin-bottom: .5rem;
}

.input,
.select,
.textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 2px solid var(--orange-200);
  background: #fff;
  color: var(--gray-900);
  transition: border .2s ease, box-shadow .2s ease;
}

.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, .15);
}

.textarea {
  resize: none;
}

/* Newsletter checkbox box */
.checkwrap {
  background: var(--orange-50);
  border: 2px solid var(--orange-200);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}

.checkwrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: .2rem;
}

/* Buttons */
.btn--block {
  width: 100%;
}

/* Small text */
.meta {
  color: #6b7280;
  font-size: .85rem;
  text-align: center;
}

/* Info tiles right column */
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.dot--green {
  background: var(--green-600);
}

.dot--blue {
  background: #2563eb;
}

.dot--orange {
  background: var(--orange-600);
}

.dot--purple {
  background: #7c3aed;
}

/* FAQ */
.faq {
  display: grid;
  gap: 1rem;
}

.faq__item {
  background: #fff;
  border: 4px solid var(--orange-200);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-xl);
  padding: 1.25rem;
}

.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.faq__q {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--orange-900);
}

.faq__icon {
  transition: transform .3s ease;
  color: var(--orange-900);
}

.faq__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease, opacity .3s ease;
  opacity: 0;
  margin-top: .75rem;
}

.faq__content>div {
  overflow: hidden;
}

.faq__item.open .faq__content {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq__item.open .faq__icon {
  transform: rotate(180deg);
}