.dpl-contact {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  padding: 64px 0;
  align-items: start;
}

/* Left — form */
.dpl-contact__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  color: #0D0D0D;
  margin: 0 0 8px;
}

.dpl-contact__subtitle {
  font-size: 15px;
  font-weight: 300;
  color: #6B6B6B;
  margin: 0 0 40px;
}

.dpl-contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dpl-contact__success {
  background: rgba(37, 211, 102, 0.1);
  color: #1a7a3c;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 8px;
}

.dpl-contact__error {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  margin: 0 0 8px;
}

.dpl-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dpl-contact__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dpl-contact__label {
  font-size: 13px;
  font-weight: 400;
  color: #0D0D0D;
}

.dpl-contact__input {
  width: 100%;
  background: #F7F7F7;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  padding: 13px 16px;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #0D0D0D;
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}

.dpl-contact__input:focus {
  border-color: #FF9A01;
}

.dpl-contact__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.dpl-contact__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  height: 48px;
  background: #FF9A01;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.15s;
}

.dpl-contact__submit:hover {
  background: #D97F00;
}

/* Right — info panel */
.dpl-contact__right {
  position: sticky;
  top: 100px;
}

.dpl-contact__info-title {
  font-size: 24px;
  font-weight: 500;
  color: #0D0D0D;
  margin: 0 0 8px;
}

.dpl-contact__info-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: #6B6B6B;
  margin: 0 0 32px;
  line-height: 1.6;
}

.dpl-contact__info-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.dpl-contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.dpl-contact__info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F7F7F7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0D0D0D;
}

.dpl-contact__info-icon--whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
}

.dpl-contact__info-label {
  font-size: 14px;
  font-weight: 500;
  color: #0D0D0D;
  margin: 0 0 2px;
}

.dpl-contact__info-value {
  font-size: 14px;
  font-weight: 300;
  color: #4B4B4B;
  text-decoration: none;
  line-height: 1.5;
}

.dpl-contact__info-value--whatsapp {
  color: #25D366;
  font-weight: 400;
}

.dpl-contact__info-value--whatsapp:hover {
  text-decoration: underline;
}

a.dpl-contact__info-value:hover {
  color: #FF9A01;
}

/* Mobile */
@media screen and (max-width: 900px) {
  .dpl-contact {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 0;
  }

  .dpl-contact__right {
    position: static;
  }
}

@media screen and (max-width: 600px) {
  .dpl-contact__row {
    grid-template-columns: 1fr;
  }
}

/* WhatsApp-unavailable banner (spans both grid columns)
   Amber, matching the global bar in component-dpl-wa-banner.css — the same
   message should not be red here and amber there. */
.dpl-contact__banner {
  grid-column: 1 / -1;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #FEF3C7;
  color: #0D0D0D;
  border: 1px solid #F3DFA2;
  border-radius: 20px;
  padding: 20px 24px;
}

.dpl-contact__banner-icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.dpl-contact__banner-title {
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 6px;
}

.dpl-contact__banner-text {
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 14px;
  opacity: 0.8;
}

.dpl-contact__banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dpl-contact__banner-btn {
  display: inline-flex;
  align-items: center;
  background: #0D0D0D;
  color: #FEF3C7;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.dpl-contact__banner-btn:hover {
  opacity: 0.88;
}

@media screen and (max-width: 767px) {
  .dpl-contact__banner {
    flex-direction: column;
    gap: 12px;
    padding: 18px;
  }
}
