
/* ============================= */
/* 🎯 Qusaqus Hero Section Style */
/* ============================= */
.q-hero-wrapper {
  background: linear-gradient(90deg, #93e187 0%, #008631 100%);
  padding: 20px 0;
}

.q-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Left Logo */
.q-hero-logo {
  display: flex;
  align-items: center;
  flex: 0 0 255px;
  min-width: 200px;
}

.q-hero-logo-box {
  background: #008631;
  color: #fff;
  font-size: 24px;
  padding: 8px 14px;
  border-radius: 6px;
  margin-right: 12px;
  font-weight: bold;
}

.q-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  text-decoration: none;
}

.q-hero-subtitle {
  font-family: 'Poppins', sans-serif;
  display: block;
  font-size: 13px;
  color: #fff;
  margin-top: 6px;
}

/* Form inline */
.q-hero-form {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px;
  border-radius: 6px;
}

.q-hero-search-input {
  flex: 2;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.q-hero-search-select {
  flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

.q-hero-search-btn {
  background: #008631;
  color: #fff;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

.q-hero-search-btn:hover {
  background: #008631;
}

/* ============================= */
/* 📱 Responsive                 */
/* ============================= */
@media (max-width: 768px) {
  .q-hero-container {
    flex-direction: column;
    align-items: stretch;
  }

  .q-hero-form {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 8px;
  }

  .q-hero-search-input,
  .q-hero-search-select,
  .q-hero-search-btn {
    width: 100%;
    box-sizing: border-box;
  }
}