
.bbsf-card,
.bbsf-card * {
  box-sizing: border-box;
}

.bbsf-card {
  width: 100%;
  max-width: 390px;
  margin-left: auto;
  padding: 28px 26px 24px;
  border: 1px solid rgba(212,175,55,.55);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(212,175,55,.14), transparent 32%),
    linear-gradient(145deg, rgba(8,34,27,.97), rgba(3,15,11,.98));
  box-shadow:
    0 24px 60px rgba(0,0,0,.48),
    0 0 24px rgba(212,175,55,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.bbsf-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, #ffe79a, #d4af37, transparent);
  box-shadow: 0 0 14px rgba(212,175,55,.55);
}

.bbsf-badge {
  display: inline-block;
  margin-bottom: 10px;
  color: #f4d576;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.bbsf-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  line-height: 1.08;
}

.bbsf-card h3 span {
  color: #d4af37;
}

.bbsf-subtitle {
  margin: 0 0 20px;
  color: #c9d0cd;
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.55;
}

.bbsf-field {
  margin-bottom: 12px;
}

.bbsf-field label {
  display: block;
  margin-bottom: 6px;
  color: #f3e6bd;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.bbsf-field input,
.bbsf-field select,
.bbsf-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  outline: none;
  background: rgba(255,255,255,.075);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  transition: .25s ease;
}

.bbsf-field textarea {
  min-height: 78px;
  resize: vertical;
}

.bbsf-field input::placeholder,
.bbsf-field textarea::placeholder {
  color: rgba(255,255,255,.48);
}

.bbsf-field input:focus,
.bbsf-field select:focus,
.bbsf-field textarea:focus {
  border-color: #d4af37;
  background: rgba(255,255,255,.11);
  box-shadow: 0 0 0 3px rgba(212,175,55,.11);
}

.bbsf-field select option {
  background: #092019;
  color: #fff;
}

.bbsf-submit {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 2px;
  padding: 12px 16px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(110deg, #b98d25, #f3d575, #c89b2d);
  color: #061712;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .6px;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(212,175,55,.22);
  transition: .25s ease;
}

.bbsf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(212,175,55,.30);
}

.bbsf-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

.bbsf-message {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 7px;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.bbsf-message.success {
  display: block;
  background: rgba(66,205,130,.12);
  border: 1px solid rgba(66,205,130,.4);
  color: #bdf5d4;
}

.bbsf-message.error {
  display: block;
  background: rgba(255,93,93,.12);
  border: 1px solid rgba(255,93,93,.4);
  color: #ffd0d0;
}

.bbsf-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 15px;
  margin-top: 13px;
  color: rgba(255,255,255,.58);
  font-family: Arial, sans-serif;
  font-size: 9px;
}

.bbsf-hidden {
  position: absolute !important;
  left: -99999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 1024px) {
  .bbsf-card {
    max-width: 360px;
    padding: 24px 22px 21px;
  }

  .bbsf-card h3 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .bbsf-card {
    max-width: 100%;
    margin: 20px auto 0;
    padding: 24px 18px 21px;
    border-radius: 14px;
  }

  .bbsf-card h3 {
    font-size: 29px;
  }

  .bbsf-field input,
  .bbsf-field select,
  .bbsf-field textarea {
    font-size: 16px;
  }
}
