/* ===============================
   CF7 QUOTE STYLE
   Class: cf-0e6d71c
   =============================== */
.cf-0e6d71c .cf-row {
  display: flex;
  gap: 24px;
  margin-bottom: 22px;
}
.cf-0e6d71c .cf-row:last-child {
  margin-bottom: 0;
}
.cf-0e6d71c .cf-col {
  flex: 1;
}
.cf-0e6d71c .cf-col.full {
  width: 100%;
}
.cf-0e6d71c input,
.cf-0e6d71c textarea {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: #f2f2f2 !important;
  border-radius: 6px !important;
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border-bottom: 3px solid #FA3528 !important;
  transition: all 0.25s ease;
  color: #333;
  box-sizing: border-box;
}
.cf-0e6d71c input:hover,
.cf-0e6d71c textarea:hover,
.cf-0e6d71c input:focus,
.cf-0e6d71c textarea:focus {
  border-bottom-color: #C7231E !important;
}
.cf-0e6d71c textarea {
  height: 150px;
  resize: none;
}
.cf-0e6d71c ::placeholder {
  color: #8a8a8a;
}
.cf-0e6d71c .cf-select-wrap {
  position: relative;
}
.cf-custom-select-display {
  width: 100%;
  height: 48px;
  padding: 14px 40px 14px 16px;
  font-size: 15px;
  background: #f2f2f2;
  border: none;
  border-bottom: 3px solid #FA3528;
  border-radius: 6px;
  cursor: pointer;
  color: #8a8a8a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-bottom-color 0.25s ease;
  user-select: none;
  box-sizing: border-box;
}
.cf-custom-select-display.selected {
  color: #333;
}
.cf-custom-select-display:hover,
.cf-custom-select-display.open {
  border-bottom-color: #C7231E;
}
.cf-custom-select-display svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.cf-custom-select-display.open svg {
  transform: rotate(180deg);
}
.cf-custom-select-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 999;
  background: #f2f2f2;
  border-radius: 6px;
  overflow: hidden;
  border: 1.5px solid #FA3528;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  list-style: none;
  margin: 0;
  padding: 0;
}
.cf-custom-select-list.open {
  display: block;
}
.cf-custom-select-list li {
  padding: 12px 16px;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  transition: background 0.15s ease;
}
.cf-custom-select-list li:hover {
  background: #FA3528;
  color: #fff;
}
.cf-custom-select-list li.active {
  background: #C7231E;
  color: #fff;
}
.cf-0e6d71c input[type="submit"] {
  background: #FA3528 !important;
  color: #fff !important;
  border: none !important;
  border-bottom: none !important;
  padding: 12px 28px;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.25s ease;
}
.cf-0e6d71c input[type="submit"]:hover {
  background: #C7231E !important;
}
@media (max-width: 768px) {
  .cf-0e6d71c .cf-row {
    flex-direction: column;
  }
}