/* ============================================================
   BEYENI.ma — Contact Page CSS
   ============================================================ */

.byn-contact {
  background: var(--byn-bg-soft);
  min-height: 100vh;
  padding-bottom: 60px;
}

.byn-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.byn-contact__info {
  background: #fff;
  border: 1.5px solid var(--byn-border);
  border-radius: var(--byn-radius-lg);
  padding: 32px;
}

.byn-contact__info h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

.byn-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--byn-border);
}

.byn-contact__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.byn-contact__item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--byn-primary-light);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.byn-contact__item h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.byn-contact__item p {
  font-size: 14px;
  color: var(--byn-gray);
}

.byn-contact__map {
  margin-top: 20px;
  height: 250px;
  border-radius: var(--byn-radius);
  overflow: hidden;
}

.byn-contact__form-wrap {
  background: #fff;
  border: 1.5px solid var(--byn-border);
  border-radius: var(--byn-radius-lg);
  padding: 32px;
}

.byn-contact__form-wrap h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .byn-contact__grid { grid-template-columns: 1fr; }
}
