.wf-search-page {
  background: #ffffff;
}

.wf-search-section {
  padding:16px;
}

.wf-search-container {
  position: relative;
  max-width: 1888px;
  margin: 0 auto;
  border-radius: 32px;
  background: #f5f5f5;
  padding: clamp(32px, 4vw, 56px) clamp(14px, 1.8vw, 24px) 24px;
 
}

.wf-search-bg {
  position: absolute;
  left: 50%;
  bottom: -220px;
  width: 1900px;
  height: 620px;
  border-radius: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 50% 52%, rgba(67, 93, 255, 0.14) 0%, rgba(67, 93, 255, 0.05) 40%, rgba(67, 93, 255, 0) 76%),
    radial-gradient(circle at 50% 50%, rgba(2, 14, 106, 0.08) 0%, rgba(2, 14, 106, 0) 72%);
  pointer-events: none;
}

.wf-search-hero {
  position: relative;
  z-index: 1;
  max-width: 1050px;
  margin: 50px auto 30px;
  text-align: center;
}

.wf-search-hero h1 {
  margin: 0;
  color: #020e6a;
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.wf-search-hero p {
  max-width: 562px;
  margin: 26px auto 0;
  color: #475569;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
}

.wf-search-card,
.wf-result-card {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #ffffff;
  border-radius: 24px;
}

.wf-search-card {
  z-index: 5;
  box-shadow: 0 4px 50px rgba(0, 0, 0, 0.06);
  padding: clamp(18px, 2.5vw, 32px) clamp(16px, 2.6vw, 40px);
}

.wf-search-form {
  display: grid;
  gap: 16px;
}

.wf-row {
  display: grid;
  gap: 16px;
}

.wf-row-2 {
  grid-template-columns: repeat(4, minmax(0, 1fr)); padding-bottom: 15px;
}

.wf-row-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)); padding-bottom: 10px;
}

.wf-combo-field {
  display: flex;
  align-items: stretch;
}

.wf-combo-field .wf-blue-select {
  flex: 0 0 140px;
}

.wf-combo-field .wf-field {
  flex: 1;
}

.wf-field {
  position: relative;
}

.wf-field label {
  position: absolute;
  top: -12px;
  left: 12px;
  z-index: 2;
  padding: 0 6px;
  background: #ffffff;
  color: #0f172a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.wf-field input {
  width: 100%;
  height: 48px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #ffffff;
  color: #1b2128;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  padding: 0 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-field.wf-field input {
  border-radius: 0 12px 12px 0;

}

.wf-field input::placeholder {
  color: #94a3b8;
}

.wf-field input:focus {
  border-color: #435dff;
}

.wf-blue-select {
  position: relative;
}

.wf-blue-select-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 12px 0 0 12px;
  padding: 0 16px;
  background: #020e6a;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

.wf-blue-select-toggle svg {
  transition: transform 0.2s ease;
}

.wf-blue-select.is-open .wf-blue-select-toggle svg {
  transform: rotate(180deg);
}

.wf-blue-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 60;
  display: grid;
  gap: 4px;
  width: 160px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(203, 213, 225, 0.6);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.wf-blue-select.is-open .wf-blue-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wf-blue-select-menu button {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #1b2128;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  padding: 8px 10px;
  cursor: pointer;
}

.wf-blue-select-menu button[aria-selected="true"],
.wf-blue-select-menu button:hover {
  background: #eef2ff;
  color: #020e6a;
}

.wf-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 748px);
  margin-left: auto;
}

.wf-btn {
  justify-content: center;
  min-height: 48px;
  width: 100%;
}

.wf-btn:hover {
  transform: translateY(-1px);
}

.wf-form-note {
  margin: 2px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: #475569;
}

.wf-form-note.is-success {
  color: #166534;
}

.wf-result-card {
  z-index: 1;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid #e4e4e4;
}

.wf-result-head h2 {
  margin: 0;
  color: #020e6a;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.2;
}

.wf-result-head p {
  margin: 4px 0 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.5;
}

.wf-table-wrap {
  margin-top: 24px;
  border: 1px solid #e4e4e4;
  border-radius: 8px 8px 0 0;
  overflow-x: auto;
}

.wf-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 960px;
}

.wf-table th,
.wf-table td {
  height: 58px;
  padding: 10px 20px;
  border-bottom: 1px solid #e1e1e1;
  color: #1b2128;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.wf-table th {
  background: #f5f5f5;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.wf-table td:nth-child(4),
.wf-table td:nth-child(5),
.wf-table th:nth-child(4),
.wf-table th:nth-child(5) {
  text-align: center;
}

.wf-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 16px 24px;
  border: 1px solid #e1e1e1;
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.wf-pagination span {
  color: #09090b;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.wf-page-actions {
  display: flex;
  gap: 8px;
}

.wf-page-actions button {
  width: 32px;
  height: 32px;
  border: 1px solid #e4e4e7;
  border-radius: 6px;
  background: #ffffff;
  color: #1b2128;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.wf-page-actions button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 1200px) {
  .wf-row-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .wf-row-2 {
    grid-template-columns: 1fr;
  }

  .wf-actions {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .wf-search-section {
    padding: 18px 10px 50px;
  }

  .wf-search-container {
    border-radius: 24px;
    padding: 24px 10px 16px;
  }

  .wf-search-card,
  .wf-result-card {
    border-radius: 18px;
  }

  .wf-search-card {
    padding: 16px;
  }

  /* .wf-combo-field {
    flex-direction: column;
  } */

  .wf-combo-field .wf-blue-select {
    flex: 0 0 auto;
  }

  /* .wf-blue-select-toggle {
    border-radius: 12px 12px 0 0;
  } */
.wf-row{
  gap: 25px;
}
.wf-row-2{
  padding-bottom: 0;
}
  .wf-actions {
    grid-template-columns: 1fr;
  }
  .wf-search-form{
    padding-top: 20px;
  }

  .wf-result-card {
    padding: 16px;
  }

  .wf-pagination {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}