/* Bordeaux Cab Contact Form — Modern UI */
.bc-contact-form-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid #dfe7ef;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(9,35,61,.10);
  color: #233244;
}

.bc-contact-form-wrap *,
.bc-contact-form-wrap *::before,
.bc-contact-form-wrap *::after {
  box-sizing: border-box;
}

.bc-contact-form-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.bc-form-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #eaf3fb;
  color: #0f4c81;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.bc-form-title-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border: 1px solid #d8e5f0;
  border-radius: 18px;
  background: linear-gradient(145deg,#f9fcff,#eaf3fb);
  box-shadow: 0 10px 24px rgba(15,76,129,.10);
}

.bc-form-title-icon svg,
.bc-form-lock svg {
  fill: none;
  stroke: #0f4c81;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bc-form-title-icon svg {
  width: 30px;
  height: 30px;
}

.bc-contact-form-head h2 {
  margin: 0 0 14px;
  color: #09233d;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.02em;
}

.bc-contact-form-head p {
  margin: 0;
  color: #607085;
  font-size: 17px;
  line-height: 1.7;
}

.bc-contact-form {
  margin: 0;
}

.bc-form-row {
  display: flex;
  gap: 20px;
}

.bc-form-row-2 > .bc-field {
  flex: 1 1 0;
  min-width: 0;
}

.bc-field {
  margin-bottom: 22px;
}

.bc-field label {
  display: block;
  margin: 0 0 9px;
  color: #09233d;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
}

.bc-field input,
.bc-field select,
.bc-field textarea {
  width: 100%;
  margin: 0;
  border: 1px solid #cfdae5;
  border-radius: 13px;
  background: #f9fbfd;
  color: #233244;
  font-family: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.bc-field input,
.bc-field select {
  min-height: 54px;
  padding: 12px 15px;
}

.bc-field textarea {
  min-height: 190px;
  padding: 15px;
  line-height: 1.6;
  resize: vertical;
}

.bc-field input:focus,
.bc-field select:focus,
.bc-field textarea:focus {
  border-color: #0f4c81;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(15,76,129,.10);
}

.bc-field select {
  cursor: pointer;
}

.bc-form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 6px;
  padding-top: 26px;
  border-top: 1px solid #e6edf3;
}

.bc-captcha-area {
  min-height: 78px;
  display: flex;
  align-items: center;
}

.bc-form-submit {
  min-height: 56px;
  min-width: 220px;
  padding: 14px 24px;
  border: 0;
  border-radius: 13px;
  background: #ffc400;
  color: #09233d;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255,196,0,.22);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.bc-form-submit:hover {
  transform: translateY(-2px);
  background: #ffd23d;
  box-shadow: 0 14px 30px rgba(255,196,0,.30);
}

.bc-form-submit:focus {
  outline: 3px solid rgba(15,76,129,.22);
  outline-offset: 3px;
}

.bc-form-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  color: #718094;
}

.bc-form-lock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.bc-form-lock svg {
  width: 17px;
  height: 17px;
}

.bc-form-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.bc-form-alert {
  margin: 0 0 24px;
  padding: 15px 18px;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.bc-form-alert-success {
  border: 1px solid #bfe8ce;
  background: #effaf3;
  color: #166534;
}

.bc-form-alert-invalid,
.bc-form-alert-captcha,
.bc-form-alert-error {
  border: 1px solid #f1c7c7;
  background: #fff4f4;
  color: #9b1c1c;
}

.bc-recaptcha-missing {
  margin: 0;
  padding: 12px 14px;
  border: 1px dashed #c8d5e1;
  border-radius: 11px;
  background: #f7f9fb;
  color: #607085;
  font-size: 14px;
}

.bc-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 768px) {
  .bc-contact-form-wrap {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .bc-contact-form-head {
    margin-bottom: 26px;
  }

  .bc-contact-form-head h2 {
    font-size: 29px;
  }

  .bc-contact-form-head p {
    font-size: 16px;
  }

  .bc-form-row {
    display: block;
  }

  .bc-form-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .bc-captcha-area {
    justify-content: center;
  }

  .bc-form-submit {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .bc-contact-form-wrap {
    padding: 24px 15px;
  }

  .bc-captcha-area {
    overflow-x: auto;
  }
}
