
/* ==== CALLBACK BLOCK ==== */

.callback__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 0 auto;
  max-width: 1250px;
  padding: 15px;
}

.callback__image img {
  max-width: 520px;
}

.callback__form {
  flex: 1;
}

.callback__title {
  font-size: 28px;
  color: #b4ff00;
  margin-bottom: 10px;
}

.callback__subtitle {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 25px;
  text-align: center;
}

.callback__form-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.callback__group {
  position: relative;
}

.callback__icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #999;
  pointer-events: none;
}

.callback__input,
.callback__textarea {
  width: 100%;
  padding: 14px 14px 14px 40px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: var(--bg-input);
  color: #fff;
  font-size: 15px;
  box-sizing: border-box;
}

.callback__textarea {
  min-height: 100px;
  resize: vertical;
  padding-left: 14px; /* без іконки */
}

.callback__button {
  width: 100%;
  height: 62px;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  background: var(--chinazes-color);
  color: var(--bg-darker);
  font: 700 20px var(--font-family);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.callback__button:hover {
  background-color: rgba(190, 235, 40, 0.9);
}


/* Адаптив */
@media (max-width: 768px) {
  .callback__container {
    flex-direction: column;
    text-align: center;
  }
  .callback__image img {
    display: none;
  }
  
  
}
