/* =====================================================
   CONSULTATION FORM SECTION
   Zero Box-Shadows - Swiss Clean Aesthetics
===================================================== */

.ibr-consultation {
  padding: 95px 0;
  background: #f8fafc;
  color: #0f172a;
  border-top: none;
  border-bottom: none;
  position: relative;
}

.ibr-consultation__container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.ibr-consultation__card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 24px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 992px) {
  .ibr-consultation__card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 36px;
  }
}

.ibr-consultation__info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(10, 100, 196, 0.08);
  border: 1px solid rgba(10, 100, 196, 0.18);
  color: #0a64c4;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ibr-consultation__title {
  font-size: clamp(28px, 3.3vw, 38px);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

.ibr-consultation__title span {
  background: linear-gradient(135deg, #0a64c4 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ibr-consultation__desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 28px;
}

.ibr-consultation__direct-wa {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  color: #166534;
}

.ibr-consultation__wa-icon {
  font-size: 28px;
  color: #059669;
  flex-shrink: 0;
}

.ibr-consultation__wa-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #14532d;
}

.ibr-consultation__wa-text span {
  font-size: 12.5px;
  color: #166534;
}

/* Form Controls */
.ibr-consultation__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ibr-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ibr-form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
}

.ibr-form-label span {
  color: #ef4444;
}

.ibr-form-input,
.ibr-form-select,
.ibr-form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-size: 14.5px;
  color: #0f172a;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.ibr-form-input:focus,
.ibr-form-select:focus,
.ibr-form-textarea:focus {
  background: #ffffff;
  border-color: #0a64c4;
  box-shadow: 0 0 0 4px rgba(10, 100, 196, 0.1);
}

.ibr-form-textarea {
  resize: vertical;
  min-height: 110px;
}

/* SUBMIT BUTTON - COMPACT, SMOOTH & MATCHED GREEN (#059669 / #047857) */
.ibr-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  align-self: flex-start;
  padding: 11px 22px;
  background: #059669;
  border: 1px solid #059669;
  border-radius: 10px;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
}

@media (max-width: 600px) {
  .ibr-form-submit {
    width: 100%;
    align-self: stretch;
  }
}

.ibr-form-submit:hover {
  background: #047857;
  border-color: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(4, 120, 87, 0.25);
}

.ibr-form-submit i {
  font-size: 16px;
}
